/* ==========================================================================
   Home Care Legal - Atuação Médico-Jurídica
   Design System & Styling
   ========================================================================== */

:root {
    /* Color Palette */
    --navy-dark: #09121d;
    --navy-main: #0f1c2e;
    --navy-light: #1a2a40;
    
    --slate-bg: #f8fafc;
    --slate-surface: #ffffff;
    --slate-border: #e2e8f0;
    --slate-text: #334155;
    --slate-heading: #0f172a;
    --slate-muted: #64748b;

    /* Legal Blue Accents */
    --blue-primary: #1e40af;
    --blue-hover: #1d4ed8;
    --blue-light: #eff6ff;
    --blue-border: #bfdbfe;

    /* Medical Emerald/Teal Accents */
    --teal-primary: #0d9488;
    --teal-hover: #0f766e;
    --teal-light: #f0fdfa;
    --teal-border: #99f6e4;

    /* Gold Urgency Accents */
    --gold-primary: #d97706;
    --gold-light: #fffbeb;
    --gold-border: #fde68a;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout & Spacing */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 28, 46, 0.08), 0 8px 10px -6px rgba(15, 28, 46, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(15, 28, 46, 0.15);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Adjustments / Theme Defaults */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--slate-bg);
    color: var(--slate-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--slate-heading);
    line-height: 1.25;
    font-weight: 700;
}

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

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-gradient-gold {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Common Styling */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 56px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-primary);
    background: var(--blue-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate-muted);
    line-height: 1.7;
}

/* Button Component */
.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Primary Advogado (Blue) */
.btn-primary-advogado {
    background-color: var(--blue-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.35);
}
.btn-primary-advogado:hover {
    background-color: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.45);
}

.btn-outline-advogado {
    background-color: transparent;
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}
.btn-outline-advogado:hover {
    background-color: var(--blue-light);
}

/* Primary Medico (Teal/Emerald) */
.btn-primary-medico {
    background-color: var(--teal-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.btn-primary-medico:hover {
    background-color: var(--teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.btn-outline-medico {
    background-color: transparent;
    border-color: var(--teal-primary);
    color: var(--teal-primary);
}
.btn-outline-medico:hover {
    background-color: var(--teal-light);
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-border);
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d1726, #162438);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 28, 46, 0.25);
    overflow: hidden;
    padding: 3px;
    border: 1px solid rgba(13, 148, 136, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo:hover .brand-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
    border-color: var(--teal-primary);
}

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

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-dark);
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-text);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--blue-primary);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--navy-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 90px;
    background: linear-gradient(180deg, #f0f4f8 0%, var(--slate-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--blue-border);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--teal-border);
    bottom: -50px;
    left: -50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.badge-integration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--slate-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--teal-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(13, 148, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-border);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-blue { background: var(--blue-light); color: var(--blue-primary); }
.icon-gold { background: var(--gold-light); color: var(--gold-primary); }

.highlight-text {
    font-size: 0.95rem;
    color: var(--slate-text);
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--slate-muted);
}

.hero-disclaimer svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.hero-media {
    position: relative;
}

.media-card-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.media-overlay-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(15, 28, 46, 0.88);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-border);
}

.badge-content span {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-content strong {
    font-family: var(--font-heading);
    font-size: 1rem;
}

/* Seção 2: Diferencial (Pilares) */
.section-diferencial {
    background-color: #ffffff;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pilar-card {
    background: var(--slate-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-border);
    position: relative;
    transition: var(--transition);
}

.pilar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-border);
}

.pilar-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #cbd5e1;
}

.pilar-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-medico { background: var(--teal-light); color: var(--teal-primary); }
.icon-advogado { background: var(--blue-light); color: var(--blue-primary); }
.icon-integracao { background: var(--gold-light); color: var(--gold-primary); }

.pilar-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.pilar-text {
    font-size: 0.98rem;
    color: var(--slate-muted);
    line-height: 1.65;
}

.quote-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: var(--shadow-md);
}

.quote-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    color: #f1f5f9;
}

/* Seção 3: Profissionais (Cards) */
.section-profissionais {
    background: var(--slate-bg);
}

.choice-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 36px;
}

.choice-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 2px solid var(--slate-border);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.choice-card:hover {
    transform: translateY(-6px);
}

.card-advogado:hover { border-color: var(--blue-primary); }
.card-medico:hover { border-color: var(--teal-primary); }

.card-header-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
}

.badge-blue { background: var(--blue-light); color: var(--blue-primary); }
.badge-emerald { background: var(--teal-light); color: var(--teal-primary); }

.choice-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow-md);
}

.choice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choice-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.choice-body {
    font-size: 1rem;
    color: var(--slate-muted);
    margin-bottom: 32px;
    flex-grow: 1;
    line-height: 1.65;
}

.choice-observation {
    background: #ffffff;
    border: 1px solid var(--slate-border);
    border-left: 4px solid var(--blue-primary);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 0.925rem;
    color: var(--slate-text);
}

.obs-icon {
    color: var(--blue-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Seção 4: Vídeos */
.section-videos {
    background-color: #ffffff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.video-card {
    background: var(--slate-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--shadow-md);
}

.video-preview-wrapper {
    position: relative;
    height: 240px;
    cursor: pointer;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-preview-wrapper:hover .video-thumb {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 46, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(30, 64, 175, 0.6);
    transition: var(--transition);
}

.btn-med-play {
    background: var(--teal-primary);
    box-shadow: 0 0 25px rgba(13, 148, 136, 0.6);
}

.video-preview-wrapper:hover .play-btn {
    transform: scale(1.1);
}

.play-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy-dark);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.badge-med {
    background: var(--teal-hover);
}

.video-info {
    padding: 32px 28px;
}

.video-pro-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.pro-credentials {
    font-size: 0.875rem;
    color: var(--slate-muted);
    margin-bottom: 16px;
}

.video-script-preview {
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--slate-border);
    font-size: 0.9rem;
    color: var(--slate-text);
    margin-bottom: 24px;
}

.video-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Seção 5: Prazo de 72 Horas */
.section-prazo72h {
    background: var(--slate-bg);
}

.prazo-box {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    border: 1px solid var(--slate-border);
    box-shadow: var(--shadow-md);
}

.prazo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.prazo-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.prazo-lead {
    font-size: 1.1rem;
    color: var(--slate-text);
    margin-bottom: 36px;
    line-height: 1.7;
}

.prazo-objective-card {
    background: linear-gradient(135deg, var(--navy-main), var(--navy-dark));
    color: #ffffff;
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;

    box-shadow: var(--shadow-md);
}

.objective-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.hours-tag {
    background: var(--gold-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 4px 14px;
    border-radius: 6px;
}

.objective-header h3 {
    color: #ffffff;
    font-size: 1.35rem;
}

.objective-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Timeline 72h Visual */
.timeline-72h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}

.timeline-step {
    flex: 1;
    background: var(--slate-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-step {
    background: var(--blue-light);
    border-color: var(--blue-border);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-dark);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-step .step-circle {
    background: var(--blue-primary);
}

.step-content strong {
    display: block;
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.step-content span {
    font-size: 0.85rem;
    color: var(--slate-muted);
}

.timeline-connector {
    width: 24px;
    height: 2px;
    background: var(--slate-border);
    flex-shrink: 0;
}

.prazo-warning-banner {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    color: #c2410c;
    flex-shrink: 0;
}

.warning-content strong {
    color: #9a3412;
    display: block;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.warning-content p {
    font-size: 0.9rem;
    color: #7c2d12;
    line-height: 1.6;
}

/* Seção 6: Como Funciona */
.section-como-funciona {
    background-color: #ffffff;
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.flow-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--slate-bg);
    padding: 28px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-border);
    transition: var(--transition);
}

.flow-card:hover {
    transform: translateX(6px);
    border-color: var(--blue-border);
}

.flow-card-highlight {
    background: var(--navy-main);
    color: #ffffff;
}

.flow-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blue-primary);
    width: 50px;
    flex-shrink: 0;
}

.flow-card-highlight .flow-number {
    color: var(--gold-primary);
}

.flow-body h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.flow-card-highlight .flow-body h3 {
    color: #ffffff;
}

.flow-body p {
    font-size: 0.98rem;
    color: var(--slate-muted);
}

.flow-card-highlight .flow-body p {
    color: #cbd5e1;
}

/* Seção Triagem / Checklist Interativo */
.section-triagem {
    background: var(--slate-bg);
}

.triagem-wrapper {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--slate-border);
    box-shadow: var(--shadow-md);
    max-width: 960px;
    margin: 0 auto;
}

.checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--slate-bg);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-border);
    cursor: pointer;
    transition: var(--transition);
}

.check-item:hover {
    border-color: var(--blue-primary);
}

.check-item input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--slate-muted);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.check-item input[type="checkbox"]:checked + .custom-checkbox {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.check-item input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.check-info strong {
    display: block;
    font-size: 1.05rem;
    color: var(--navy-dark);
}

.check-info small {
    font-size: 0.875rem;
    color: var(--slate-muted);
}

.checklist-status {
    background: var(--blue-light);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
}

#statusIcon {
    font-size: 2rem;
}

.status-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy-dark);
}

.status-text span {
    font-size: 0.9rem;
    color: var(--slate-text);
}

/* CTA Final */
.section-cta-final {
    background: var(--navy-dark);
    color: #ffffff;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.3) 0%, rgba(13, 148, 136, 0.15) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-card {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto;
}

.cta-card .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-border);
}

.cta-title {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cta-disclaimer-box p {
    font-size: 0.875rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #050b14;
    color: #94a3b8;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.footer-brand-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.footer-brand .brand-title {
    color: #ffffff;
}

.footer-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 16px 0 24px 0;
}

.footer-email {
    color: var(--teal-border);
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.925rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.pro-identity-item {
    margin-bottom: 16px;
}

.pro-identity-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
}

.pro-identity-item span {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-compliance {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 36px;
    margin-bottom: 40px;
}

.compliance-box h5 {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.compliance-box ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compliance-box li {
    font-size: 0.825rem;
    line-height: 1.6;
    color: #64748b;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #475569;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(9, 18, 29, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 540px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-lg {
    max-width: 720px;
}

.modal-backdrop.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-muted);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    background: var(--blue-light);
    color: var(--blue-primary);
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.925rem;
    color: var(--slate-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-border);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

.form-checkbox-lgpd {
    font-size: 0.825rem;
    color: var(--slate-muted);
}

.form-checkbox-lgpd label {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.script-content-box {
    background: var(--slate-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--blue-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-footer-cta {
    display: flex;
    justify-content: flex-end;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .pilares-grid {
        grid-template-columns: 1fr;
    }
    .choice-cards-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .timeline-72h {
        flex-direction: column;
    }
    .timeline-connector {
        width: 2px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .checklist-status {
        flex-direction: column;
        align-items: stretch;
    }
}

/* WhatsApp Direct Modal */
.modal-whatsapp-card {
    max-width: 480px;
    padding: 36px 28px;
    text-align: center;
}

.wa-modal-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    border: 2px solid rgba(37, 211, 102, 0.25);
}

.wa-message-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin: 20px 0 24px 0;
    text-align: left;
}

.wa-message-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.wa-message-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    font-style: italic;
}

.btn-whatsapp-direct {
    background-color: #25d366;
    color: #ffffff !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.05rem;
}

.btn-whatsapp-direct:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* YouTube Embed Styling */
.video-iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    background: #050b14;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.video-badge {
    pointer-events: none;
    z-index: 2;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.modal-video-embed {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 480px;
    margin: 0 auto 20px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: #000000;
}

.modal-video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
