/* ==========================================================================
   FONTES OFICIAIS PLANCUS CARE
   ========================================================================== */

@font-face {
    font-family: "Elms Sans";
    src: url("../fonts/ElmsSans-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Elms Sans";
    src: url("../fonts/ElmsSans-Italic-VariableFont_wght.ttf") format("truetype");
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Poiret One";
    src: url("../fonts/PoiretOne-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

/* ==========================================================================
   IDENTIDADE
   ========================================================================== */

:root {
    --primary: #284241;
    --primary-2: #2f7571;
    --accent: #8f93ff;
    --surface: #fbfffe;
    --highlight: #d0ff71;
    --text: #284241;
    --muted: rgba(40,66,65,.72);
    --line: rgba(47,117,113,.18);
    --soft: rgba(47,117,113,.055);
    --white: #fbfffe;
    --shadow: 0 16px 40px rgba(40,66,65,.12);
    --shadow-soft: 0 10px 28px rgba(40,66,65,.08);
    --radius: 22px;
    --font-primary: "Elms Sans", Arial, sans-serif;
    --font-brand: "Poiret One", "Elms Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.55;
    background: var(--surface);
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 48px 0;
}

.section-kicker {
    display: block;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    font-weight: 700;
}

.section-kicker-center {
    text-align: center;
    margin-bottom: 8px;
}

.section-title {
    margin: 0 0 30px;
    font-family: var(--font-brand);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -.01em;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251,255,254,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(47,117,113,.12);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .brand {
    width: 190px;
    height: 86px;
    flex: 0 0 190px;
}

.logo-header {
    width: 180px;
    max-width: 180px;
    max-height: 64px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 580;
}

    .main-nav a {
        padding: 30px 0 24px;
        border-bottom: 2px solid transparent;
        color: var(--text);
    }

        .main-nav a:hover {
            color: var(--primary-2);
        }

        .main-nav a.active {
            border-color: var(--primary-2);
        }

.header-cta {
    margin-left: 12px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px 0;
        background: var(--primary);
    }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 620;
    transition: .2s ease;
}

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

.btn-primary {
    color: #fbfffe;
    background: linear-gradient(135deg, #284241 0%, #2f7571 100%);
    box-shadow: 0 10px 24px rgba(40,66,65,.18);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #2f7571 0%, #284241 100%);
    }

.btn-outline {
    color: var(--text);
    border-color: rgba(47,117,113,.34);
    background: #fbfffe;
}

    .btn-outline:hover {
        color: var(--primary-2);
        border-color: var(--primary-2);
        background: rgba(47,117,113,.045);
    }

.btn-light {
    color: var(--primary);
    background: #fbfffe;
}

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

.hero {
    padding: 20px 0 30px;
    background: linear-gradient(180deg, #fbfffe 0%, rgba(143,147,255,.035) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
    color: var(--primary-2);
    font-size: 12px;
    font-weight: 500;
}

    .breadcrumb span {
        color: rgba(40,66,65,.42);
    }

    .breadcrumb strong {
        font-weight: 650;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;
    min-height: 410px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 12px 18px 20px 14px;
}

.eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-brand);
    color: var(--text);
    font-size: 64px;
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.015em;
}

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

.title-line {
    width: 34px;
    height: 3px;
    margin: 16px 0;
    background: var(--accent);
}

.hero h2 {
    max-width: 440px;
    margin: 0 0 16px;
    color: var(--primary-2);
    font-size: 20px;
    font-weight: 620;
    line-height: 1.45;
    letter-spacing: -.018em;
}

.hero p {
    max-width: 455px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-visual {
    position: relative;
    height: 410px;
    overflow: hidden;
    border-radius: 0 0 0 90px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,255,254,.78) 0%, rgba(251,255,254,.20) 20%, transparent 40%);
    pointer-events: none;
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 16px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(251,255,254,.92);
    box-shadow: var(--shadow-soft);
}

    .benefit-strip article {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        min-height: 56px;
        padding: 0 18px;
    }

        .benefit-strip article:not(:last-child) {
            border-right: 1px solid var(--line);
        }

    .benefit-strip strong {
        font-size: 12px;
        line-height: 1.45;
    }

.line-icon {
    color: var(--primary-2);
    font-size: 34px;
    line-height: 1;
}

/* ==========================================================================
   CAPACIDADES
   ========================================================================== */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

    .capability-grid article {
        position: relative;
        padding: 0 20px;
        text-align: center;
    }

        .capability-grid article:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 18px;
            right: 0;
            bottom: 0;
            width: 1px;
            background: var(--line);
        }

.round-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: var(--primary-2);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(47,117,113,.04), #fbfffe);
    font-size: 36px;
}

.capability-grid h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.capability-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

/* ==========================================================================
   PARA QUEM É
   ========================================================================== */

.audience {
    padding-top: 14px;
}

.audience-panel {
    display: grid;
    grid-template-columns: 35% 42% 23%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfffe;
    box-shadow: var(--shadow-soft);
}

.audience-photo {
    min-height: 330px;
}

    .audience-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.audience-copy {
    padding: 34px 38px;
}

    .audience-copy h2 {
        margin: 8px 0 14px;
        font-family: var(--font-brand);
        font-size: 36px;
        font-weight: 400;
        line-height: 1.12;
    }

    .audience-copy > p {
        margin: 0 0 20px;
        color: var(--muted);
        font-size: 13px;
    }

.check-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .check-list li {
        position: relative;
        padding-left: 30px;
        font-size: 12px;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            display: grid;
            place-items: center;
            color: var(--primary-2);
            border: 1px solid var(--primary-2);
            border-radius: 50%;
            font-size: 11px;
            font-weight: 900;
        }

.audience-aside {
    margin: 22px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(47,117,113,.05), rgba(143,147,255,.035));
}

    .audience-aside > strong {
        display: block;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .audience-aside ul {
        display: grid;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .audience-aside li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
    }

        .audience-aside li span {
            width: 23px;
            color: var(--accent);
            font-size: 21px;
            text-align: center;
        }

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */

.how {
    padding-top: 26px;
}

.how-panel {
    padding: 34px 26px 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfffe;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

    .steps-grid article {
        position: relative;
        padding: 0 18px;
        text-align: center;
    }

        .steps-grid article:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 17px;
            left: calc(50% + 32px);
            width: calc(100% - 64px);
            border-top: 2px dotted rgba(47,117,113,.70);
        }

.step-number {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    color: #fbfffe;
    border-radius: 50%;
    background: var(--primary-2);
    font-size: 13px;
    font-weight: 800;
}

.step-icon {
    color: var(--primary-2);
    font-size: 37px;
    line-height: 1;
}

.steps-grid h3 {
    margin: 11px 0 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 650;
}

.steps-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-band {
    padding: 0 0 4px;
}

.cta-inner {
    min-height: 176px;
    display: grid;
    grid-template-columns: 43% 25% 32%;
    align-items: center;
    overflow: hidden;
    color: #fbfffe;
    border-radius: 18px;
    background: radial-gradient(circle at 67% 0%, rgba(143,147,255,.26), transparent 34%), linear-gradient(135deg, #284241 0%, #2f7571 100%);
}

.cta-copy {
    padding: 28px 0 28px 38px;
}

    .cta-copy h2 {
        margin: 0 0 10px;
        color: #fbfffe;
        font-family: var(--font-brand);
        font-size: 31px;
        font-weight: 400;
        line-height: 1.15;
    }

    .cta-copy p {
        max-width: 360px;
        margin: 0;
        color: rgba(251,255,254,.78);
        font-size: 12px;
    }

.cta-phone {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

    .cta-phone img {
        max-height: 180px;
        object-fit: contain;
    }

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-right: 28px;
}

.text-link {
    color: #fbfffe;
    font-size: 13px;
    font-weight: 650;
}

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

.site-footer {
    color: #fbfffe;
    padding: 34px 0 16px;
    background: radial-gradient(circle at 85% 0%, rgba(143,147,255,.12), transparent 30%), linear-gradient(135deg, #284241 0%, #1f3635 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 28px;
}

.brand-footer {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(143,147,255,.16);
    border-radius: 10px;
    background: #fbfffe;
}

.logo-footer {
    display: block;
    width: 160px;
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    max-width: 225px;
    color: rgba(251,255,254,.72);
    font-size: 11px;
    line-height: 1.7;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

    .socials a {
        width: 27px;
        height: 27px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(251,255,254,.20);
        border-radius: 5px;
        font-size: 12px;
    }

.site-footer h3 {
    margin: 0 0 12px;
    color: #d0ff71;
    font-size: 13px;
    font-weight: 650;
}

.site-footer .footer-grid > div > a {
    display: block;
    margin: 8px 0;
    color: rgba(251,255,254,.82);
    font-size: 11px;
}

    .site-footer .footer-grid > div > a:hover {
        color: #d0ff71;
    }

.lgpd-badge {
    margin-top: 24px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(208,255,113,.28);
    border-radius: 10px;
    background: rgba(208,255,113,.05);
    font-size: 11px;
}

.footer-bottom {
    margin-top: 26px;
    color: rgba(251,255,254,.72);
    text-align: center;
    font-size: 11px;
}

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

@media (max-width: 1060px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav.is-open {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px 28px;
        background: #fbfffe;
        box-shadow: var(--shadow);
    }

        .main-nav.is-open a {
            padding: 14px 0;
        }

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

    .hero-visual {
        margin-top: 14px;
    }

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

        .benefit-strip article:nth-child(2) {
            border-right: 0;
        }

        .benefit-strip article:nth-child(-n+2) {
            border-bottom: 1px solid var(--line);
            padding-bottom: 18px;
            margin-bottom: 18px;
        }

    .capability-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
    }

        .capability-grid article:nth-child(3n)::after {
            display: none;
        }

    .audience-panel {
        grid-template-columns: 45% 55%;
    }

    .audience-aside {
        grid-column: 1 / -1;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
    }

        .steps-grid article:nth-child(3n)::after {
            display: none;
        }

    .cta-inner {
        grid-template-columns: 48% 22% 30%;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        height: 72px;
    }

    .site-header .brand {
        width: 150px;
        height: 72px;
        flex-basis: 150px;
    }

    .logo-header {
        width: 145px;
        max-width: 145px;
        max-height: 50px;
    }

    .main-nav.is-open {
        top: 72px;
    }

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

    .hero h2 {
        font-size: 18px;
    }

    .hero-visual {
        height: 300px;
        border-radius: 0 0 0 52px;
    }

    .benefit-strip,
    .capability-grid,
    .audience-panel,
    .steps-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

        .benefit-strip article {
            justify-content: flex-start;
            border-right: 0 !important;
            border-bottom: 1px solid var(--line);
            padding: 16px 8px;
            margin: 0 !important;
        }

            .benefit-strip article:last-child {
                border-bottom: 0;
            }

        .capability-grid article {
            padding: 0 15px 28px;
        }

            .capability-grid article:not(:last-child)::after {
                top: auto;
                left: 15%;
                right: 15%;
                bottom: 0;
                width: auto;
                height: 1px;
            }

    .audience-photo {
        min-height: 270px;
    }

    .audience-copy {
        padding: 28px 22px;
    }

    .audience-aside {
        grid-column: auto;
        margin: 0 20px 20px;
    }

    .steps-grid article {
        padding-bottom: 24px;
    }

        .steps-grid article:not(:last-child)::after {
            top: auto;
            left: 20%;
            right: 20%;
            bottom: 0;
            width: auto;
            border-top: 2px dotted rgba(47,117,113,.7);
        }

    .cta-inner {
        text-align: center;
    }

    .cta-copy {
        padding: 30px 24px 10px;
    }

        .cta-copy p {
            margin: 0 auto;
        }

    .cta-phone {
        min-height: 145px;
    }

    .cta-actions {
        padding: 8px 24px 28px;
    }

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

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

    .logo-footer {
        width: 142px;
        max-width: 142px;
    }
}
