:root {
    --cream: #f4efe6;
    --cream-2: #faf8f4;
    --white: #ffffff;

    --charcoal: #353634;
    --charcoal-2: #454642;
    --gray: #77746d;

    --gold: #b59a6a;
    --gold-light: #d7c8aa;

    --container: 1380px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--cream);

    color: var(--charcoal);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: absolute;

    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;

    border-bottom:
        1px solid rgba(50, 50, 50, .08);
}

.header-inner {
    width: min(
        calc(100% - 64px),
        1480px
    );

    height: 92px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}

.logo {
    width: 190px;

    flex-shrink: 0;
}

.logo img {
    display: block;

    width: 100%;
}

.nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: clamp(
        14px,
        1.5vw,
        27px
    );
}

.nav a {
    position: relative;

    text-decoration: none;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .04em;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: .25s;
}

.nav a:hover::after {
    width: 100%;
}

.btn-sistema {
    padding: 12px 17px;

    border:
        1px solid rgba(
            181,
            154,
            106,
            .75
        );

    text-decoration: none;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.menu-btn {
    display: none;

    border: 0;

    background: transparent;
}

.menu-btn span {
    display: block;

    width: 24px;
    height: 1px;

    margin: 6px 0;

    background: var(--charcoal);
}


/* =====================================================
   ELEMENTOS GERAIS
===================================================== */

.eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .30em;
}

.eyebrow span {
    width: 40px;
    height: 1px;

    background: var(--gold);
}

.eyebrow.light {
    color: var(--gold-light);
}

h1,
h2,
h3,
blockquote {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.btn {
    min-height: 46px;

    padding: 0 23px;

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

    text-decoration: none;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.btn-gold {
    color: white;

    background: var(--gold);

    border:
        1px solid var(--gold);
}

.btn-outline {
    border:
        1px solid var(--gold);
}

.section-number {
    position: absolute;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color:
        rgba(
            181,
            154,
            106,
            .13
        );
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 770px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #f8f5ef 0%,
            #f3ede3 58%,
            #ebe2d5 100%
        );
}

.hero-inner {
    position: relative;

    z-index: 3;

    width: min(
        calc(100% - 70px),
        var(--container)
    );

    min-height: 770px;

    margin: auto;

    padding-top: 92px;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;
}

.hero-copy {
    position: relative;

    z-index: 5;

    max-width: 620px;
}

.hero-copy h1 {
    margin:
        25px 0
        28px;

    font-size:
        clamp(
            52px,
            5.1vw,
            78px
        );

    line-height: .94;

    letter-spacing: -.045em;

    font-weight: 400;
}

.hero-copy h1 em {
    display: block;

    margin-top: 8px;

    color: var(--gold);

    font-weight: 400;
}

.hero-copy > p {
    max-width: 485px;

    font-size: 13px;

    line-height: 1.75;

    color: var(--gray);
}

.hero-actions {
    margin-top: 28px;

    display: flex;

    gap: 11px;
}

.hero-tags {
    margin-top: 35px;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: .22em;

    color: #88837a;
}

.hero-tags i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--gold);
}

.hero-photo {
    position: absolute;

    right: 5%;

    bottom: 0;

    z-index: 3;

    width: 45%;
    height: 89%;

    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center 20%;
}

.hero-bg-face {
    position: absolute;

    z-index: 1;

    right: -5%;
    top: 7%;

    width: 43%;
    height: 90%;

    background:
        url(
            "/static/img/manuella-perfil.jpg"
        )
        center 25% / cover
        no-repeat;

    opacity: .08;

    filter: grayscale(1);

    mask-image:
        linear-gradient(
            to left,
            black,
            rgba(0,0,0,.5),
            transparent
        );
}

.hero-watermark {
    position: absolute;

    z-index: 0;

    right: -6%;

    top: 46%;

    transform:
        translateY(-50%);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 37vw;

    line-height: .7;

    letter-spacing: -.12em;

    color:
        rgba(
            181,
            154,
            106,
            .045
        );
}


/* =====================================================
   OFFICE
===================================================== */

.office {
    position: relative;

    padding:
        115px 0;

    background: var(--cream-2);

    overflow: hidden;
}

.office .section-number {
    left: 3%;

    top: 68px;

    font-size: 150px;
}

.office-inner {
    width: min(
        calc(100% - 70px),
        1280px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.office-photo {
    height: 590px;

    overflow: hidden;
}

.office-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 31%;
}

.office-copy h2,
.profile-copy h2 {
    margin:
        24px 0
        28px;

    font-size:
        clamp(
            43px,
            4.3vw,
            68px
        );

    line-height: .98;

    letter-spacing: -.04em;

    font-weight: 400;
}

.office-copy h2 em,
.profile-copy h2 em {
    display: block;

    margin-top: 7px;

    color: var(--gold);

    font-weight: 400;
}

.office-copy > p,
.profile-copy > p {
    max-width: 570px;

    font-size: 12px;

    line-height: 1.82;

    color: var(--gray);
}

.office-copy .lead,
.profile-copy .lead {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    line-height: 1.55;

    color: var(--charcoal-2);
}

.principles {
    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid rgba(50,50,50,.11);
}

.principles article {
    padding:
        19px 20px 19px 0;

    display: grid;

    grid-template-columns:
        36px 1fr;

    gap: 12px;

    border-bottom:
        1px solid rgba(50,50,50,.1);
}

.principles article:nth-child(odd) {
    border-right:
        1px solid rgba(50,50,50,.1);
}

.principles article:nth-child(even) {
    padding-left: 20px;
}

.principles article > span {
    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.principles strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;
}

.principles p {
    margin: 6px 0 0;

    font-size: 10px;

    line-height: 1.55;

    color: var(--gray);
}


/* =====================================================
   STRIP
===================================================== */

.areas-strip {
    background: #353633;

    color: white;
}

.areas-strip-inner {
    width: min(
        100%,
        1480px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.areas-strip article {
    min-height: 185px;

    padding:
        35px 30px;

    border-right:
        1px solid rgba(255,255,255,.11);
}

.areas-strip article > span {
    color: var(--gold);

    font-size: 9px;
}

.areas-strip strong {
    display: block;

    margin:
        18px 0
        11px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    font-weight: 400;
}

.areas-strip small {
    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================================
   PROFILE
===================================================== */

.profile {
    position: relative;

    padding:
        120px 0;

    overflow: hidden;

    background: var(--cream);
}

.profile-inner {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 70px),
        1280px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr .88fr;

    gap: 105px;

    align-items: center;
}

.profile-photo {
    position: relative;

    height: 625px;
}

.profile-photo > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center 25%;
}

.profile-photo blockquote {
    position: absolute;

    left: -70px;
    bottom: 40px;

    width: 300px;

    margin: 0;

    padding: 28px;

    background:
        rgba(
            248,
            245,
            238,
            .95
        );

    border-left:
        2px solid var(--gold);

    font-size: 17px;

    line-height: 1.45;

    font-style: italic;
}

.profile-watermark {
    position: absolute;

    right: -8%;
    bottom: -10%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30vw;

    color:
        rgba(
            181,
            154,
            106,
            .05
        );
}

.profile-data {
    margin-top: 32px;

    border-top:
        1px solid rgba(50,50,50,.11);
}

.profile-data div {
    padding:
        15px 0;

    border-bottom:
        1px solid rgba(50,50,50,.09);
}

.profile-data small {
    display: inline-block;

    width: 105px;

    color: var(--gold);

    font-size: 7px;

    letter-spacing: .17em;
}

.profile-data strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 400;
}


/* =====================================================
   SECTION HEAD
===================================================== */

.section-head {
    width: min(
        calc(100% - 70px),
        1280px
    );

    margin:
        0 auto 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.section-head h2 {
    margin:
        20px 0 0;

    font-size:
        clamp(
            44px,
            4.7vw,
            70px
        );

    line-height: .95;

    font-weight: 400;

    letter-spacing: -.04em;
}

.section-head h2 em {
    color: var(--gold);

    font-weight: 400;
}

.section-head > p {
    max-width: 390px;

    margin: 0;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   UPDATES
===================================================== */

.updates {
    padding:
        110px 0;

    background: var(--cream-2);
}

.updates-grid {
    width: min(
        calc(100% - 70px),
        1280px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid rgba(50,50,50,.12);
}

.update-card {
    min-height: 315px;

    padding:
        35px 34px 30px 0;

    border-right:
        1px solid rgba(50,50,50,.1);
}

.update-card + .update-card {
    padding-left: 34px;
}

.card-tag,
.articles-grid article > span {
    color: var(--gold);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: .19em;
}

.update-card h3 {
    max-width: 330px;

    margin:
        30px 0
        20px;

    font-size: 25px;

    line-height: 1.1;

    font-weight: 400;
}

.update-card p {
    max-width: 320px;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.7;
}

.update-card a {
    display: inline-block;

    margin-top: 20px;

    color: var(--gold);

    text-decoration: none;

    font-size: 9px;

    letter-spacing: .08em;
}


/* =====================================================
   ARTICLES
===================================================== */

.articles {
    padding:
        110px 0 125px;

    background: var(--cream);
}

.editorial-link {
    color: var(--gold);

    text-decoration: none;

    font-size: 9px;

    letter-spacing: .12em;
}

.articles-grid {
    width: min(
        calc(100% - 70px),
        1280px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

.article-image {
    height: 310px;

    margin-bottom: 23px;

    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center 27%;
}

.article-image-alt img {
    object-position:
        center 40%;
}

.articles-grid h3 {
    margin:
        15px 0;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 400;
}

.articles-grid a {
    color: var(--gold);

    text-decoration: none;

    font-size: 9px;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {
    padding:
        115px 0;

    background: #3b3c39;

    color: white;
}

.testimonials-inner {
    width: min(
        calc(100% - 70px),
        1180px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr .9fr;

    gap: 110px;

    align-items: center;
}

.testimonials-copy h2 {
    margin:
        24px 0
        35px;

    font-size:
        clamp(
            43px,
            4.3vw,
            67px
        );

    line-height: .96;

    font-weight: 400;
}

.testimonials-copy h2 em {
    display: block;

    color: var(--gold-light);

    font-weight: 400;
}

.testimonials-copy blockquote {
    margin:
        35px 0 20px;

    padding-left: 25px;

    border-left:
        1px solid var(--gold);

    color:
        rgba(255,255,255,.74);

    font-size: 20px;

    line-height: 1.5;

    font-style: italic;
}

.testimonials-copy small {
    color: var(--gold);

    font-size: 7px;

    letter-spacing: .18em;
}

.testimonial-form {
    padding: 38px;

    background: #f5f1e8;

    color: var(--charcoal);
}

.testimonial-form > span {
    color: var(--gold);

    font-size: 7px;

    letter-spacing: .22em;
}

.testimonial-form h3 {
    margin:
        12px 0;

    font-size: 27px;

    font-weight: 400;
}

.testimonial-form > p {
    color: var(--gray);

    font-size: 11px;

    line-height: 1.6;
}

.testimonial-form form {
    margin-top: 25px;
}

.testimonial-form input,
.testimonial-form textarea {
    display: block;

    width: 100%;

    margin-bottom: 10px;

    padding: 13px 0;

    border: 0;
    border-bottom:
        1px solid rgba(50,50,50,.18);

    outline: 0;

    background: transparent;

    font-family: inherit;
}

.testimonial-form textarea {
    min-height: 90px;

    resize: vertical;
}

.testimonial-form button {
    margin-top: 12px;

    padding: 14px 20px;

    border: 0;

    background: var(--gold);

    color: white;

    font-size: 8px;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.form-note {
    display: block;

    margin-top: 15px;

    color: #99958d;

    font-size: 8px;

    line-height: 1.4;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    padding:
        105px 0;

    background: #292a28;

    color: white;
}

.contact-inner {
    width: min(
        calc(100% - 70px),
        1180px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 110px;
}

.contact-copy h2 {
    margin:
        22px 0;

    font-size:
        clamp(
            43px,
            4.4vw,
            67px
        );

    line-height: .97;

    font-weight: 400;
}

.contact-copy h2 em {
    display: block;

    color: var(--gold-light);

    font-weight: 400;
}

.contact-copy p {
    max-width: 440px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;

    line-height: 1.7;
}

.contact-data {
    border-top:
        1px solid rgba(255,255,255,.16);
}

.contact-data div {
    padding:
        18px 0;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.contact-data small {
    display: inline-block;

    width: 170px;

    color: var(--gold);

    font-size: 7px;

    letter-spacing: .18em;
}

.contact-data strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;

    color:
        rgba(255,255,255,.82);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding:
        40px max(
            30px,
            calc(
                (100% - 1280px)
                / 2
            )
        )
        22px;

    background: #f8f5ef;
}

.footer-main {
    display: flex;
    align-items: center;

    gap: 30px;
}

.footer-law-logo {
    width: 155px;
}

.footer-text p {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    line-height: 1.4;
}

.footer-text small {
    display: block;

    margin-top: 7px;

    color: #8b877f;

    font-size: 7px;
}

.footer-system {
    margin-left: auto;

    color: var(--gold);

    text-decoration: none;

    font-size: 8px;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.footer-dev {
    margin-top: 30px;

    padding-top: 16px;

    border-top:
        1px solid rgba(50,50,50,.09);

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

    gap: 12px;
}

.footer-dev span {
    color: #99958e;

    font-size: 7px;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.footer-dev img {
    width: 90px;
    height: 35px;

    object-fit: contain;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (
    max-width: 1050px
) {

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 8px;
    }

    .office-inner,
    .profile-inner {
        gap: 60px;
    }
}


@media (
    max-width: 900px
) {

    .header-inner {
        width:
            calc(100% - 34px);
    }

    .logo {
        width: 155px;
    }

    .nav {
        position: fixed;

        z-index: 200;

        left: 0;
        right: 0;
        top: 92px;

        display: none;

        padding: 28px;

        background: #f7f3eb;

        flex-direction: column;

        align-items: flex-start;
    }

    .menu-open .nav {
        display: flex;
    }

    .nav a {
        font-size: 11px;

        padding: 6px 0;
    }

    .menu-btn {
        display: block;
    }

    .btn-sistema {
        margin-left: auto;
    }

    .hero-inner {
        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;

        padding-top: 130px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-copy {
        padding:
            50px 0;
    }

    .hero-photo {
        position: relative;

        right: auto;
        bottom: auto;

        width: min(
            100%,
            560px
        );

        height: 600px;

        margin:
            0 auto;
    }

    .hero-bg-face {
        display: none;
    }

    .office-inner,
    .profile-inner {
        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;
    }

    .office-photo {
        height: 550px;
    }

    .areas-strip-inner {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .profile-photo {
        height: 560px;
    }

    .profile-photo blockquote {
        left: 20px;
    }

    .updates-grid,
    .articles-grid {
        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;
    }

    .update-card {
        border-right: 0;

        border-bottom:
            1px solid rgba(50,50,50,.1);
    }

    .update-card + .update-card {
        padding-left: 0;
    }

    .section-head {
        width:
            calc(100% - 36px);

        align-items:
            flex-start;

        flex-direction: column;
    }

    .testimonials-inner,
    .contact-inner {
        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;

        gap: 60px;
    }

}


@media (
    max-width: 560px
) {

    .btn-sistema {
        display: none;
    }

    .header-inner {
        height: 78px;
    }

    .nav {
        top: 78px;
    }

    .hero-copy h1 {
        font-size:
            clamp(
                43px,
                13vw,
                59px
            );
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-photo {
        height: 490px;
    }

    .office,
    .profile,
    .updates,
    .articles,
    .testimonials,
    .contact {
        padding:
            80px 0;
    }

    .office-photo {
        height: 450px;
    }

    .principles {
        grid-template-columns:
            1fr;
    }

    .principles article:nth-child(odd) {
        border-right: 0;
    }

    .principles article:nth-child(even) {
        padding-left: 0;
    }

    .areas-strip-inner {
        grid-template-columns:
            1fr;
    }

    .areas-strip article {
        min-height: auto;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.1);
    }

    .profile-photo {
        height: 470px;
    }

    .profile-photo blockquote {
        left: 10px;
        right: 10px;
        bottom: 20px;

        width: auto;
    }

    .article-image {
        height: 290px;
    }

    .contact-data small {
        display: block;

        width: auto;

        margin-bottom: 8px;
    }

    .footer-main {
        align-items:
            flex-start;

        flex-direction: column;
    }

    .footer-system {
        margin-left: 0;
    }

    .footer-dev {
        justify-content:
            flex-start;
    }

}


/* ==========================================================
   REFERÊNCIA APROVADA — HERO
========================================================== */

.hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #f7f3eb 0%,
            #fbf9f5 47%,
            #f1eadf 100%
        );
}

.hero-inner {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 70px),
        1380px
    );

    min-height: 710px;

    margin: auto;

    padding-top: 92px;

    display: block;
}

.hero-copy {
    position: absolute;

    z-index: 10;

    left: 0;
    top: 205px;

    width: 500px;
}

.hero-kicker {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 19px;

    color: #393936;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .28em;
}

.hero-kicker span {
    display: block;

    width: 88px;
    height: 1px;

    background: var(--gold);
}

.hero-copy h1 {
    width: 530px;

    margin: 0;

    color: #333431;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 45px;

    line-height: 1.02;

    letter-spacing: -.037em;

    font-weight: 400;
}

.hero-copy h1 em {
    display: block;

    margin-top: 3px;

    color: var(--gold);

    font-size: 44px;

    line-height: 1.02;

    font-weight: 400;
}

.hero-copy > p {
    width: 420px;

    margin: 22px 0 0;

    color: #565650;

    font-size: 11px;

    line-height: 1.55;
}

.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 24px;
}

.hero-btn {
    height: 43px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(65, 55, 40, .10);
}

.hero-btn-gold {
    background: var(--gold);

    border:
        1px solid var(--gold);

    color: white;
}

.hero-btn-outline {
    background:
        rgba(255,255,255,.25);

    border:
        1px solid var(--gold);

    color: #363633;
}

.hero-tags {
    margin-top: 27px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #858078;

    font-size: 6px;
    font-weight: 600;

    letter-spacing: .29em;
}

.hero-tags i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--gold);
}


/* Foto central */

.hero-personagem {
    position: absolute;

    z-index: 7;

    left: 46%;

    bottom: 0;

    width: 395px;
    height: 625px;

    overflow: hidden;

    background: transparent;
}

.hero-personagem img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        52% 25%;

    display: block;

    mix-blend-mode: normal;
}


/* Rosto gigante transparente */

.hero-rosto-fundo {
    position: absolute;

    z-index: 1;

    right: -1%;

    top: 42px;

    width: 440px;
    height: 650px;

    background:
        url(
            "/static/img/manuella-perfil.jpg"
        )
        50% 16% / cover
        no-repeat;

    opacity: .105;

    filter:
        grayscale(1)
        sepia(.08);

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,.45) 22%,
            black 65%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,.45) 22%,
            black 65%,
            transparent 100%
        );
}


/* Frase à direita */

.hero-frase {
    position: absolute;

    z-index: 8;

    right: 105px;

    top: 190px;

    width: 225px;
}

.hero-frase blockquote {
    margin: 0;

    color: #ad8e5d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.22;

    font-style: italic;

    font-weight: 400;
}

.hero-frase > span {
    display: block;

    margin-top: 21px;

    color: #66645e;

    font-size: 7px;

    letter-spacing: .31em;
}

.hero-frase > i {
    display: block;

    width: 28px;
    height: 1px;

    margin-top: 19px;

    background: var(--gold);
}


/* Folhagem abstrata lateral */

.hero-folhagem {
    position: absolute;

    z-index: 0;

    pointer-events: none;
}

.hero-folhagem-esq {
    left: -60px;

    top: -15px;

    width: 230px;
    height: 650px;

    opacity: .12;

    background:
        radial-gradient(
            ellipse at 30% 15%,
            rgba(86,90,65,.38) 0 15%,
            transparent 16%
        ),
        radial-gradient(
            ellipse at 60% 35%,
            rgba(86,90,65,.26) 0 18%,
            transparent 19%
        ),
        radial-gradient(
            ellipse at 15% 58%,
            rgba(86,90,65,.23) 0 19%,
            transparent 20%
        ),
        radial-gradient(
            ellipse at 62% 80%,
            rgba(86,90,65,.18) 0 17%,
            transparent 18%
        );

    filter: blur(2px);
}


/* ==========================================================
   REFERÊNCIA APROVADA — ESCRITÓRIO
========================================================== */

.office {
    padding: 48px 0 42px;

    background: #ffffff;
}

.office-inner {
    width: min(
        calc(100% - 70px),
        1280px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        320px
        minmax(380px, 1fr)
        330px;

    gap: 48px;

    align-items: center;
}

.office-photo {
    position: relative;

    height: 350px;

    overflow: visible;
}

.office-photo img {
    width: 300px;
    height: 350px;

    object-fit: cover;

    object-position:
        50% 22%;

    display: block;
}

.office-number {
    position: absolute;

    z-index: 2;

    left: -10px;
    top: -15px;

    color:
        rgba(181,154,106,.18);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 77px;

    line-height: 1;
}

.office-detail {
    position: absolute;

    right: 0;
    top: 73px;

    width: 15px;
    height: 145px;

    background: #c7a974;
}

.office-copy {
    align-self: center;
}

.office-kicker {
    display: flex;
    align-items: center;

    gap: 15px;

    color: #68645d;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: .31em;
}

.office-kicker span {
    width: 65px;
    height: 1px;

    background: var(--gold);
}

.office-copy h2 {
    margin:
        11px 0 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    line-height: 1.02;

    letter-spacing: -.025em;

    font-weight: 400;
}

.office-copy h2 em {
    color: var(--gold);

    font-weight: 400;
}

.office-copy > p {
    max-width: 480px;

    margin: 8px 0;

    color: #555550;

    font-size: 10px;

    line-height: 1.55;
}

.office-link {
    min-width: 205px;

    height: 36px;

    margin-top: 13px;

    padding: 0 15px;

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

    border:
        1px solid var(--gold);

    color: #8f744a;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 10px;

    transition:
        background .2s ease,
        color .2s ease;
}

.office-link:hover {
    background: var(--gold);

    color: white;
}


/* Pilares direitos */

.office-values {
    padding-left: 31px;

    border-left:
        1px solid
        rgba(181,154,106,.55);
}

.office-values article {
    min-height: 70px;

    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 10px;

    align-items: start;

    padding: 7px 0;
}

.office-icon {
    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1;
}

.office-values strong {
    display: block;

    margin-bottom: 4px;

    color: #474844;

    font-size: 9px;

    letter-spacing: .02em;
}

.office-values p {
    margin: 0;

    color: #77736c;

    font-size: 8px;

    line-height: 1.45;
}


/* ==========================================================
   REFERÊNCIA APROVADA — FAIXA CLARA
========================================================== */

.areas-strip {
    background:
        linear-gradient(
            90deg,
            #f6f2eb,
            #fbfaf7,
            #f4efe7
        );

    color: #3f403d;

    border-top:
        1px solid rgba(80,80,75,.07);

    border-bottom:
        1px solid rgba(80,80,75,.07);
}

.areas-strip-inner {
    width: min(
        calc(100% - 70px),
        1280px
    );

    min-height: 87px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr)
        1.35fr;

    align-items: stretch;
}

.areas-strip article {
    min-height: 87px;

    padding: 0 22px;

    display: flex;
    align-items: center;

    gap: 16px;

    border-right:
        1px solid rgba(70,70,65,.12);
}

.strip-icon {
    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;

    line-height: 1;
}

.areas-strip strong {
    display: block;

    margin: 0;

    color: #42433f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    line-height: 1.12;

    font-weight: 400;
}

.areas-strip small {
    display: none;
}

.strip-signature {
    position: relative;

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

    padding-left: 20px;
}

.strip-signature span {
    color: var(--gold);

    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    font-size: 25px;

    line-height: .85;

    font-style: italic;

    transform: rotate(-5deg);
}

.strip-signature i {
    width: 45px;
    height: 1px;

    margin-left: 12px;

    background:
        rgba(181,154,106,.55);
}


/* ==========================================================
   RESPONSIVO DO TOPO
========================================================== */

@media (max-width: 1100px) {

    .hero-frase {
        display: none;
    }

    .hero-personagem {
        left: auto;
        right: 0;
    }

    .office-inner {
        grid-template-columns:
            280px 1fr;
    }

    .office-values {
        grid-column:
            1 / -1;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        padding-left: 0;

        border-left: 0;

        border-top:
            1px solid rgba(181,154,106,.35);
    }

    .office-values article {
        padding: 20px 10px;
    }

    .areas-strip-inner {
        grid-template-columns:
            repeat(4, 1fr);
    }

    .strip-signature {
        display: none;
    }
}


@media (max-width: 900px) {

    .hero-inner {
        width:
            calc(100% - 36px);

        min-height: auto;

        padding-top: 120px;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        position: relative;

        left: auto;
        top: auto;

        width: 100%;

        padding:
            45px 0 30px;
    }

    .hero-copy h1,
    .hero-copy h1 em,
    .hero-copy > p {
        width: auto;
    }

    .hero-personagem {
        position: relative;

        right: auto;

        width: min(100%, 500px);
        height: 580px;

        margin: auto;
    }

    .hero-rosto-fundo,
    .hero-folhagem {
        display: none;
    }

    .office-inner {
        width:
            calc(100% - 36px);

        grid-template-columns:
            1fr;
    }

    .office-photo {
        width: min(100%, 420px);

        height: 460px;

        margin: auto;
    }

    .office-photo img {
        width: 100%;
        height: 100%;
    }

    .office-values {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .areas-strip-inner {
        width:
            calc(100% - 36px);

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 560px) {

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy h1 em {
        font-size: 40px;
    }

    .hero-copy > p {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;

        justify-content: center;
    }

    .hero-personagem {
        height: 490px;
    }

    .office {
        padding: 70px 0;
    }

    .office-copy h2 {
        font-size: 37px;
    }

    .office-values {
        grid-template-columns:
            1fr;
    }

    .areas-strip-inner {
        grid-template-columns:
            1fr;
    }

    .areas-strip article {
        min-height: 78px;

        border-right: 0;

        border-bottom:
            1px solid rgba(70,70,65,.09);
    }

}


/* ==========================================================
   GABARITO FINAL — HEADER + HERO
========================================================== */

.header {
    position: absolute;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;

    background: transparent;

    border-bottom: 0;
}

.header-inner {
    width: min(calc(100% - 72px), 1340px);
    height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 26px;
}

.logo {
    width: 150px;

    flex: 0 0 auto;

    position: relative;

    z-index: 2;
}

.logo img {
    width: 100%;
    height: auto;

    display: block;
}

.nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 22px;
}

.nav a {
    position: relative;

    padding: 6px 0 9px;

    color: #40413e;

    text-decoration: none;

    white-space: nowrap;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 8px;
    font-weight: 400;

    letter-spacing: 0;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #b49159;

    transition: width .25s ease;
}

.nav a:hover::after,
.nav a.ativo::after {
    width: 100%;
}

.btn-sistema {
    height: 36px;

    padding: 0 16px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    background: #b3915a;

    border: 1px solid #b3915a;

    border-radius: 3px;

    color: #fff;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    letter-spacing: .01em;

    text-transform: none;

    white-space: nowrap;
}

.btn-sistema svg {
    width: 13px;
    height: 13px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* HERO --------------------------------------------------- */

.hero {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #f8f5ef 0%,
            #faf8f4 43%,
            #f5efe6 100%
        );
}

.hero-inner {
    position: relative;

    z-index: 5;

    width: min(calc(100% - 72px), 1340px);
    min-height: 620px;

    margin: 0 auto;

    padding: 82px 0 0;

    display: block;
}


/* TEXTO -------------------------------------------------- */

.hero-copy {
    position: absolute;

    z-index: 20;

    left: 0;
    top: 168px;

    width: 465px;
}

.hero-kicker {
    margin-bottom: 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #363734;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .31em;
}

.hero-kicker span {
    width: 88px;
    height: 1px;

    background: #b49159;
}

.hero-copy h1 {
    width: 485px;

    margin: 0;

    color: #2f302e;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
    line-height: .98;

    letter-spacing: -.025em;

    font-weight: 400;
}

.hero-copy h1 em {
    display: block;

    margin-top: 4px;

    color: #b59460;

    font-size: 41px;
    line-height: 1;

    font-weight: 400;
}

.hero-copy > p {
    width: 390px;

    margin: 19px 0 0;

    color: #555650;

    font-size: 10px;
    line-height: 1.48;
}


/* BOTÕES ------------------------------------------------- */

.hero-actions {
    margin-top: 21px;

    display: flex;

    gap: 12px;
}

.hero-btn {
    height: 41px;

    padding: 0 17px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    border-radius: 3px;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 10px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.hero-btn svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(80, 62, 35, .10);
}

.hero-btn-gold {
    background: #b3915a;

    border: 1px solid #b3915a;

    color: #fff;
}

.hero-btn-outline {
    background: rgba(255,255,255,.5);

    border: 1px solid #b3915a;

    color: #393a37;
}


/* TAGS --------------------------------------------------- */

.hero-tags {
    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #77766f;

    font-size: 6px;
    font-weight: 600;

    letter-spacing: .31em;
}

.hero-tags i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #b49159;
}


/* MANUELLA CENTRAL -------------------------------------- */

.hero-personagem {
    position: absolute;

    z-index: 10;

    left: 43.2%;
    bottom: 0;

    width: 430px;
    height: 565px;

    overflow: hidden;
}

.hero-personagem::before {
    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(248,245,239,.22) 0%,
            transparent 11%,
            transparent 85%,
            rgba(248,245,239,.18) 100%
        );
}

.hero-personagem::after {
    content: "";

    position: absolute;

    z-index: 3;

    left: 0;
    right: 0;
    bottom: 0;

    height: 100px;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            #f7f3ec 0%,
            rgba(247,243,236,.55) 24%,
            transparent 100%
        );
}

.hero-personagem img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: 50% 21%;
}


/* RETRATO FANTASMA -------------------------------------- */

.hero-retrato-fantasma {
    position: absolute;

    z-index: 1;

    right: -8px;
    top: 25px;

    width: 405px;
    height: 590px;

    background:
        url("/static/img/manuella-perfil.jpg")
        center 16% / cover
        no-repeat;

    opacity: .095;

    filter:
        grayscale(1)
        contrast(.92);

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,.55) 18%,
            black 52%,
            rgba(0,0,0,.75) 83%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,.55) 18%,
            black 52%,
            rgba(0,0,0,.75) 83%,
            transparent 100%
        );
}


/* FRASE LATERAL ----------------------------------------- */

.hero-frase {
    position: absolute;

    z-index: 15;

    right: 170px;
    top: 158px;

    width: 195px;
}

.hero-frase blockquote {
    margin: 0;

    color: #b18f5b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    line-height: 1.18;

    font-style: italic;

    font-weight: 400;
}

.hero-frase > span {
    display: block;

    margin-top: 20px;

    color: #5c5c57;

    font-size: 7px;

    letter-spacing: .29em;
}

.hero-frase > i {
    display: block;

    width: 27px;
    height: 1px;

    margin-top: 18px;

    background: #b49159;
}


/* FORMAS ORGÂNICAS ESQUERDAS --------------------------- */

.hero-organico-left {
    position: absolute;

    z-index: 0;

    left: -45px;
    top: -35px;

    width: 230px;
    height: 600px;

    opacity: .095;

    filter: blur(5px);

    background:
        radial-gradient(
            ellipse 45% 18% at 23% 11%,
            #68705d 0 68%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 36% 15% at 64% 29%,
            #6b725f 0 68%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 48% 17% at 25% 50%,
            #68705d 0 68%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 36% 16% at 66% 72%,
            #6c725e 0 68%,
            transparent 70%
        );
}


/* TABLET ------------------------------------------------- */

@media (max-width: 1050px) {

    .nav {
        gap: 11px;
    }

    .nav a {
        font-size: 7px;
    }

    .hero-frase {
        right: 45px;
    }

}


/* MOBILE ------------------------------------------------- */

@media (max-width: 900px) {

    .header-inner {
        width: calc(100% - 32px);
    }

    .nav {
        position: fixed;

        top: 82px;
        left: 0;
        right: 0;

        display: none;

        padding: 26px;

        background: #f8f5ef;

        flex-direction: column;
        align-items: flex-start;

        box-shadow:
            0 10px 30px
            rgba(0,0,0,.05);
    }

    .menu-open .nav {
        display: flex;
    }

    .nav a {
        font-size: 11px;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        width: calc(100% - 36px);

        min-height: auto;

        padding-top: 115px;
    }

    .hero-copy {
        position: relative;

        left: auto;
        top: auto;

        width: 100%;
    }

    .hero-copy h1,
    .hero-copy h1 em,
    .hero-copy > p {
        width: auto;
    }

    .hero-personagem {
        position: relative;

        left: auto;
        bottom: auto;

        width: min(100%, 520px);
        height: 570px;

        margin:
            35px auto 0;
    }

    .hero-frase,
    .hero-retrato-fantasma {
        display: none;
    }

}


@media (max-width: 560px) {

    .logo {
        width: 135px;
    }

    .btn-sistema {
        display: none;
    }

    .hero-copy h1,
    .hero-copy h1 em {
        font-size: 39px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;

        justify-content: center;
    }

    .hero-personagem {
        height: 485px;
    }

}

/* =====================================================
   AJUSTE HERO - MANUELLA RECORTADA
===================================================== */

.hero {
    overflow: hidden;
}

.hero-imagem {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-foto-fundo {
    position: absolute;
    inset: 0;
    background-image: url("/static/img/manuella-perfil.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.14;
    filter: grayscale(100%);
    z-index: 1;
    pointer-events: none;
}

.hero-foto-principal {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(560px, 100%);
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.hero-foto-principal img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent !important;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
}

.hero-assinatura {
    position: absolute;
    right: 0;
    bottom: 24px;
    z-index: 3;
    max-width: 240px;
}

/* Ajuste mobile */
@media (max-width: 980px) {
    .hero-imagem {
        min-height: auto;
        margin-top: 24px;
    }

    .hero-foto-fundo {
        background-position: center top;
        background-size: cover;
        opacity: 0.10;
    }

    .hero-foto-principal {
        width: min(420px, 92%);
    }

    .hero-assinatura {
        position: static;
        margin-top: 18px;
        max-width: 100%;
    }
}


/* ==========================================================
   HERO FINAL — GABARITO VISUAL APROVADO
   10/09/2026
========================================================== */

.hero {
    position: relative;

    width: 100%;
    height: 620px;
    min-height: 620px;

    overflow: hidden;

    background:
        #f7f3ec;

    isolation: isolate;
}


/* ----------------------------------------------------------
   IMAGEM GERAL EM MARCA D'ÁGUA
   Essa imagem já possui o tratamento bege/cinza
---------------------------------------------------------- */

.hero-retrato-fantasma {
    position: absolute;

    z-index: 0;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        url("/static/img/hero-manuella-watermark.png");

    background-repeat:
        no-repeat;

    background-position:
        center center;

    background-size:
        cover;

    opacity: .46;

    pointer-events: none;
}


/*
    Suavização adicional no centro para permitir
    a leitura do texto e integrar a personagem.
*/

.hero::after {
    content: "";

    position: absolute;

    z-index: 1;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(248,245,239,.93) 0%,
            rgba(248,245,239,.89) 24%,
            rgba(248,245,239,.43) 42%,
            rgba(248,245,239,.10) 58%,
            rgba(248,245,239,.13) 76%,
            rgba(248,245,239,.30) 100%
        );
}


/* ----------------------------------------------------------
   CONTAINER
---------------------------------------------------------- */

.hero-inner {
    position: relative;

    z-index: 5;

    width:
        min(
            calc(100% - 72px),
            1380px
        );

    height: 620px;
    min-height: 620px;

    margin:
        0 auto;

    padding: 0;

    display: block;
}


/* ----------------------------------------------------------
   TEXTO À ESQUERDA
---------------------------------------------------------- */

.hero-copy {
    position: absolute;

    z-index: 20;

    left: 0;
    top: 167px;

    width: 465px;

    padding: 0;
}


.hero-kicker {
    display: flex;
    align-items: center;

    gap: 17px;

    margin:
        0 0
        17px;

    color:
        #3f403d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing:
        .31em;
}


.hero-kicker span {
    display: block;

    width: 91px;
    height: 1px;

    background:
        #b39361;
}


.hero-copy h1 {
    width: 500px;

    margin: 0;

    color:
        #30312f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 43px;

    line-height:
        .99;

    letter-spacing:
        -.034em;

    font-weight:
        400;
}


.hero-copy h1 em {
    display: block;

    margin-top:
        3px;

    color:
        #b49563;

    font-size:
        42px;

    line-height:
        1.01;

    font-weight:
        400;
}


.hero-copy > p {
    width:
        390px;

    margin:
        19px 0 0;

    color:
        #555650;

    font-size:
        10.5px;

    line-height:
        1.5;
}


/* ----------------------------------------------------------
   BOTÕES
---------------------------------------------------------- */

.hero-actions {
    display: flex;

    gap:
        12px;

    margin-top:
        21px;
}


.hero-btn {
    height:
        41px;

    padding:
        0 17px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    border-radius:
        3px;

    text-decoration:
        none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        10px;

    transition:
        transform .20s ease,
        box-shadow .20s ease;
}


.hero-btn svg {
    width:
        14px;

    height:
        14px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.4;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.hero-btn:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(75,55,30,.12);
}


.hero-btn-gold {
    background:
        #b3915a;

    border:
        1px solid #b3915a;

    color:
        #fff;
}


.hero-btn-outline {
    background:
        rgba(255,255,255,.65);

    border:
        1px solid #b3915a;

    color:
        #393a37;
}


/* ----------------------------------------------------------
   MICRO TEXTO
---------------------------------------------------------- */

.hero-tags {
    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    margin-top:
        25px;

    color:
        #74736d;

    font-size:
        6px;

    font-weight:
        600;

    letter-spacing:
        .32em;
}


.hero-tags i {
    width:
        3px;

    height:
        3px;

    border-radius:
        50%;

    background:
        #b39361;
}


/* ----------------------------------------------------------
   MANUELLA EM PRIMEIRO PLANO

   IMPORTANTE:
   NÃO existe fundo, caixa, borda ou máscara retangular.
---------------------------------------------------------- */

.hero-personagem {
    position:
        absolute;

    z-index:
        12;

    left:
        39.5%;

    bottom:
        -1px;

    width:
        720px;

    height:
        auto;

    overflow:
        visible;

    background:
        transparent !important;

    border:
        0 !important;

    box-shadow:
        none !important;
}


.hero-personagem::before,
.hero-personagem::after {
    content:
        none !important;

    display:
        none !important;
}


.hero-personagem img {
    display:
        block;

    width:
        100%;

    height:
        auto;

    max-width:
        none;

    object-fit:
        contain;

    object-position:
        center bottom;

    background:
        transparent !important;

    border:
        0 !important;

    box-shadow:
        none !important;

    filter:
        drop-shadow(
            0 10px 14px
            rgba(50,40,25,.025)
        );
}


/* ----------------------------------------------------------
   FRASE DOURADA
---------------------------------------------------------- */

.hero-frase {
    position:
        absolute;

    z-index:
        25;

    right:
        129px;

    top:
        146px;

    width:
        205px;
}


.hero-frase blockquote {
    margin:
        0;

    color:
        #ad8c59;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        21px;

    line-height:
        1.17;

    font-style:
        italic;

    font-weight:
        400;
}


.hero-frase > span {
    display:
        block;

    margin-top:
        20px;

    color:
        #595a56;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        7px;

    letter-spacing:
        .30em;
}


.hero-frase > i {
    display:
        block;

    width:
        28px;

    height:
        1px;

    margin-top:
        18px;

    background:
        #b39361;
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1200px) {

    .hero-personagem {
        left:
            40%;

        width:
            650px;
    }

    .hero-frase {
        right:
            40px;
    }

}


@media (max-width: 930px) {

    .hero {
        height:
            auto;

        min-height:
            auto;
    }


    .hero-inner {
        width:
            calc(100% - 36px);

        height:
            auto;

        min-height:
            auto;

        padding-top:
            115px;
    }


    .hero-copy {
        position:
            relative;

        left:
            auto;

        top:
            auto;

        width:
            100%;
    }


    .hero-copy h1,
    .hero-copy h1 em,
    .hero-copy > p {
        width:
            auto;
    }


    .hero-personagem {
        position:
            relative;

        left:
            auto;

        bottom:
            auto;

        width:
            min(700px, 115%);

        margin:
            20px auto 0;

        transform:
            translateX(-4%);
    }


    .hero-frase {
        display:
            none;
    }


    .hero-retrato-fantasma {
        background-position:
            68% center;

        opacity:
            .28;
    }

}


@media (max-width: 560px) {

    .hero-copy h1,
    .hero-copy h1 em {
        font-size:
            39px;
    }


    .hero-actions {
        flex-direction:
            column;
    }


    .hero-btn {
        width:
            100%;
    }


    .hero-personagem {
        width:
            135%;

        margin-left:
            -15%;
    }

}

/* =====================================================
   AJUSTE FINO - HERO / MENU / ASSINATURA
===================================================== */
@media (min-width: 1024px) {

    /* diminui um pouco a altura da primeira dobra */
    .hero {
        padding-top: 24px !important;
        padding-bottom: 18px !important;
        min-height: auto !important;
    }

    .hero-container {
        min-height: 620px !important;
        align-items: center !important;
    }

    /* aumenta um pouco o texto do menu */
    .menu a {
        font-size: 13px !important;
        letter-spacing: 0.02em !important;
    }

    /* aumenta o nome abaixo da frase à direita */
    .hero-assinatura strong {
        font-size: 13px !important;
        letter-spacing: 0.22em !important;
    }

    /* aumenta Estratégia | Segurança | Resultados */
    .hero-valores span {
        font-size: 11px !important;
        letter-spacing: 0.24em !important;
    }
}

/* =====================================================
   AJUSTE FINO - HERO / MENU / ASSINATURA
===================================================== */
@media (min-width: 1024px) {

    /* diminui um pouco a altura da primeira dobra */
    .hero {
        padding-top: 24px !important;
        padding-bottom: 18px !important;
        min-height: auto !important;
    }

    .hero-container {
        min-height: 620px !important;
        align-items: center !important;
    }

    /* aumenta um pouco o texto do menu */
    .menu a {
        font-size: 13px !important;
        letter-spacing: 0.02em !important;
    }

    /* aumenta o nome abaixo da frase à direita */
    .hero-assinatura strong {
        font-size: 13px !important;
        letter-spacing: 0.22em !important;
    }

    /* aumenta Estratégia | Segurança | Resultados */
    .hero-valores span {
        font-size: 11px !important;
        letter-spacing: 0.24em !important;
    }
}

/* ==========================================================
   AJUSTE FINO CORRETO DO HERO
========================================================== */

@media (min-width: 1024px) {

    /* 1. PRIMEIRA PARTE UM POUCO MENOR */
    .hero {
        height: 580px !important;
        min-height: 580px !important;
    }

    .hero-inner {
        height: 580px !important;
        min-height: 580px !important;
    }

    /* acompanha a redução sem deformar a composição */
    .hero-copy {
        top: 150px !important;
    }

    .hero-personagem {
        width: 675px !important;
        bottom: -1px !important;
    }

    .hero-frase {
        top: 132px !important;
    }


    /* 2. MENU SUPERIOR MAIOR */
    .nav a {
        font-size: 10px !important;
    }


    /* 3. MANUELLA CARVALHO ABAIXO DA FRASE MAIOR */
    .hero-frase > span {
        font-size: 9px !important;
        letter-spacing: .27em !important;
    }


    /* 4. ESTRATÉGIA • SEGURANÇA • RESULTADOS MAIORES */
    .hero-tags {
        font-size: 8px !important;
        letter-spacing: .27em !important;
    }
}

/* =====================================================
   MENU SUPERIOR - AJUSTE DE LEGIBILIDADE
===================================================== */

@media (min-width: 1024px) {

    .nav a {
        font-size: 12px !important;
        line-height: 1.2 !important;
        letter-spacing: 0 !important;
    }

}
