:root {
    /* === PALETA VINHO PREMIUM === */
    --bg: #ffffff;
    --bg-warm: #faf8f5;
    /* off-white quente */
    --bg-dark: #2a0a0f;
    /* vinho profundo */
    --bg-mid: #3d1017;
    /* vinho medio */
    --primary: #3d1017;
    /* primario = vinho */
    --primary-light: #5a1a22;
    /* vinho claro */
    --text: #1a0508;
    /* texto principal */
    --text-light: #f5ede8;
    /* texto sobre fundo escuro */
    --secondary: #5c3a3f;
    /* texto secundario */
    --muted: #9a7a7f;
    /* texto muted */
    --accent: #c4a97d;
    /* dourado muted */
    --accent-warm: #d4b896;
    /* dourado claro */
    --wa: #10b981;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm: 0 4px 16px rgba(61, 16, 23, .08);
    --shadow-md: 0 12px 36px rgba(61, 16, 23, .15);
    --shadow-premium: 0 24px 56px rgba(0, 0, 0, 0.3);
    --border: rgba(61, 16, 23, .10);
    --border-warm: rgba(196, 169, 125, .20);
    --border-light: rgba(255, 255, 255, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    min-height: 52px;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}

.btn-green {
    background-color: var(--wa);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 168, 89, 0.25);
    border: 1px solid transparent;
    padding: 1.15rem 2.25rem;
}

.btn-green:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-green:focus-visible {
    outline: 2px solid var(--wa);
    outline-offset: 3px;
}

.btn-block {
    width: 100%;
}

@media (max-width: 639px) {
    .btn {
        width: 100%;
    }
}

/* WhatsApp icon inline */
.waba-icon {
    display: inline-block;
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

/* Microcopy */
.microcopy {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 10, 15, 0.95);
    border-bottom: 1px solid rgba(196, 169, 125, .15);
    z-index: 100;
    padding: 12px 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 64px;
    overflow: visible;
}

@media (max-width: 639px) {
    .header-content {
        justify-content: center;
    }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.logo img {
    height: 28px;
    width: auto;
    max-width: 80vw;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.logo img:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .logo img {
        height: 20px;
    }
}

.btn-header {
    display: none;
}

@media (min-width: 640px) {
    .btn-header {
        display: inline-flex;
        justify-self: end;
    }
}

/* Hero Premium Vinho */
.hero {
    padding: 5.5rem 0 0;
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(135deg, rgba(42, 10, 15, 0.1) 0%, rgba(90, 26, 34, 0.4) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(196,169,125,0.06)' stroke-width='1'/%3E%3Cpath d='M30 10 L50 20 L50 40 L30 50 L10 40 L10 20 Z' fill='none' stroke='rgba(196,169,125,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(90, 26, 34, 0.5) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: flex-end;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-eyebrow-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.hero-text {
    position: relative;
    z-index: 5;
    padding-right: 2rem;
}
@media (max-width: 767px) {
    .hero-text {
        padding-right: 0;
    }
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    line-height: 1.55;
    max-width: 460px;
}

.cta-wrap {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.badge-dark {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    align-items: center;
}

/* Professional Image & Floating Card (Hero) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(196, 169, 125, 0.25) 0%, rgba(196, 169, 125, 0.05) 45%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

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

@media (min-width: 1024px) {
    .hero-visual {
        min-width: 420px;
    }
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-auth-card {
    position: relative;
    margin: 1rem 0 0 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    z-index: 10;
    box-sizing: border-box;
}

.floating-auth-card .auth-point strong {
    color: rgba(255, 255, 255, 0.98);
}

.floating-auth-card .auth-point span {
    color: rgba(255, 255, 255, 0.78);
}

.floating-auth-card .auth-point svg {
    color: rgba(212, 184, 150, 0.95);
}

.auth-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: #fff;
}

.auth-point svg {
    color: var(--accent);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.auth-point strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

.auth-point span {
    display: block;
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
           MOBILE-FIRST OVERRIDES  (max-width: 767px)
           Desktop completamente intocado acima desta linha.
        ====================================================== */
@media (max-width: 767px) {

    /* 1. CONTAINER — nunca vazar a 1120px no mobile */
    .container {
        max-width: 640px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 2. TIPOGRAFIA GLOBAL */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    h1 {
        font-size: 38px !important;
        line-height: 1.15 !important;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 20px !important;
        line-height: 1.35 !important;
    }

    /* body/p/li inherit 16px from body — no generic span rule (breaks badges/eyebrow) */

    small,
    .microcopy,
    .review-date,
    .review-name,
    .video-badge,
    .footer-compliance,
    .footer-bottom {
        font-size: 14px !important;
    }

    /* 3. HERO */
    .hero {
        padding-top: 32px;
        padding-bottom: 0;
    }

    .hero-grid {
        gap: 16px;
        align-items: start;
    }

    .hero-text .microcopy {
        margin-bottom: 20px;
    }

    .hero-text .subtitle {
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.85);
    }

    .cta-wrap {
        margin-bottom: 12px;
    }

    /* 4. BOTÃO WHATSAPP */
    .btn {
        height: 52px;
        min-height: 52px;
        font-size: 16px !important;
        border-radius: 10px;
        width: 100%;
        padding: 0 20px;
    }

    /* 5. CHIPS — flex-wrap limpo, sem overflow */
    .badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
        margin-bottom: 8px;
        overflow: visible;
        padding-bottom: 0;
    }

    .badge-dark {
        padding: 5px 12px;
        font-size: 13px;
        white-space: normal;
        background: rgba(196, 169, 125, 0.06);
        border: 1px solid rgba(196, 169, 125, 0.3);
        color: var(--accent-warm);
    }

    /* 6. IMAGEM HERO — abaixo do texto, height controlado */
    .hero-img-wrapper {
        width: 100%;
    }

    .hero-img-wrapper img,
    .hero-img-wrapper picture img {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
        object-fit: contain !important;
        object-position: bottom center !important;
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .hero-mobile-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        z-index: 1;
        opacity: 0.15;
        filter: blur(8px);
        background-image: url('../assets/01 (2).jpg');
        background-size: cover;
        background-position: center;
        mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
        pointer-events: none;
    }

    /* 7. AUTH CARD — abaixo da imagem, compacto, sem overflow */
    .floating-auth-card {
        position: relative;
        margin: 0 0 18px 0;
        width: 100%;
        padding: 14px 16px;
        gap: 10px;
        flex-direction: column;
        overflow: hidden;
    }

    .auth-point {
        gap: 10px;
        min-width: 0;
    }

    .auth-point div {
        min-width: 0;
    }

    .auth-point strong {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .auth-point span {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 8. SEÇÕES GLOBAIS */
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-title {
        font-size: 24px !important;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    @media (max-width: 480px) {
        .hero+.section {
            padding-top: 32px !important;
        }
    }

    /* 9. IMAGEM STORYTELLING / SOBRE — max-height no mobile */
    .story-image {
        min-height: 240px;
        max-height: 320px;
        height: 280px;
    }

    .about-image {
        min-height: 240px;
        max-height: 320px;
    }

    /* 10. CARDS — gap uniforme */
    .steps-grid,
    .grid-priority,
    .grid-secondary {
        gap: 16px;
    }

    .step-card,
    .card {
        padding: 16px 18px;
        gap: 12px;
    }

    /* 11. FAQ */
    .faq-question {
        font-size: 16px;
        padding: 18px 0;
    }

    /* 12. FOOTER */
    footer {
        margin-bottom: 80px;
        /* espaço pro sticky CTA */
        padding: 40px 0 24px;
    }

    .footer-grid {
        gap: 28px;
    }
}

/* ===== DESKTOP HERO ===== */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
        gap: 4rem;
        align-items: flex-end;
    }

    .hero-text h1 {
        font-size: 3.25rem;
        line-height: 1.1;
        max-width: 520px;
    }

    .hero-text .subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        max-width: 480px;
    }

    .hero-img-wrapper img {
        height: auto;
        max-width: none;
        object-fit: cover;
        object-position: center;
        transform: scale(1.55);
        transform-origin: bottom center;
        position: relative;
        z-index: 1;
    }

    .floating-auth-card {
        position: absolute;
        margin: 0;
        width: auto;
        left: 0;
        right: auto;
        bottom: 20px;
        min-width: 280px;
        overflow: visible;
    }
}

/* Storytelling Emotional Section */
.storytelling-section {
    background-color: var(--bg-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(196,169,125,0.06)' stroke-width='1'/%3E%3Cpath d='M30 10 L50 20 L50 40 L30 50 L10 40 L10 20 Z' fill='none' stroke='rgba(196,169,125,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    color: var(--text-light);
    position: relative;
}

.storytelling-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.storytelling-content h2 {
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
}

.storytelling-content p {
    color: rgba(245, 237, 232, 0.72);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.story-alert-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    margin-top: 2rem;
}

.story-alert-card h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.story-alert-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-alert-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.story-alert-card li svg {
    color: var(--wa);
    margin-top: 2px;
    flex-shrink: 0;
}

.story-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: url('assets/paciente-negativa.jpg') no-repeat center center;
    background-size: cover;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

@media (min-width: 768px) {
    .storytelling-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* Sections Globais */
.section {
    padding: 72px 0;
}

/* section mobile padding definido no bloco mobile principal */

.section-alt {
    background-color: var(--bg-warm);
}

.section-dark {
    background-color: var(--primary);
    color: #ffffff;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: #a8b5c8;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Video Section */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, #e8e2d9 100%);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    gap: 1rem;
    cursor: pointer;
}

.video-placeholder .play-button {
    width: 64px;
    height: 64px;
    background-color: var(--bg);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    transform: scale(1.05);
    color: var(--primary);
}

.video-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.video-badge {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

.video-dot {
    color: var(--accent);
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
    .step-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: rgba(196, 169, 125, 0.4);
    }
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--bg-warm), 0 0 0 4px rgba(196, 169, 125, .4);
    margin-bottom: 0.5rem;
}

.step-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Sobre o Escritorio */
.about-section {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(ellipse at left top, rgba(196, 169, 125, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at right bottom, rgba(90, 26, 34, 0.5) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(196,169,125,0.06)' stroke-width='1'/%3E%3Cpath d='M30 10 L50 20 L50 40 L30 50 L10 40 L10 20 Z' fill='none' stroke='rgba(196,169,125,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-xl);
    min-height: 500px;
    background: linear-gradient(160deg, rgba(90, 26, 34, 0.4) 0%, rgba(42, 10, 15, 0.8) 100%), url('assets/consulting_image.webp') no-repeat center center;
    background-size: cover;
    border: 1px solid rgba(196, 169, 125, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(196, 169, 125, 0.5);
    font-size: 0.9rem;
}

/* Office Gallery Marquee */
.office-gallery {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-xl);
    position: relative;
    background: var(--bg-dark);
}

.office-gallery .track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: office-marquee 35s linear infinite;
}

.office-gallery img {
    height: 500px;
    width: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid rgba(196, 169, 125, 0.2);
    box-shadow: var(--shadow-sm);
}

.office-gallery .gallery-placeholder {
    height: 500px;
    width: 350px;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(196, 169, 125, 0.4);
    background: rgba(196, 169, 125, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes office-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
        /* 8px to adjust for the gap */
    }
}

@media (hover: hover) and (pointer: fine) {
    .office-gallery:hover .track {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    .office-gallery .track {
        animation: none !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 16px;
    }

    .office-gallery img,
    .office-gallery .gallery-placeholder {
        width: 100%;
        height: 250px;
    }

    .office-gallery .track img.duplicate,
    .office-gallery .track .gallery-placeholder.duplicate {
        display: none;
    }
}

.about-content h2 {
    text-align: left;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(245, 237, 232, 0.72);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-content {
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(160deg, rgba(84, 90, 98, 0.34) 0%, rgba(56, 62, 70, 0.42) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    isolation: isolate;
}

.about-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
    background-size: 3px 3px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.about-content::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(6px);
    pointer-events: none;
    z-index: -1;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    letter-spacing: -0.02em;
}

.about-bullets {
    display: grid;
    gap: 0.85rem;
}

.about-bullets li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 0.8rem 0.9rem;
    transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.about-bullets li:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.09);
}

.about-content .btn {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .about-section {
        background: #e9e9e9;
        color: #1f2329;
    }

    .about-grid {
        gap: 1.25rem;
    }

    .office-gallery .track {
        display: block;
        width: 100%;
        animation: none;
        transform: none !important;
        gap: 0;
    }

    .office-gallery img {
        height: 260px;
        width: 100%;
        max-width: 100%;
        flex: none;
        display: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .office-gallery img:first-child {
        display: block;
    }

    .office-gallery .track .duplicate {
        display: none !important;
    }

    .office-gallery {
        background: #f2f2f2;
        padding: 10px;
        border-radius: 0;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .office-gallery::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 6px solid rgba(196, 169, 125, 0.65);
        transform: translate(-8px, -8px);
        z-index: 0;
        pointer-events: none;
    }

    .office-gallery img:first-child {
        position: relative;
        z-index: 1;
    }

    .about-content {
        padding: 1.35rem 1.2rem;
        background: #f4f4f4;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .about-content::before,
    .about-content::after {
        display: none;
    }

    .about-content h2 {
        color: #111;
        text-align: center;
        letter-spacing: -0.01em;
        margin-bottom: 1rem;
    }

    .about-content p,
    .about-bullets,
    .about-bullets span {
        color: #2b2f36 !important;
    }

    .about-bullets {
        display: block;
        margin-bottom: 1.35rem !important;
    }

    .about-bullets li {
        background: transparent;
        border: 0;
        padding: 0;
        margin-bottom: 0.85rem !important;
        display: block !important;
    }

    .about-bullets li svg {
        display: none;
    }

    .about-content .btn {
        color: #111 !important;
        border-color: rgba(17, 17, 17, 0.28) !important;
        background: #fff !important;
    }

    .about-content .btn svg {
        color: #111;
    }

    .about-content div[style*="font-family: 'Outfit'"] {
        color: #111 !important;
        text-align: left;
    }

    .about-content div[style*="font-size:0.9rem"] {
        color: #4b5563 !important;
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }
}

/* Documentos */
.checklist {
    margin-top: 2rem;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.checklist li:hover {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-sm);
}

.checklist-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    background: transparent;
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

.docs-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--primary);
    padding: 14px 16px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow-sm);
    line-height: 1.6;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

.split-text {
    padding: 3rem 2rem;
}

.docs-img-panel {
    background-image: url('assets/doc_image.webp');
    background-size: cover;
    background-position: center;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    min-height: 320px;
    position: relative;
}

.docs-img-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 16, 23, 0.25) 0%, rgba(42, 10, 15, 0.1) 100%);
    border-radius: inherit;
}

@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }

    .split-text {
        padding: 4rem 3rem;
    }

    .docs-img-panel {
        min-height: 500px;
    }
}

/* Situations */
.grid-priority {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.grid-secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Unified cards — feature size */
.card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .card:hover {
        border-color: rgba(196, 169, 125, 0.5);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    border: 1px solid var(--accent-border);
}

.card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .grid-priority {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .grid-secondary {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Nacional / About section dark */
.nacional-section {
    background-color: var(--bg-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(196,169,125,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    color: var(--text-light);
}

.nacional-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 169, 125, .18);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
}

.nacional-box p {
    color: rgba(245, 237, 232, 0.72);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    gap: 1.25rem;
    min-height: 48px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrap {
    max-height: 400px;
}

.faq-answer {
    padding-bottom: 1.75rem;
    color: var(--secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
    opacity: 0.8;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Final CTA */
.final-cta-section {
    background-color: #1a0408;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(196,169,125,0.06)' stroke-width='1'/%3E%3Cpath d='M30 10 L50 20 L50 40 L30 50 L10 40 L10 20 Z' fill='none' stroke='rgba(196,169,125,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    color: #ffffff;
    text-align: center;
    padding: 6rem 0;
    border-top: 1px solid rgba(196, 169, 125, 0.15);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: none;
    opacity: 0;
    pointer-events: none;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.final-cta-section .section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-section .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.final-cta-section .btn-green {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Sticky Mobile CTA */
.sticky-cta-mobile {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 92%;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
}

.sticky-cta-mobile.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 640px) {
    .sticky-cta-mobile {
        display: none !important;
    }
}

/* Footer */
footer {
    background-color: #1a0408;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(196,169,125,0.06)' stroke-width='1'/%3E%3Cpath d='M30 10 L50 20 L50 40 L30 50 L10 40 L10 20 Z' fill='none' stroke='rgba(196,169,125,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    color: var(--text-light);
    padding: 3.5rem 0 2rem;
    border-top: 0;
    margin-bottom: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: none;
    opacity: 0;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.footer-compliance {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1rem;
    max-width: 360px;
    line-height: 1.75;
}

.footer-links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: rgba(245, 237, 232, 0.5);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* === CARROSSEL DE DEPOIMENTOS === */
.reviews-carousel-wrap {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-width: 280px;
    flex: 0 0 calc(50% - 0.75rem);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

@media (max-width: 640px) {
    .review-card {
        flex: 0 0 calc(100% - 0px);
        min-width: unset;
    }
}

@media (hover: hover) and (pointer: fine) {
    .review-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.975rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.review-date {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 2px;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.rev-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.rev-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.rev-dots {
    display: flex;
    gap: 6px;
}

.rev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.rev-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
}

/* Animações (Reveal on Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile: imagem acima do texto na seção storytelling */
@media (max-width: 768px) {
  .storytelling-grid{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
  }

  .story-visual{
    order: -1;
    margin-bottom: 0.25rem;
    width: 100%;
  }

  .storytelling-content{
    order: 1;
  }

  .story-visual .story-image{
    width: 100%;
  }
}

