body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 400ms;
}

a:hover {
    opacity: 0.6;
}

b {
    font-weight: 800;
}

/* SEÇÃO HEADER */

.header {
    position: fixed;
    width: 100%;
    padding: 1rem;
    z-index: 9999;
}

.header .container {
    background-color: #0D0D0DCC;
    backdrop-filter: blur(0.25rem);
    height: 4.375rem;
    max-width: 87.5rem;
    margin: 0 auto;
    border-radius: 1rem;
    padding: 1rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container .logo {
    height: 1.125rem;
}

.header .container .links {
    display: flex;
    align-items: center;
    gap: 3.375rem;
}

.header .container .actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header .container .menu-mobile {
    display: none;
}

.header .container .nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.header .container .nav-item .nav-item-label {
    color: #FFF8EE;
    font-weight: 400;
    font-size: 0.875rem;
}

.btn-header-ghost {
    padding: 0.5rem 1.5rem;
    border: 0.0625rem solid #FFF8EE;
    border-radius: 2.25rem;

    font-size: 0.875rem;
    font-weight: 400;
    color: #FFF8EE;

    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-header-primary {
    background-color: #F2C744;
    padding: 0.5rem 0.875rem;
    border: 0.0625rem solid transparent;
    border-radius: 2.25rem;
    /* height: 30px; */

    font-size: 0.875rem;
    font-weight: 400;
    color: #53330A;

    display: flex;
    align-items: center;
    gap: 0.625rem;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    z-index: 99999;

    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6.25rem;

    transition: all 400ms;
}

.overlay .overlay-content {
    background-color: #0D0D0D;
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 15rem;
}

.overlay .overlay-header {
    padding-bottom: 1.625rem;
    margin-bottom: 1.625rem;
    border-bottom: 1px solid #D9D2C5;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay .overlay-header #closeMenu {
    background-color: transparent;
    border: none;
}

.overlay .overlay-header .title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #D9D2C5;
}

.overlay .overlay-links {
    padding-bottom: 1.625rem;
    margin-bottom: 1.625rem;
    border-bottom: 1px solid #D9D2C5;

    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.overlay .overlay-links .nav-item {
    gap: 0.625rem;

    display: flex;
    align-items: center;
}

.overlay .overlay-links .nav-item .nav-item-label {
    font-size: 0.875rem;
    color: #FFF8EE;
}

.overlay .overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay .overlay-actions .btn-header-ghost {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mostrar menu */
.overlay.active {
    display: flex;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

/* SEÇÃO HERO */

#hero {
    background-image: url(/assets/img/effects/light.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 68.375rem;
    position: relative;
}

#hero .container {
    height: 100%;
    max-width: 75rem;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hero .container .content {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1.75rem;
    z-index: 100;
}

#hero .container .content .logo {
    height: 4rem;
}

#hero .container .content .title {
    font-size: 3rem;
    font-weight: 500;
    color: #FFF8EE;
    max-width: 21.875rem;
    line-height: 3rem;
}

#hero .container .content .subtitle {
    max-width: 17.625rem;
    font-size: 1rem;
    font-weight: 400;
    color: #FFF8EE;
    margin-bottom: 1.375rem;
    line-height: 1.25rem;
}

#hero .container .laptop {
    position: absolute;
    right: 0px;
    /* width: 1028px; */


}

.btn-primary {
    background-color: #F2C744;
    padding: 0.625rem 2.125rem;
    border: 0.0625rem solid transparent;
    border-radius: 2.25rem;
    height: 3.5rem;
    white-space: nowrap;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;

    font-size: 1.25rem;
    font-weight: 600;
    color: #53330A;
}

/* SEÇÃO WANT */

#want {
    background-color: #FFF8EE;
    /* height: 100vh; */

    background-image: url(/assets/img/effects/light.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#want .container {
    height: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 10.5rem 0rem;

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

#want .container .title {
    font-size: 2.25rem;
    font-weight: 500;
    color: #0D0D0D;
    text-align: center;

    margin-bottom: 3rem;
}

#want .container .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #3C3F40;
    text-align: center;
}

#want .container .cards {
    margin-top: 6.125rem;
    margin-bottom: 6.875rem;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.375rem;
}

#want .container .card-item {
    background-color: #FFF8EE;
    border: 1px solid transparent;
    padding: 2.375rem 1.625rem;
    border-radius: 2.25rem;
    width: 24.0625rem;

    transition: all 400ms;
    cursor: pointer;
}

#want .container .card-item .card-image {
    width: 100%;
}

#want .container .card-item:hover {
    border: 1px solid #D99E32;
}

#want .container .card-item .card-header {
    margin-bottom: 1rem;

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

#want .container .card-item .badge {
    border-radius: 0.75rem;
    border: 1px solid #D99E32;
    padding: 0.75rem 1.375rem;
    /* display: inline; */

    display: flex;
    align-items: center;
    gap: 0.625rem;
}

#want .container .card-item .badge .badge-label {
    font-size: 1rem;
    font-weight: 500;
    color: #3C3F40;
}

#want .container .card-item .card-description {
    margin-top: 1rem;
    color: #3C3F40;
    line-height: 1rem;
}

/* SECTION RESOURCES */

#resources {
    background-color: #0D0D0D;
    background-image: url(/assets/img/effects/light.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center -800px;
}

#resources .container {
    height: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 10.5rem 0rem;

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

#resources .container .title {
    font-size: 2.25rem;
    font-weight: 500;
    color: #FFF8EE;
    text-align: center;

    margin-bottom: 3rem;
}

#resources .content {
    margin-top: 13.75rem;

    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 6.25rem;
}

#resources .content .left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#resources .content .left .payment-image {
    margin-top: -6.3125rem;
    width: 100%;

}

#resources .content .left .phone-image {
    margin-top: -6.3125rem;
}

#resources .content .left .phone-mobile {
    display: none;
}

#resources .content .right {
    margin-top: 1.375rem;
}

#resources .content .topic {
    margin-top: 2rem;
}

#resources .left .btn-primary {
    display: none;
}

#resources .content .topic .topic-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFF8EE;

    display: flex;
    align-items: center;
    gap: 0.625rem;
}

#resources .content .topic .topic-description {
    margin-top: 0.625rem;

    font-size: 1rem;
    font-weight: normal;
    color: #D9D2C5;
}

/* SECTION CONNECT */

#connect {}

#connect .container {
    background-color: #FFF8EE;
    border-radius: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 6.5625rem 6rem;
}

#connect .connect-header {
    margin-bottom: 1.5rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.375rem;
}

#connect .connect-header .title {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 2.5rem;
    color: #0D0D0D;
}

#connect .connect-header .divider {
    background-color: #F2C744;

    height: 12.5rem;
    width: 0.125rem;
}

#connect .connect-header .description {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #3C3F40;
}


/* SECTION TAXES */

#taxes {}

#taxes .container {
    border-radius: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 11.25rem 0rem;
}

#taxes .container .title {
    margin-bottom: 10rem;

    font-size: 2.25rem;
    font-weight: 400;
    line-height: 2.5rem;
    color: #FFF8EE;
    text-align: center;
}

#taxes .container .title b {
    font-weight: 700;
}

#taxes .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7.875rem;
}

#taxes .right {
    background: #FFF8EE;
    border-radius: 1.875rem;
    padding: 2.75rem;
}

#taxes .right .card-header {
    margin-bottom: 2.125rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#taxes .right .card-header .card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0D0D0D;

    display: flex;
    align-items: center;
    gap: 0.625rem;
}

#taxes .right .card-header .card-header-right {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

#taxes .right .card-header .badge {
    background-color: #F2C744;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;

    font-size: 1.25rem;
    font-weight: 400;
    color: #53330A;
}

#taxes .right .card-content {
    margin-bottom: 2.125rem;
    border: 0.0625rem solid #0D0D0D;
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
}

#taxes .right .card-content .label {
    margin-bottom: 0.875rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #3C3F40;
}

#taxes .right .card-content .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0D0D0D;
}

#taxes .right .withdraw {
    background-color: #2FAC66;
    border-radius: 0.5rem;
    border: none;
    padding: 1.3125rem;
    width: 100%;

    font-size: 1.25rem;
    font-weight: 700;
    color: #0B3D24;

    cursor: pointer;

    transition: all 400ms;
}

#taxes .container .btn-primary {
    display: none;
}

#taxes .right .withdraw:hover {
    background-color: #111;
    color: white;
}

#taxes .left {
    padding: 1.25rem 4rem;
    border: 1px solid #FFF8EE;
    border-radius: 2.25rem;

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

#taxes .left .taxes {
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: #FFF8EE;
}

#taxes .left .divider {
    background-color: #F2C744;
    margin: 0.9375rem 0rem;
    height: 0.125rem;
}

#taxes .left .fees {
    font-size: 1.25rem;
    color: #D9D2C5;
    margin-bottom: 0.9375rem;
}

#taxes .left b {
    color: #FFF8EE;
}

#taxes .left .itallic {
    font-style: italic;
    font-weight: 300;
}

/* SECTION AWARDS */

.awards-title {
    background-color: #FFF8EE;
    padding-top: 5.25rem;
}

.awards-title .container {
    max-width: 75rem;
    margin: 0 auto;
}

.awards-title .title {
    font-size: 1.5rem;
    text-align: center;
    line-height: 2rem;
}

#awards {
    background-color: #FFF8EE;
}

#awards .awards-image {
    width: 100%;
    display: block;
}

#awards .awards-mobile-image {
    display: none;
}

#awards .awards-content {
    background-color: #FFF8EE;
}

.awards-cta {
    background-color: #FFF8EE;
    padding-bottom: 5.25rem;
    margin-top: -5.375rem;
}

.awards-cta .container {
    max-width: 75rem;
    margin: 0 auto;

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

.awards-cta .title {
    font-size: 2.25rem;
    text-align: center;
    line-height: 2.5rem;
}

/* FOOTER */

footer {
    padding: 11.25rem 0rem;
}

footer .container {
    max-width: 75rem;
    margin: 0 auto;
}

footer .main {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

footer .company p {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

footer .company .social {
    margin-top: 1rem;

    display: flex;
    align-items: center;
    gap: 0.875rem;
}

footer .links .title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

footer .links .link {
    color: white;
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 300;
}

footer .divider {
    height: 1px;
    background-color: #F2C744;
    margin: 2.125rem 0rem;
}

footer .legal {
    font-size: 1rem;
    text-align: center;
    color: #FFF8EE;
}

@media (max-width: 1200px) {
    .btn-primary {
        height: 2.8125rem;
        padding: 0.5rem 1.625rem;
        font-size: 0.875rem;
    }

    .header .container .links,
    .header .container .actions {
        display: none;
    }


    .header .container .menu-mobile {
        display: block;
        background-color: transparent;
        border: none;
    }

    #hero {
        padding: 1.25rem 3rem;
        height: 36.25rem;

        background-image: url(/assets/img/illustrations/laptop-mobile.png);
        background-position: right;
    }

    #hero .container .content {
        gap: 0.625rem;


    }

    #hero .container .content .title {
        font-size: 1.5rem;
        line-height: 1.5rem;
        width: 11.5rem;
    }

    #hero .container .content .subtitle {
        font-size: 0.75rem;
        line-height: 0.75rem;
        width: 10.8125rem;
    }

    #hero .container .laptop {
        display: none;
    }

    #want .container {
        padding: 3.25rem;
    }

    #want .container .title {
        font-size: 1.25rem;
        line-height: 1.25rem;
        margin-bottom: 1.875rem;
    }

    #want .container .subtitle {
        font-size: 12px;
        line-height: 12px;
    }

    #want .container .cards {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    #want .container .card-item .card-description {
        text-align: center;
        font-size: 0.75rem;
    }

    #resources {
        background-position: center -200px;
    }

    #resources .container {
        padding: 7.5rem 0rem;
    }

    #resources .container .content {
        grid-template-columns: 1fr;
        margin-top: 3.375rem;
        gap: 2rem;
    }

    #resources .container .title {
        font-size: 1.25rem;
        width: 14.875rem;
        margin-bottom: 0rem;
    }

    #resources .content .left {
        order: 2;
    }

    #resources .content .right {
        order: 1;
        padding: 0rem 5rem
    }

    #resources .left .btn-primary {
        display: flex;
    }

    #resources .content .left .phone-mobile {
        display: block;
    }

    #resources .content .topic {
        margin-top: 1.25rem;
    }

    #resources .content .topic .topic-title {
        font-size: 0.625rem;
    }

    #resources .content .topic .topic-description {
        font-size: 0.5rem;
        margin-top: 0.375rem;
    }

    #resources .content .right .btn-primary {
        display: none;
    }

    #resources .content .left .payment-image {
        display: none;
    }

    #resources .content .left .phone-image {
        display: none;
    }

    #connect .container {
        padding: 3.375rem 1.25rem;
    }

    #connect .container .connect-header .title {
        font-size: 1.25rem;
        line-height: 1.25rem;
    }

    #connect .container .connect-header .divider {
        display: none;
    }

    #connect .container .connect-header .description {
        font-size: 1rem;
        line-height: 1rem;
    }

    #connect .container .btn-primary {
        display: none;
    }

    #taxes .container {
        padding-bottom: 5rem;
    }

    #taxes .container .title {
        font-size: 1.25rem;
        line-height: 1.25rem;
        margin-bottom: 5.625rem;
    }

    #taxes .container .content {
        grid-template-columns: 1fr;
        gap: 2.125rem;
        padding: 2.25rem;
    }

    #taxes .right {
        padding: 1rem 0.625rem;
        border-radius: 0.75rem;
    }

    #taxes .right .card-header .card-title {
        font-size: 0.75rem;
    }

    #taxes .right .card-header .card-header-right .badge {
        font-size: 0.75rem;
    }

    #taxes .right .card-content .label {
        font-size: 0.75rem;
    }

    #taxes .right .card-content .amount {
        font-size: 1.5rem;
    }

    #taxes .left {
        border-radius: 0.75rem;
    }

    #taxes .left .taxes {
        font-size: 0.875rem;
        text-align: center;
    }

    #taxes .left .divider {
        margin: 1rem 0rem;
    }

    #taxes .left .fees {
        text-align: center;
        font-size: 0.875rem;
    }

    #taxes .container .btn-primary {
        margin-top: 0rem;
        display: flex;
    }

    .awards-title {
        padding-top: 2.75rem;
    }

    .awards-title .title {
        font-size: 0.75rem;
        line-height: 0.75rem;
        margin: 0 auto;
        margin-bottom: 4rem;
        width: 18.625rem;
    }

    #awards .awards-image {
        display: none;
    }

    #awards .awards-mobile-image {
        width: 100%;
        display: block;
    }

    .awards-cta {
        margin-top: 0rem;
        padding-bottom: 2.75rem;
    }

    .awards-cta .title {
        font-size: 0.75rem;
        line-height: 0.75rem;
        width: 14.9375rem;
        margin: 0 auto;
    }

    footer {
        padding: 5rem 1.25rem;
    }

    footer .main {
        flex-wrap: wrap;
        gap: 5rem;
    }
}