/* =========================================================
   DUANY SCHENKEL | DIREITO DIGITAL
   ========================================================= */

:root {
    --deep: #3F2E2E;
    --cream: #F3EEE8;
    --neutral: #D8CFC6;
    --terracotta: #9C5A3C;
    --soft-terracotta: #C48A76;
    --white: #FFFFFF;

    --max-width: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--deep);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


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

.header {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;

    padding: 24px 32px;

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

    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-avatar {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    overflow: hidden;

    flex-shrink: 0;
}

.brand-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-text strong {
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.brand-text span {
    font-size: 9px;
    letter-spacing: 0.13em;
    opacity: 0.7;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 12px;
    letter-spacing: 0.05em;

    transition: opacity 0.2s ease;
}

.nav a:hover {
    opacity: 0.55;
}


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

.hero {
    min-height: 72vh;

    max-width: var(--max-width);
    margin: 0 auto;

    padding: 100px 32px 105px;

    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin-bottom: 22px;

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

    letter-spacing: 0.18em;

    color: var(--terracotta);
}

.hero h1 {
    margin-bottom: 28px;

    font-size: clamp(52px, 7vw, 88px);

    line-height: 0.98;
    letter-spacing: -0.055em;

    font-weight: 500;
}

.hero h1 em {
    color: var(--terracotta);
    font-style: normal;
}

.hero-text {
    max-width: 550px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(63, 46, 46, 0.75);
}


/* =========================================================
   SERVICES / ATUAÇÃO
   ========================================================= */

.services {
    background: var(--deep);
    color: var(--cream);

    padding: 70px 32px 85px;
}

.section-intro {
    max-width: var(--max-width);
    margin: 0 auto 50px;
}

.section-intro .eyebrow {
    color: var(--soft-terracotta);
}

.section-intro h2 {
    max-width: 700px;

    font-size: clamp(36px, 4.7vw, 60px);

    line-height: 1.05;
    letter-spacing: -0.04em;

    font-weight: 500;
}


/* =========================================================
   LISTA DE SERVIÇOS
   ========================================================= */

.service-list {
    max-width: var(--max-width);
    margin: 0 auto;

    border-top: 1px solid rgba(243, 238, 232, 0.2);
}

.service-card {
    display: grid;

    grid-template-columns: 55px minmax(0, 1fr) 50px;

    align-items: center;

    gap: 25px;

    padding: 32px 10px;

    border-bottom: 1px solid rgba(243, 238, 232, 0.2);

    transition:
        background 0.25s ease,
        padding 0.25s ease;
}

.service-card:hover {
    background: rgba(243, 238, 232, 0.035);
}

.service-number {
    font-size: 12px;

    color: var(--soft-terracotta);

    letter-spacing: 0.08em;
}

.service-content h3 {
    max-width: 650px;

    font-size: clamp(23px, 2.8vw, 36px);

    line-height: 1.15;
    letter-spacing: -0.025em;

    font-weight: 500;

    margin-bottom: 10px;
}

.service-content p {
    max-width: 620px;

    color: rgba(243, 238, 232, 0.65);

    font-size: 15px;
}


/* =========================================================
   SETA DOS CARDS
   ========================================================= */

.arrow {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(243, 238, 232, 0.3);
    border-radius: 50%;

    position: relative;

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

    font-size: 0;
    line-height: 0;

    color: var(--cream);

    text-indent: -9999px;
    overflow: hidden;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.arrow::before {
    content: "";

    width: 10px;
    height: 10px;

    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;

    position: absolute;

    top: 11px;
    right: 10px;
}

.arrow::after {
    content: "";

    width: 17px;
    height: 1.5px;

    background: currentColor;

    position: absolute;

    transform: rotate(-45deg);

    top: 20px;
    left: 11px;
}

.service-card:hover .arrow {
    background: var(--cream);
    color: var(--deep);
    border-color: var(--cream);
}


/* =========================================================
   TRIAGEM
   ========================================================= */

.unsure {
    max-width: var(--max-width);
    margin: 42px auto 0;

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

    gap: 30px;

    padding: 20px 0;
}

.unsure p {
    color: rgba(243, 238, 232, 0.6);
    font-size: 14px;
}

.text-link {
    color: var(--cream);

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

    border-bottom: 1px solid var(--soft-terracotta);

    padding-bottom: 3px;

    transition: color 0.2s ease;
}

.text-link:hover {
    color: var(--soft-terracotta);
}


/* =========================================================
   SOBRE
   ========================================================= */

.about {
    max-width: var(--max-width);
    margin: 0 auto;

    padding: 110px 32px;

    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: 80px;
}

.about-label {
    padding-top: 5px;
}

.about-content {
    max-width: 760px;
}

.about-photo {
    width: 175px;
    height: 215px;

    margin-bottom: 38px;

    overflow: hidden;
}

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

    object-fit: cover;
    object-position: center;

    image-rendering: auto;
}

.about-text {
    max-width: 680px;
}

.about-content h2 {
    max-width: 760px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;
    letter-spacing: -0.045em;

    font-weight: 500;

    margin-bottom: 38px;
}

.about-text p {
    max-width: 680px;

    margin-bottom: 22px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(63, 46, 46, 0.75);
}

.about-link {
    display: inline-block;

    margin-top: 10px;

    color: var(--terracotta);

    border-bottom-color: var(--terracotta);
}

.about-link:hover {
    color: var(--deep);
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.content-section {
    background: var(--neutral);
    color: var(--deep);

    width: 100%;

    padding-top: 110px;
    padding-bottom: 110px;

    padding-left: max(32px, calc((100% - var(--max-width)) / 2 + 32px));
    padding-right: max(32px, calc((100% - var(--max-width)) / 2 + 32px));

    display: grid;

    grid-template-columns: 0.35fr 1fr;

    column-gap: 80px;
    row-gap: 0;
}


/* =========================================================
   CONTEÚDO | LABEL
   ========================================================= */

.content-section > .eyebrow {
    grid-column: 1;
    grid-row: 1;

    margin: 5px 0 0;

    align-self: start;
}


/* =========================================================
   CONTEÚDO | ELEMENTOS PRINCIPAIS
   ========================================================= */

.content-section > h2,
.content-section > p:not(.eyebrow),
.content-section > .social-links {
    grid-column: 2;

    width: 100%;
    max-width: 760px;

    margin-left: 0;
    margin-right: 0;
}


/* =========================================================
   CONTEÚDO | TÍTULO
   ========================================================= */

.content-section > h2 {
    grid-row: 1;

    margin: 0 0 38px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;
    letter-spacing: -0.045em;

    font-weight: 500;
}


/* =========================================================
   CONTEÚDO | TEXTO
   ========================================================= */

.content-section > p:not(.eyebrow) {
    margin: 0 0 22px;

    max-width: 680px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(63, 46, 46, 0.75);
}


/* =========================================================
   CONTEÚDO | REDES
   ========================================================= */

.content-section > .social-links {
    margin-top: 13px;
}


/* =========================================================
   REDES SOCIAIS
   ========================================================= */

.social-links {
    display: flex;

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

    flex-wrap: wrap;

    gap: 12px;

    width: 100%;
}

.social-link {
    display: inline-flex;

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

    gap: 9px;

    min-height: 46px;

    padding: 0 20px;

    background: var(--white);
    color: var(--deep);

    border: none;
    border-radius: 0;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.05em;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.social-link:hover {
    background: var(--deep);
    color: var(--white);

    transform: translateY(-2px);
}

.social-icon {
    width: 17px;
    height: 17px;

    display: inline-flex;

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

    flex-shrink: 0;

    color: currentColor;
}

.social-icon img,
.social-icon svg {
    width: 17px;
    height: 17px;

    display: block;

    object-fit: contain;

    color: currentColor;
    fill: currentColor;
    stroke: currentColor;

    filter: none;
}

.social-icon-play {
    fill: var(--white);
    stroke: none;
}

.social-link:hover .social-icon-play {
    fill: var(--deep);
}


/* =========================================================
   BOTÕES
   ========================================================= */

.button {
    display: inline-flex;

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

    min-height: 50px;

    padding: 0 28px;

    background: var(--terracotta);
    color: var(--cream);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--deep);

    transform: translateY(-2px);
}

.button-light {
    background: var(--cream);
    color: var(--deep);
}

.button-light:hover {
    background: var(--deep);
    color: var(--cream);
}


/* =========================================================
   CONTATO
   ========================================================= */

.contact {
    background: var(--terracotta);
    color: var(--cream);

    padding: 130px 32px;

    text-align: center;
}

.contact .eyebrow {
    color: var(--cream);
    opacity: 0.7;
}

.contact h2 {
    max-width: 750px;

    margin: 0 auto 25px;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1;
    letter-spacing: -0.045em;

    font-weight: 500;
}

.contact p:not(.eyebrow) {
    max-width: 580px;

    margin: 0 auto 40px;

    color: rgba(243, 238, 232, 0.85);

    font-size: 17px;
}


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

.footer {
    background: var(--deep);
    color: var(--cream);

    width: 100%;

    padding: 50px max(32px, calc((100% - var(--max-width)) / 2));

    display: grid;

    grid-template-columns: 1.4fr 1fr auto;
    grid-template-rows: auto auto;

    column-gap: 70px;
    row-gap: 35px;

    align-items: start;
}

.footer-brand {
    grid-column: 1;
    grid-row: 1;
}

.footer-contacts {
    grid-column: 2;
    grid-row: 1;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.footer-social {
    grid-column: 3;
    grid-row: 1;

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

    gap: 12px;
}

.footer strong {
    font-size: 12px;
    letter-spacing: 0.1em;
}

.footer p {
    margin-top: 5px;

    font-size: 11px;

    color: rgba(243, 238, 232, 0.5);
}

.footer-contacts a {
    font-size: 12px;

    color: rgba(243, 238, 232, 0.75);

    transition: color 0.2s ease;
}

.footer-contacts a:hover {
    color: var(--cream);
}


/* =========================================================
   ÍCONES DO RODAPÉ
   ========================================================= */

.footer-social a {
    width: 22px;
    height: 22px;

    display: flex;

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

    border: none;

    color: var(--cream);

    font-size: 0;

    background: transparent;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.footer-social a:hover {
    background: transparent;
    color: var(--cream);

    opacity: 0.65;

    transform: translateY(-1px);
}

.footer-icon {
    width: 14px;
    height: 14px;

    display: block;

    object-fit: contain;

    filter: brightness(0) invert(1);
}

.footer-social img {
    width: 14px;
    height: 14px;

    display: block;

    object-fit: contain;

    filter: brightness(0) invert(1);
}


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

.footer-bottom {
    grid-column: 1 / -1;
    grid-row: 2;

    padding-top: 20px;

    border-top: 1px solid rgba(243, 238, 232, 0.12);

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

    gap: 30px;
}

.footer-bottom p {
    margin-top: 0;
}


/* =========================================================
   LINKS JURÍDICOS
   ========================================================= */

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

    gap: 22px;

    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 11px;

    color: rgba(243, 238, 232, 0.55);

    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--cream);
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 1244px) and (min-width: 801px) {

    .content-section {
        padding-left: 32px;
        padding-right: 32px;
    }
}


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

@media (max-width: 800px) {

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

    .header {
        padding: 20px;
    }

    .nav {
        display: none;
    }


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

    .hero {
        min-height: auto;

        padding: 48px 20px 58px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 72px);

        margin-bottom: 24px;
    }

    .hero-text {
        font-size: 16px;
    }


    /* =====================================================
       ATUAÇÃO
    ====================================================== */

    .services {
        padding: 60px 20px 70px;
    }

    .section-intro {
        margin-bottom: 40px;
    }

    .section-intro h2 {
        font-size: 40px;
    }


    /* =====================================================
       CARDS
    ====================================================== */

    .service-card {
        grid-template-columns: 38px minmax(0, 1fr) 38px;

        gap: 12px;

        padding: 27px 0;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 14px;
    }


    /* =====================================================
       SETA
    ====================================================== */

    .arrow {
        width: 40px;
        height: 40px;

        font-size: 0;
    }

    .arrow::before {
        width: 9px;
        height: 9px;

        top: 10px;
        right: 10px;
    }

    .arrow::after {
        width: 16px;

        top: 19px;
        left: 10px;
    }


    /* =====================================================
       TRIAGEM
    ====================================================== */

    .unsure {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 38px;
    }


    /* =====================================================
       SOBRE
    ====================================================== */

    .about {
        padding: 80px 20px;

        display: block;
    }

    .about-label {
        margin-bottom: 38px;
    }

    .about-photo {
        width: 150px;
        height: 185px;

        margin-bottom: 32px;
    }

    .about-content h2 {
        font-size: 40px;

        margin-bottom: 32px;
    }

    .about-text p {
        font-size: 16px;
    }


    /* =====================================================
       CONTEÚDO
    ====================================================== */

    .content-section {
        padding: 80px 20px 88px;

        display: block;
    }

    .content-section > .eyebrow,
    .content-section > h2,
    .content-section > p:not(.eyebrow),
    .content-section > .social-links {
        width: 100%;
        max-width: 760px;

        margin-left: 0;
        margin-right: 0;
    }

    .content-section > .eyebrow {
        margin-bottom: 38px;
    }

    .content-section h2 {
        font-size: 40px;

        margin-bottom: 32px;
    }

    .content-section > p:not(.eyebrow) {
        max-width: 680px;

        font-size: 16px;

        margin-bottom: 22px;
    }

    .content-section > .social-links {
        margin-top: 32px;
    }


    /* =====================================================
       REDES
    ====================================================== */

    .social-links {
        justify-content: center;

        flex-wrap: wrap;

        gap: 10px;
    }

    .social-link {
        min-height: 44px;

        padding: 0 16px;

        background: var(--white);
        color: var(--deep);
    }

    .social-link:hover {
        background: var(--deep);
        color: var(--white);
    }


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

    .footer {
        padding: 40px 20px 25px;

        display: grid;

        grid-template-columns: 1fr auto;

        grid-template-rows: auto auto auto;

        column-gap: 25px;
        row-gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .footer-contacts {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-social {
        grid-column: 2;
        grid-row: 2;

        justify-self: end;
    }

    .footer-bottom {
        grid-column: 1 / -1;
        grid-row: 3;

        padding-top: 18px;

        display: flex;
        flex-direction: column;

        align-items: flex-start;
        justify-content: flex-start;

        gap: 12px;
    }

    .footer-legal {
        gap: 16px;
    }
}


/* =========================================================
   TELAS MUITO PEQUENAS
   ========================================================= */

@media (max-width: 420px) {

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

    .brand-avatar {
        width: 46px;
        height: 46px;
    }

    .brand-text strong {
        font-size: 11px;
    }

    .brand-text span {
        font-size: 7px;
    }


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

    .hero {
        padding-top: 32px;
        padding-bottom: 42px;
    }

    .hero h1 {
        font-size: 49px;
    }


    /* =====================================================
       CARDS
    ====================================================== */

    .service-card {
        grid-template-columns: 28px minmax(0, 1fr) 32px;

        gap: 9px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-content p {
        font-size: 13px;
    }


    /* =====================================================
       SETA
    ====================================================== */

    .arrow {
        width: 34px;
        height: 34px;
    }

    .arrow::before {
        width: 8px;
        height: 8px;

        top: 8px;
        right: 8px;
    }

    .arrow::after {
        width: 13px;

        top: 16px;
        left: 9px;
    }


    /* =====================================================
       SOBRE
    ====================================================== */

    .about-photo {
        width: 135px;
        height: 170px;
    }


    /* =====================================================
       REDES
    ====================================================== */

    .social-link {
        min-height: 42px;

        padding: 0 13px;

        font-size: 11px;
    }


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

    .footer {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .footer-brand,
    .footer-contacts,
    .footer-social,
    .footer-bottom {
        grid-column: 1;
    }

    .footer-brand {
        grid-row: 1;
    }

    .footer-contacts {
        grid-row: 2;
    }

    .footer-social {
        grid-row: 3;

        justify-self: start;
    }

    .footer-bottom {
        grid-row: 4;

        gap: 14px;
    }

    .footer-legal {
        gap: 12px 18px;
    }

    .footer-social a {
        width: 20px;
        height: 20px;
    }

    .footer-icon {
        width: 13px;
        height: 13px;
    }
}


/* =========================================================
   PÁGINA ALVARÁ | VERSÃO CLARA
   ========================================================= */

.alvara-services {
    background: #F3EEE8;
    color: #3F2E2E;
}

.alvara-services .section-intro {
    color: #3F2E2E;
}

.alvara-services .section-intro .eyebrow {
    color: #9C5A3C;
}

.alvara-services .section-intro h2 {
    color: #3F2E2E;
}


/* =========================================================
   ALVARÁ | CARDS
   ========================================================= */

.alvara-services .service-card {
    background: #F3EEE8;
    color: #3F2E2E;
    border-color: #D8CFC6;
}

.alvara-services .service-number {
    color: #9C5A3C;
}

.alvara-services .service-content h3 {
    color: #3F2E2E;
}

.alvara-services .service-content p {
    color: #3F2E2E;
}

.alvara-services .arrow {
    color: #9C5A3C;
}


/* =========================================================
   ALVARÁ | CTA
   ========================================================= */

.alvara-services .unsure {
    color: #3F2E2E;
}

.alvara-services .unsure p {
    color: #3F2E2E;
}

.alvara-services .text-link {
    color: #9C5A3C;
}


/* =========================================================
   ALVARÁ | AJUSTES FINAIS
   ========================================================= */

.alvara-services .service-card:first-child {
    border-top-color: #D8CFC6;
}

.alvara-services .arrow {
    color: #3F2E2E;
    border-color: #3F2E2E;
}


/* =========================================================
   ALVARÁ | HOVER DOS CARDS
   ========================================================= */

.alvara-services .service-card {
    transition: background-color 0.25s ease;
}

.alvara-services .service-card:hover {
    background: #E8DED6;
    color: #3F2E2E;
}

.alvara-services .service-card:hover .service-content h3,
.alvara-services .service-card:hover .service-content p {
    color: #3F2E2E;
}

.alvara-services .service-card:hover .service-number {
    color: #9C5A3C;
}

.alvara-services .service-card:hover .arrow {
    color: #F3EEE8 !important;
    background: #3F2E2E;
    border-color: #3F2E2E !important;
}


/* =========================================================
   ALVARÁ | LINK "FALE COMIGO"
   ========================================================= */

.alvara-services .text-link {
    color: #3F2E2E;
    border-bottom: 1px solid #9C5A3C;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.alvara-services .text-link:hover {
    color: #9C5A3C;
    border-bottom-color: #9C5A3C;
}


/* =========================================================
   TRAJETÓRIA | SEÇÕES INTERNAS
   ========================================================= */

.trajectory-section {
    background: var(--neutral);
    color: var(--deep);

    width: 100%;

    padding-top: 110px;
    padding-bottom: 110px;

    padding-left: max(32px, calc((100% - var(--max-width)) / 2 + 32px));
    padding-right: max(32px, calc((100% - var(--max-width)) / 2 + 32px));

    display: grid;

    grid-template-columns: 0.35fr 1fr;

    column-gap: 80px;
    row-gap: 0;
}


/* =========================================================
   TRAJETÓRIA | LABEL
   ========================================================= */

.trajectory-section > .eyebrow {
    grid-column: 1;
    grid-row: 1;

    margin: 5px 0 0;

    align-self: start;
}


/* =========================================================
   TRAJETÓRIA | CONTEÚDO
   ========================================================= */

.trajectory-section > h2,
.trajectory-section > p:not(.eyebrow) {
    grid-column: 2;

    width: 100%;
    max-width: 680px;
}


/* =========================================================
   TRAJETÓRIA | TÍTULO
   ========================================================= */

.trajectory-section > h2 {
    grid-row: 1;

    margin: 0 0 38px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;
    letter-spacing: -0.045em;

    font-weight: 500;
}


/* =========================================================
   TRAJETÓRIA | TEXTO
   ========================================================= */

.trajectory-section > p:not(.eyebrow) {
    margin: 0 0 22px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(63, 46, 46, 0.75);
}


/* =========================================================
   TRAJETÓRIA | CTA FINAL
   ========================================================= */

.trajectory-section .button {
    grid-column: 2;

    justify-self: center;

    margin-top: 18px;
}


/* =========================================================
   TRAJETÓRIA | MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .trajectory-section {
        padding: 80px 20px;

        display: block;
    }

    .trajectory-section > .eyebrow {
        margin-bottom: 38px;
    }

    .trajectory-section > h2 {
        font-size: 40px;

        margin-bottom: 32px;
    }

    .trajectory-section > p:not(.eyebrow) {
        font-size: 16px;

        margin-bottom: 22px;
    }

    .trajectory-section .button {
        display: flex;
        width: fit-content;

        margin: 18px auto 0;
    }
}

/* =========================================================
   PÁGINAS JURÍDICAS | POLÍTICA DE PRIVACIDADE E TERMOS
   ========================================================= */

.legal-page {
    width: 100%;
    background: var(--cream);
    color: var(--deep);
}


/* =========================================================
   HERO DA PÁGINA
   ========================================================= */

.legal-hero {
    max-width: var(--max-width);
    margin: 0 auto;

    padding: 95px 32px 75px;
}

.legal-hero .eyebrow {
    margin-bottom: 22px;
}

.legal-hero h1 {
    max-width: 850px;

    margin-bottom: 28px;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1;
    letter-spacing: -0.05em;

    font-weight: 500;
}

.legal-intro {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(63, 46, 46, 0.7);
}


/* =========================================================
   CONTEÚDO JURÍDICO
   ========================================================= */

.legal-content {
    max-width: var(--max-width);
    margin: 0 auto;

    padding: 0 32px 110px;
}

.legal-block {
    max-width: 760px;

    padding: 42px 0;

    border-top: 1px solid var(--neutral);
}

.legal-block h2 {
    margin-bottom: 20px;

    font-size: 24px;

    line-height: 1.2;
    letter-spacing: -0.02em;

    font-weight: 600;
}

.legal-block p {
    max-width: 700px;

    margin-bottom: 18px;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(63, 46, 46, 0.75);
}

.legal-block p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DATA
   ========================================================= */

.legal-date {
    max-width: 760px;

    padding-top: 28px;

    border-top: 1px solid var(--neutral);
}

.legal-date p {
    margin: 0;

    font-size: 12px;

    letter-spacing: 0.04em;

    color: rgba(63, 46, 46, 0.5);
}


/* =========================================================
   LINKS DENTRO DO TEXTO JURÍDICO
   ========================================================= */

.legal-content a {
    color: var(--terracotta);

    border-bottom: 1px solid var(--terracotta);
}


/* =========================================================
   FOOTER – LINKS JURÍDICOS
   ========================================================= */

.footer-contacts a {
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.footer-contacts a:hover {
    color: var(--cream);
    opacity: 0.7;
}


/* =========================================================
   PÁGINAS JURÍDICAS | MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .legal-hero {
        padding: 70px 20px 55px;
    }

    .legal-hero .eyebrow {
        margin-bottom: 32px;
    }

    .legal-hero h1 {
        font-size: 42px;

        margin-bottom: 24px;
    }

    .legal-intro {
        font-size: 16px;
    }

    .legal-content {
        padding: 0 20px 80px;
    }

    .legal-block {
        padding: 34px 0;
    }

    .legal-block h2 {
        font-size: 21px;

        margin-bottom: 17px;
    }

    .legal-block p {
        font-size: 15px;
        line-height: 1.75;

        margin-bottom: 17px;
    }

    .legal-date {
        padding-top: 22px;
    }
}


/* =========================================================
   PÁGINAS JURÍDICAS | TELAS MUITO PEQUENAS
   ========================================================= */

@media (max-width: 420px) {

    .legal-hero {
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .legal-hero h1 {
        font-size: 38px;
    }

    .legal-block h2 {
        font-size: 20px;
    }

    .legal-block p {
        font-size: 14px;
    }
}

/* =========================================================
   FOOTER | LINKS LEGAIS
   ========================================================= */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 12px;
}

.footer-legal a {
    font-size: 11px;

    color: rgba(243, 238, 232, 0.55);

    border-bottom: 1px solid transparent;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--cream);

    border-bottom-color: var(--soft-terracotta);
}


/* =========================================================
   FOOTER | LINKS LEGAIS | MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .footer-legal {
        flex-wrap: wrap;

        gap: 8px 18px;

        margin-top: 10px;
    }
}
