:root {
    --gold: #b99752;
    --gold-dark: #95743b;
    --gold-light: #d7c18e;

    --black: #1a1a1a;
    --graphite: #2a2a2a;
    --gray-dark: #555555;
    --gray: #777777;
    --gray-light: #e9e7e1;

    --cream: #f7f5ef;
    --cream-dark: #efebe2;
    --white: #ffffff;

    --container: 1180px;

    --font-main: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--graphite);
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(247, 245, 239, .88);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

    transition: .3s ease;
}


.header.scrolled {
    box-shadow: 0 7px 30px rgba(0, 0, 0, .07);
}


.header-content {
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}


.brand-symbol {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);
    color: var(--gold);

    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
}


.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.brand-text strong {
    font-size: 9px;
    letter-spacing: 2.7px;
    color: var(--gray);
}


.brand-text span {
    font-family: var(--font-display);
    font-size: 25px;
    color: var(--black);
}


.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}


.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
}


.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: .25s;
}


.nav a:hover::after {
    width: 100%;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 15px 24px;

    background: var(--graphite);
    color: white;

    font-size: 14px;
    font-weight: 600;

    transition: .25s ease;
}


.btn span {
    font-size: 19px;
    transition: .25s;
}


.btn:hover {
    background: var(--gold-dark);
}


.btn:hover span {
    transform: translateX(4px);
}


.btn-small {
    padding: 11px 18px;
}


.menu-button {
    display: none;

    border: 0;
    background: none;

    cursor: pointer;
}


.menu-button span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 5px 0;

    background: var(--black);
}


/* HERO */

.hero {
    min-height: 760px;

    padding-top: 90px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;

    align-items: center;
}


.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 22px;

    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.eyebrow span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}


.hero h1,
.section-heading h2,
.section-header h2,
.advantages h2,
.contact h2 {
    font-family: var(--font-display);
    font-weight: 600;

    color: var(--black);

    line-height: 1.08;
}


.hero h1 {
    font-size: clamp(44px, 5vw, 71px);

    margin-bottom: 27px;
}


.hero h1 em,
.section-heading em,
.section-header em {
    color: var(--gold-dark);
    font-weight: 600;
}


.hero-content > p {
    max-width: 590px;

    color: var(--gray);
    font-size: 17px;

    margin-bottom: 34px;
}


.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}


.link-button {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--graphite);
    font-size: 14px;
    font-weight: 600;
}


.link-button span {
    color: var(--gold);
}


.hero-trust {
    display: flex;
    align-items: center;
    gap: 27px;

    margin-top: 52px;
}


.trust-item {
    display: flex;
    flex-direction: column;
}


.trust-item strong {
    color: var(--graphite);
    font-size: 13px;
}


.trust-item span {
    color: var(--gray);
    font-size: 12px;
}


.trust-line {
    width: 1px;
    height: 40px;

    background: var(--gray-light);
}


/* CARD HERO */

.hero-card-wrapper {
    position: relative;

    display: flex;
    justify-content: flex-end;
}


.gold-circle {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(185, 151, 82, .18),
            rgba(185, 151, 82, .03) 65%,
            transparent 66%
        );

    top: -70px;
    right: -80px;
}


.hero-card {
    width: min(100%, 470px);
    min-height: 520px;

    position: relative;
    z-index: 2;

    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #252525,
            #171717
        );

    color: white;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .18);
}


.hero-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: linear-gradient(
        var(--gold-light),
        var(--gold-dark)
    );
}


.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.hero-card-top > span {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-light);
}


.status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #bcbcbc;
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.status i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold-light);
}


.hero-card-main {
    margin-top: 90px;
}


.small-title {
    color: var(--gold-light);
    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 2px;
}


.hero-card-main h2 {
    margin: 15px 0 20px;

    font-family: var(--font-display);
    font-size: 39px;
    font-weight: 600;

    line-height: 1.15;
}


.hero-card-main p {
    color: #a9a9a9;
    font-size: 14px;
}


.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255,255,255,.12);

    padding-top: 25px;
    margin-top: 80px;
}


.hero-card-stats div {
    display: flex;
    flex-direction: column;
}


.hero-card-stats span {
    color: var(--gold-light);
    font-size: 11px;
}


.hero-card-stats strong {
    margin-top: 3px;
    font-size: 12px;
}


/* DECORAÇÃO */

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.hero-decoration-1 {
    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -150px;

    border: 1px solid rgba(185, 151, 82, .2);
}


.hero-decoration-2 {
    width: 180px;
    height: 180px;

    left: -95px;
    bottom: -65px;

    border: 1px solid rgba(185, 151, 82, .3);
}


/* SEÇÕES */

.section {
    padding: 120px 0;
}


.about {
    background: white;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 110px;
}


.section-heading h2,
.section-header h2,
.advantages h2,
.contact h2 {
    font-size: clamp(37px, 4vw, 53px);
}


.about-text .lead {
    color: var(--graphite);

    font-size: 19px;
    font-weight: 500;

    margin-bottom: 22px;
}


.about-text p {
    color: var(--gray);
    margin-bottom: 18px;
}


.text-link {
    display: inline-flex;
    gap: 10px;

    margin-top: 14px;

    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 700;
}


/* SERVIÇOS */

.services {
    background: var(--cream);
}


.section-header {
    display: grid;
    grid-template-columns: 1fr .42fr;

    gap: 60px;

    align-items: flex-end;

    margin-bottom: 60px;
}


.section-header > p {
    color: var(--gray);
    font-size: 15px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #dad6cb;
    border-left: 1px solid #dad6cb;
}


.service-card {
    position: relative;

    padding: 35px 29px 38px;

    background: transparent;

    border-right: 1px solid #dad6cb;
    border-bottom: 1px solid #dad6cb;

    transition: .35s;
}


.service-card:hover {
    background: white;

    transform: translateY(-7px);

    box-shadow: 0 25px 55px rgba(0,0,0,.07);
}


.service-number {
    color: #aaa;
    font-size: 11px;

    margin-bottom: 45px;
}


.service-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border: 1px solid var(--gold-light);

    color: var(--gold-dark);

    font-family: var(--font-display);
    font-size: 25px;
}


.service-card h3 {
    color: var(--black);
    font-size: 18px;

    margin-bottom: 14px;
}


.service-card p {
    min-height: 118px;

    color: var(--gray);
    font-size: 14px;
}


.service-card a {
    display: inline-flex;
    gap: 8px;

    margin-top: 20px;

    color: var(--graphite);
    font-size: 13px;
    font-weight: 700;
}


.service-card a span {
    color: var(--gold);
}


/* DIFERENCIAIS */

.advantages {
    background: var(--graphite);
}


.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.eyebrow.light {
    color: var(--gold-light);
}


.advantages h2,
.contact h2 {
    color: white;
}


.advantages h2 em,
.contact h2 em {
    color: var(--gold-light);

    font-weight: 600;
}


.advantages-content > p {
    margin: 26px 0 35px;

    max-width: 510px;

    color: #aaa;

    font-size: 15px;
}


.btn-light {
    background: white;
    color: var(--graphite);
}


.btn-light:hover {
    background: var(--gold-light);
    color: var(--black);
}


.advantages-list {
    border-top: 1px solid rgba(255,255,255,.12);
}


.advantage {
    display: grid;
    grid-template-columns: 70px 1fr;

    padding: 30px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.advantage > span {
    color: var(--gold-light);
    font-family: var(--font-display);
}


.advantage h3 {
    color: white;
    font-size: 17px;

    margin-bottom: 6px;
}


.advantage p {
    color: #999;
    font-size: 13px;
}


/* NÚMEROS */

.numbers {
    background: white;

    padding: 55px 0;
}


.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.number-item {
    padding: 20px 35px;

    text-align: center;

    border-right: 1px solid var(--gray-light);
}


.number-item:last-child {
    border-right: 0;
}


.number-item strong {
    font-family: var(--font-display);
    font-size: 42px;

    color: var(--black);
}


.number-item > span {
    color: var(--gold-dark);
    font-size: 24px;
}


.number-item p {
    margin-top: 3px;

    color: var(--gray);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* CONTATO */

.contact {
    background: var(--cream);
}


.contact-box {
    position: relative;

    display: grid;
    grid-template-columns: 1fr .4fr;

    gap: 70px;

    align-items: center;

    padding: 70px;

    background: #222;

    overflow: hidden;
}


.contact-box::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    right: -200px;
    top: -190px;

    border: 1px solid rgba(215,193,142,.25);
}


.contact h2 {
    max-width: 700px;
}


.contact-content > p {
    max-width: 650px;

    margin-top: 23px;

    color: #a8a8a8;
}


.contact-action {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 14px;
}


.btn-gold {
    background: var(--gold);
    color: #171717;
}


.btn-gold:hover {
    background: var(--gold-light);
}


.contact-note {
    color: #888;
    font-size: 11px;
}


/* FOOTER */

.footer {
    background: #191919;
    color: white;

    padding: 65px 0 25px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;

    gap: 80px;

    padding-bottom: 50px;
}


.footer-brand .brand-text span {
    color: white;
}


.footer-grid > div:first-child > p {
    max-width: 330px;

    margin-top: 20px;

    color: #888;
    font-size: 13px;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.footer-column strong {
    color: var(--gold-light);

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 7px;
}


.footer-column a,
.footer-column span {
    color: #8c8c8c;
    font-size: 13px;
}


.footer-column a:hover {
    color: var(--gold-light);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.09);

    color: #666;
    font-size: 11px;
}


/* ANIMAÇÕES */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVO */

@media (max-width: 1000px) {

    .nav,
    .desktop-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .nav.active {
        position: absolute;

        top: 90px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        padding: 28px;

        background: var(--cream);

        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .hero {
        padding: 150px 0 90px;
    }

    .hero-grid,
    .about-grid,
    .advantages-grid,
    .contact-box,
    .section-header {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 65px;
    }

    .hero-card-wrapper {
        justify-content: center;
    }

    .about-grid,
    .advantages-grid {
        gap: 55px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-item:nth-child(2) {
        border-right: 0;
    }

    .contact-box {
        padding: 50px;
    }

}


@media (max-width: 650px) {

    .header-content {
        height: 75px;
    }

    .nav.active {
        top: 75px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .hero-card {
        min-height: auto;
    }

    .hero-card-main {
        margin-top: 65px;
    }

    .hero-card-main h2 {
        font-size: 32px;
    }

    .hero-card-stats {
        margin-top: 55px;
    }

    .section {
        padding: 85px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .number-item {
        padding: 25px 10px;

        border-bottom: 1px solid var(--gray-light);
    }

    .number-item:nth-child(2n) {
        border-right: 0;
    }

    .contact-box {
        padding: 38px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

}