﻿
:root {
    --navy: #07192B;
    --navy-2: #0B2238;
    --navy-3: #32485D;
    --yellow: #F4BE00;
    --yellow-dark: #D8A600;
    --white: #FFFFFF;
    --bg: #F5F6F8;
    --text: #142033;
    --muted: #5F6973;
    --line: #E2E5EA;
    --shadow: 0 18px 42px rgba(7,25,43,.16);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 0;
}

.nav img {
    height: 60px;
    width: auto;
}

.logo {
    width: 175px;
    height: auto;
    flex: 0 0 auto;
}

.menu-toggle {
    display: none;
    background: var(--yellow);
    color: var(--navy);
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    padding: 10px 14px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

    .nav-links a:hover {
        color: var(--yellow);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    padding: 15px 24px;
    font-weight: 900;
    letter-spacing: .01em;
    text-transform: uppercase;
    font-size: 14px;
    transition: .2s ease;
    border: 0;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
}

    .btn-primary:hover {
        background: var(--yellow-dark);
    }

.btn-outline {
    border: 2px solid rgba(255,255,255,.68);
    color: #fff;
}

    .btn-outline:hover {
        border-color: var(--yellow);
        color: var(--yellow);
    }

.btn-dark {
    background: var(--navy);
    color: #fff;
}

.hero {
    position: relative;
    color: #fff;
    background: var(--navy);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(7,25,43,.98) 0%, rgba(7,25,43,.70) 42%, rgba(7,25,43,.20) 100%), url('/img/imagehero.jpeg') center/cover no-repeat;
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    padding: 88px 0;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5.5vw, 62px);
    line-height: .98;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -1.2px;
}

    .hero h1 span {
        color: var(--yellow);
    }

.lead {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #eef3f8;
    margin: 0 0 28px;
    max-width: 610px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0 32px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(244,190,0,.45);
    color: var(--yellow);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    font-size: 22px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

section {
    padding: 74px 0;
}

.section-label {
    text-align: center;
    color: #9a7a00;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.07;
    margin: 0 0 14px;
    color: var(--navy);
    font-weight: 900;
}

.section-sub {
    text-align: center;
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 34px;
}

.steps {
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.step {
    background: #fbfbfb;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.03);
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin: 0 auto 18px;
}

.step-ico {
    font-size: 38px;
    color: var(--yellow);
    margin-bottom: 12px;
}

.step h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: var(--navy);
    text-transform: uppercase;
    font-weight: 900;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.steps-note {
    margin-top: 24px;
    text-align: center;
    font-weight: 900;
    color: var(--navy);
    font-size: 17px;
}

    .steps-note span {
        color: #9a7a00;
    }

.kit {
    background: var(--navy);
    color: #fff;
    padding: 0;
}

.kit-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: stretch;
    min-height: 420px;
}

.kit-img {
    background-image: url('../img/kit.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 420px;
}

.kit-content {
    padding: 62px clamp(24px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .kit-content .small {
        color: var(--yellow);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 10px;
    }

.kit h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.kit p {
    color: #e5eef8;
    font-size: 18px;
    margin: 0 0 24px;
    max-width: 620px;
}

.kit-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 26px 0 30px;
}

.kit-feat {
    border-left: 2px solid rgba(244,190,0,.55);
    padding-left: 14px;
    font-size: 14px;
    color: #dbe5ef;
}

    .kit-feat strong {
        display: block;
        color: #fff;
        margin-bottom: 3px;
    }

.diff {
    background: #fff;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 76px 1fr;
    gap: 20px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.diff-card {
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--line);
    min-height: 300px;
}

    .diff-card h3 {
        margin: 0 0 20px;
        font-size: 22px;
        text-transform: uppercase;
        text-align: center;
        font-weight: 900;
    }

    .diff-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 15px;
    }

    .diff-card li {
        font-size: 16px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

.diff-left {
    background: #fafafa;
}

.diff-right {
    background: var(--navy);
    color: #fff;
}

    .diff-right h3 {
        color: var(--yellow);
    }

.vs {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--navy);
    box-shadow: var(--shadow);
    z-index: 1;
}

.anvisa {
    background: var(--navy);
    color: #fff;
}

.anvisa-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

.anvisa h2 {
    color: var(--yellow);
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    text-transform: uppercase;
    font-weight: 900;
}

.anvisa p {
    color: #edf2f7;
    font-size: 18px;
}

.grade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.grade {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 18px;
    border-radius: 16px;
}

    .grade strong {
        color: var(--yellow);
        display: block;
        margin-bottom: 8px;
        font-size: 20px;
    }

.anvisa-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 28px;
    align-items: center;
}

.about-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px;
}

.about-logo {
    background: var(--navy);
    border-radius: 18px;
    padding: 36px;
    display: grid;
    place-items: center;
    min-height: 260px;
}

.about h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    margin: 0 0 14px;
    color: var(--navy);
    font-weight: 900;
}

.about p {
    margin: 0;
    font-size: 18px;
    color: #4c5661;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 26px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.about-stat {
    text-align: center;
    font-weight: 900;
    color: var(--navy);
}

    .about-stat span {
        display: block;
        font-weight: 600;
        color: var(--muted);
        margin-top: 5px;
        font-size: 14px;
    }

.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

summary {
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.cta-band {
    background: var(--yellow);
    padding: 22px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-band strong {
    display: block;
    color: var(--navy);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 900;
}

.cta-band p {
    margin: 5px 0 0;
    color: #3b4650;
    font-size: 17px;
    font-weight: 700;
}

footer {
    background: var(--navy);
    color: #d5dbe2;
    padding: 36px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    gap: 28px;
    align-items: start;
}

.footer-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--yellow);
    margin: 0 0 12px;
}

.footer-links {
    display: grid;
    gap: 10px;
    font-size: 15px;
}

.footer-small {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.10);
    font-size: 13px;
    color: #afbac6;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.wa-fixed {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    background: #25D366;
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
    padding: 14px 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

@media (max-width: 980px) {
    .nav-inner {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0 8px;
    }

        .nav-links.open {
            display: flex;
        }

    .hero {
        min-height: auto;
    }

        .hero::before {
            background: linear-gradient(90deg, rgba(7,25,43,.98) 0%, rgba(7,25,43,.90) 100%), url('/img/imagehero.jpeg') center/cover no-repeat;
        }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kit-grid,
    .anvisa-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .kit-img {
        min-height: 360px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .vs {
        margin: -4px auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .logo {
        width: 145px;
    }

    .hero-content {
        padding: 58px 0;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .steps-grid,
    .kit-feats,
    .grade-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .kit-img {
        min-height: 310px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    section {
        padding: 56px 0;
    }

    .cta-inner {
        display: grid;
    }
}

/* Ajuste fino de responsividade mobile */
.responsive-process-title {
    font-size: clamp(20px, 4.8vw, 28px);
    white-space: nowrap;
}

@media (max-width: 620px) {
    .hero h1 {
        font-size: clamp(25px, 7.2vw, 34px);
        line-height: 1.04;
        letter-spacing: -.4px;
    }

    .lead {
        font-size: 15px;
        line-height: 1.35;
    }

    .hero-point {
        font-size: 10.5px;
    }

    .responsive-process-title {
        font-size: clamp(17px, 5vw, 20px);
        line-height: 1.1;
        white-space: nowrap;
        letter-spacing: -.6px;
    }
}

@media (max-width: 380px) {
    .responsive-process-title {
        font-size: 16px;
        letter-spacing: -.7px;
    }

    .hero h1 {
        font-size: 24px;
    }
}


/* Correção específica para evitar textos estourando no mobile */
@media (max-width: 620px) {
    .responsive-process-title {
        font-size: 14px;
        line-height: 1.15;
        white-space: nowrap;
        letter-spacing: -0.8px;
    }

    .step {
        padding: 22px 12px;
        overflow: hidden;
    }

        .step h3 {
            font-size: 13px;
            line-height: 1.15;
            letter-spacing: -0.4px;
            word-break: normal;
            overflow-wrap: anywhere;
        }

        .step p {
            font-size: 13px;
            line-height: 1.45;
        }

    .wa-fixed {
        right: 10px;
        bottom: 10px;
        padding: 11px 13px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .responsive-process-title {
        font-size: 13px;
        letter-spacing: -0.9px;
    }

    .step h3 {
        font-size: 12px;
    }
}


.lead-form-section {
    background: #fff;
    padding: 74px 0;
}

.lead-form-wrap {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: stretch;
}

.lead-form-copy {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .lead-form-copy .small {
        color: var(--yellow);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 12px;
    }

    .lead-form-copy h2 {
        font-size: clamp(30px, 4vw, 44px);
        line-height: 1.05;
        margin: 0 0 14px;
        font-weight: 900;
    }

    .lead-form-copy p {
        color: #e5eef8;
        font-size: 18px;
        margin: 0;
    }

.lead-form-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lead-form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .lead-form-field.full {
        grid-column: 1 / -1;
    }

    .lead-form-field label {
        font-size: 13px;
        font-weight: 900;
        color: var(--navy);
        text-transform: uppercase;
    }

    .lead-form-field input,
    .lead-form-field select,
    .lead-form-field textarea {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 14px 14px;
        font: inherit;
        color: var(--text);
        background: #fff;
        outline: none;
    }

    .lead-form-field textarea {
        min-height: 110px;
        resize: vertical;
    }

.lead-form-note {
    font-size: 13px;
    color: var(--muted);
    margin: 14px 0 0;
}

@media (max-width: 980px) {
    .lead-form-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .lead-form-section {
        padding: 56px 0;
    }

    .lead-form-copy,
    .lead-form-card {
        padding: 24px 18px;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
    }
}
