* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--pc-brand-color) var(--pc-brand-color-ligth);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    height: 100%;
}

:root {
    --hue: 234;
    --pc-brand-color: hsl(var(--hue), 100%, 65%);
    --pc-brand-color-hover: hsl(var(--hue), 72%, 57%);
    --pc-brand-color-ligth: hsl(calc(var(--hue) + 1), 100%, 93%);
    --pc-brand-color-ligth-translucent: hsla(var(--hue), 100%, 65%, 0.12);

    /* Paleta Secundaria */
    --sc-gray-headline: hsl(0, 0%, 0%);
    --sc-gray-paragraph: hsl(0, 0%, 22%);

    font-size: 62.5%;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
}

a {
    text-decoration: none;
}

.container {
    width: min(88.3rem, 100%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--pc-brand-color);
    border: none;
    border-radius: 3rem;
    padding: 1.6rem 2.1rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.6rem;
    transition: background-color 300ms;
}

.button:hover {
    cursor: pointer;
    background-color: var(--pc-brand-color-hover);
    transition: background-color 300ms;
}

/*==== Image Background Formats ===========================================*/

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
    z-index: -1;
}

/*==== Home Formats ===========================================*/

#home {
    height: 98%;
    background-color: var(--pc-brancd-color-1-ligth-translucent);
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 300ms;
}


#home .container {
    align-items: center;
    justify-content: center;
}

#home h3 {
    color: var(--pc-brand-color);
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 150%;
    letter-spacing: 0.08rem;
    margin-bottom: 2rem;
    transition: color 300ms;
}

#home h1 {
    color: var(--sc-gray-headline);
    text-align: center;
    font-size: 5.2rem;
    line-height: 6.8rem;
    margin-bottom: 4rem;
}

#home p {
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--sc-gray-paragraph);
    margin-bottom: 7.6rem;
}

/*==== sugestion Formats ===========================================*/
#sugestion {
    height: 100%;
    background-color: var(--pc-brand-color-ligth);

    display: grid;
    grid-template-columns: 0.05fr 0.9fr 0.05fr;

    align-items: center;
    justify-content: center;

    transition: all 300ms;
}

#sugestion .sugestion_container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#sugestion .container {
    align-items: center;
    justify-content: center;
}

#sugestion h2 {
    font-size: 4.4rem;
    line-height: 6.2rem;
    color: var(--sc-gray-headline);
    transition: color 300ms;
}

#sugestion h3 {
    color: var(--pc-brand-color);
    line-height: 150%;
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
    margin-block: 2.2rem;

    transition: color 300ms;
}

h3#sugestion_mode_title {
    font-size: 2rem;
}

/*==== Sugestion Buttons Formats ===========================================*/
.btnContainer {
    width: min(31rem, 100%);

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon_btn {
    border: none;
    background: none;
    cursor: pointer;
}

.icon_btn i {
    font-size: 4rem;
    filter: saturate(100) contrast(200%);
    color: var(--pc-brand-color-ligth-translucent);

    transition: color 300ms;
}

.icon_btn.activated i {
    font-size: 4rem;
    filter: none;
    color: var(--pc-brand-color);

    transition: color 300ms;
}

#btn_filter {
    position: absolute;
    right: -2rem;
}

#btn_filter_remove.icon_btn {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    right: -2rem;
    transform: translateX(30%);
}

#btn_filter_remove.icon_btn.activated {
    opacity: 1;
    visibility: visible;
}

#btn_filter_remove.icon_btn.activated i {
    color: rgb(255, 0, 0);
    font-size: 3rem;
}

#btn_sugestion {
    align-self: center;
    justify-self: center;
}

/*==== Filter Field Formats ===========================================*/
.filter_box {
    width: min(31rem, 100%);
    height: 13rem;
    margin-block: 2rem;

    transform: translateY(-15%);
    transition: all 300ms;

    opacity: 0;
    visibility: hidden;
}

.filter_box.show {
    transform: translateY(0%);
    transition: all 300ms;

    opacity: 1;
    visibility: visible;
}

.filter_box form {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter_box fieldset {
    width: 80%;
    height: 100%;

    text-align: center;
    border-radius: 1rem;
    border: 0.2rem solid var(--pc-brand-color);

    transition: border 300ms;
}

.filter_box legend {
    padding-inline: 1rem;

    color: var(--pc-brand-color);

    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08rem;

    transition: color 300ms;
}

#filter_container {
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 0.5rem;
}

.filter_box .checkbox_container {
    width: 40%;

    display: flex;
    justify-content: space-between;
}

.filter_box label {
    color: var(--pc-brand-color);

    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.02rem;

    transition: color 300ms;
}

.filter_box input[type="button"].button {
    width: 55%;
    height: 3rem;
    padding: 0;
    margin-block: 2rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

/*==== sugestion idea Formats ===========================================*/
h2#sugestion_data {
    font-size: 6rem;
    line-height: 6.2rem;
    margin-block: 3rem;
    position: relative;
    color: var(--pc-brand-color);
    animation: sugestionAnimation 5s linear infinite;
    transition: color 300ms;
}

@keyframes sugestionAnimation {
    0% {
        transform: none
    }

    25% {
        transform: rotate(2.5deg)
    }

    50% {
        transform: none
    }

    75% {
        transform: rotate(-2.5deg)
    }

    100% {
        transform: none
    }
}

@keyframes sugestionAnimationHidden {
    from {
        opacity: 1;
        visibility: visible;
        transform: translateY();
    }

    to {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%);
    }
}

@keyframes sugestionAnimationShow {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateY();
    }
}

/*==== Chevron Buttons Formats ===========================================*/
.btn_chevron {
    height: min-content;

    border: none;
    background: none;
    cursor: pointer;
}

.btn_chevron i {
    font-size: 5rem;
    color: var(--pc-brand-color);
   
    transition: font-size 150ms color 300ms;
}

.btn_chevron:hover i {
    font-size: 7rem;

    transition: font-size 150ms;
}

/*==== scrollbar style Formats ===========================================*/
::-webkit-scrollbar {
    width: 0.9rem;
    background-color: var(--pc-brand-color-ligth);
    transition: background-color 300ms;
}

::-webkit-scrollbar-thumb {
    background-color: var(--pc-brand-color);
    transition: background-color 300ms;
}

/*==== title mode Formats ===========================================*/
#sugestion_mode_title {
    opacity: 1;
    visibility: visible;
    transition: all 200ms;
}

#sugestion_mode_title.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 200ms;
}