/* ==========================================================================
   Design Tokens - Premium Corporate Clean
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #d73135;          /* Vermelho 3B - Ação Principal */
    --color-primary-dark: #b31220;     
    --color-primary-light: #fee2e2;    
    
    --color-secondary: #0f172a;        /* Azul Navy - Confiança/Jurídico */
    --color-secondary-light: #1e293b;
    
    --color-surface: #f8fafc;          /* Fundo principal cinza muito claro */
    --color-surface-white: #ffffff;    /* Fundo dos cartões */
    
    --color-text-main: #334155;        /* Texto de leitura longo */
    --color-text-heading: #0f172a;     /* Títulos */
    --color-text-muted: #64748b;       /* Textos secundários */
    
    --color-border: #e2e8f0;           /* Bordas sutis */
    
    --color-whatsapp: #25D366;         /* Verde vibrante para CTA */
    --color-whatsapp-dark: #20b858;
    --color-whatsapp-glow: rgba(37, 211, 102, 0.4);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-pad-y: 5rem;
    --gap-md: 2rem;
    --gap-lg: 4rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px var(--color-whatsapp-glow);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.corporate-theme {
    font-family: var(--font-body);
    background-color: var(--color-surface);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    color: var(--color-text-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-light { background-color: #f1f5f9; }
.bg-white { background-color: #ffffff; }
.bg-navy { 
    background-color: var(--color-secondary); 
    color: #e2e8f0;
}
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #ffffff; }
.bg-navy .section-sub { color: #cbd5e1; }

/* ==========================================================================
   Components: Buttons & Glows
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 var(--color-whatsapp-glow); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-topbar {
    background-color: var(--color-whatsapp);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-topbar:hover {
    background-color: var(--color-whatsapp-dark);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.center-btn {
    margin: 0 auto;
}

.btn-text {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.btn-text:hover {
    gap: 0.75rem;
    color: var(--color-primary-dark);
}

.text-accent-red { color: var(--color-primary); }

/* ==========================================================================
   Layout: Top Bar
   ========================================================================== */
.topbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-area { display: flex; align-items: center; }

.logo {
    height: 3rem;
    width: auto;
}

.topbar-nav {
    display: flex;
    gap: 2rem;
}

.topbar-nav a {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   Layout: Hero Section (Split Style)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--color-secondary);
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slider .bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slider .bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--section-pad-y);
    padding-bottom: calc(var(--section-pad-y) * 1.5);
}

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

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(215, 49, 53, 0.15);
    color: #fca5a5;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(215, 49, 53, 0.3);
}

.hero-text {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text.text-center {
    text-align: center;
}

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: #ff6b6b;
    font-weight: 800;
    position: relative;
    white-space: nowrap;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #ff6b6b;
    border-radius: 1px;
    opacity: 0.6;
}

.hero-desc {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

.btn-note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Floating Hero Card */
.hero-floating-card {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.glass-card-hero {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}

.hero-lawyer-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--color-surface-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.badge-icon {
    background-color: #f1f5f9;
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    display: block;
    color: var(--color-text-heading);
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

.badge-text span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.glass-card-hero {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}

.hero-lawyer-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--color-surface-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.badge-icon {
    background-color: #f1f5f9;
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    display: block;
    color: var(--color-text-heading);
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

.badge-text span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* ==========================================================================
   Layout: Floating Numbers
   ========================================================================== */
.numbers {
    position: relative;
    z-index: 10;
    margin-top: -4rem;
    margin-bottom: 4rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    background: var(--color-surface-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

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

.number-item {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .number-item {
        border-bottom: none;
        border-right: 1px solid var(--color-border);
    }
    .number-item:last-child {
        border-right: none;
    }
}

.number-item h3 {
    color: var(--color-secondary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.number-item p {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Layout: Split Sections (Identificação)
   ========================================================================== */
.identification {
    padding: var(--section-pad-y) 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.section-desc {
    font-size: 1.125rem;
    margin: 1.5rem 0 2rem;
}

.checklist {
    margin-bottom: 2.5rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--color-text-body);
}

.check-icon-box {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.check-icon-box svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

.anim-check-empty {
    color: #94a3b8;
    opacity: 1;
}

.anim-check-filled {
    color: var(--color-whatsapp);
    opacity: 0;
    transform: scale(0.5);
}

.check-icon-box.is-checked .anim-check-empty {
    opacity: 0;
}

.check-icon-box.is-checked .anim-check-filled {
    opacity: 1;
    transform: scale(1);
}

.highlight-box {
    background-color: var(--color-surface);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.highlight-box p {
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.image-placeholder {
    width: 100%;
    height: 600px;
    background-color: var(--color-secondary-light);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bg-img-1 {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.image-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    color: white;
    display: flex;
    flex-direction: column;
}

.image-caption-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.image-caption-overlay .caption-light {
    color: #94a3b8;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

/* ==========================================================================
   Layout: Methodology (4-Step Timeline)
   ========================================================================== */
.methodology {
    padding: var(--section-pad-y) 0;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-sub {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.timeline-container {
    position: relative;
    padding-top: 2rem;
}

.timeline-line {
    display: none;
    position: absolute;
    top: 5rem;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background-color: var(--color-border);
    z-index: 0;
    border-radius: 2px;
}

.timeline-progress {
    height: 100%;
    background-color: var(--color-primary);
    width: 0%;
    transition: width 1s ease-out;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .timeline-line {
        display: block;
    }
}

.timeline-step {
    background: var(--color-surface-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: var(--color-surface);
    position: relative;
    z-index: 2;
    border: 4px solid var(--color-surface-white);
}

.step-icon i {
    width: 24px;
    height: 24px;
}

.bg-red-light { color: var(--color-primary); }
.bg-blue-light { color: var(--color-secondary); }
.bg-green-light { color: var(--color-whatsapp-dark); }

.timeline-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-step p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.step-featured {
    background-color: var(--color-secondary);
    color: white;
    border: none;
    transform: scale(1.05);
}

.step-featured h3 { color: white; }
.step-featured p { color: #cbd5e1; }
.step-featured .step-icon { background-color: rgba(255,255,255,0.1); color: var(--color-whatsapp); border-color: var(--color-secondary); }

/* ==========================================================================
   Layout: Testimonials (Vertical Stories)
   ========================================================================== */
.stories-section {
    padding: var(--section-pad-y) 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.story-card {
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background-color: #334155;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.story-bg {
    width: 100%;
    height: 100%;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.bg-img-client1, .bg-img-client2, .bg-img-client3 {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

.story-card:hover .story-bg {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.story-overlay .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.story-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.story-info h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.story-info span {
    color: var(--color-primary-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ==========================================================================
   Layout: Gallery Swiper
   ========================================================================== */
.gallery {
    padding: var(--section-pad-y) 0;
}

.divider-left {
    height: 4px;
    width: 60px;
    background-color: var(--color-primary);
    margin: 1rem 0 2rem;
    border-radius: 2px;
}

.gallery-swiper {
    padding-bottom: 3rem;
}

.gallery-item {
    height: 300px;
    border-radius: var(--radius-md);
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
}

/* ==========================================================================
   Layout: FAQ Accordion
   ========================================================================== */
.faq {
    padding: var(--section-pad-y) 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-surface-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-heading);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question i {
    transition: transform 0.3s;
    color: var(--color-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--color-surface-white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Layout: Super CTA Final
   ========================================================================== */
.super-cta {
    padding: var(--section-pad-y) 1.5rem;
    background-color: var(--color-surface);
}

.super-cta-card {
    max-width: var(--container-max);
    margin: 0 auto;
    background-color: var(--color-secondary);
    border-radius: 2rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--color-primary);
    transform: skewX(-15deg) translateX(20%);
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: #cbd5e1;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badges i {
    color: var(--color-whatsapp);
    width: 16px;
}

.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Layout: Footer
   ========================================================================== */
footer {
    background-color: #020617; /* Slate 950 */
    color: #94a3b8;
    padding: 4rem 0;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    height: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-col p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col i {
    width: 16px;
}

.footer-right {
    text-align: left;
}

@media (min-width: 768px) {
    .footer-right { text-align: right; }
    .footer-right p { justify-content: flex-end; }
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.footer-links a {
    transition: var(--transition);
}

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

.copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ==========================================================================
   Utilities & Animations
   ========================================================================== */
.hide-mobile {
    display: none;
}
@media (min-width: 768px) {
    .hide-mobile { display: flex; }
}

/* Intersection Observer Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utility: line breaks controlados por viewport */
.br-mobile { display: none; }
@media (max-width: 767px) {
    .br-mobile { display: block; }
}
.br-desktop { display: initial; }
@media (max-width: 767px) {
    .br-desktop { display: none; }
}

/* Stories carousel scroll hint (mobile only) */
.stories-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stories-hint i {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    animation: hint-slide 1.4s ease-in-out infinite;
}
@keyframes hint-slide {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
}

/* ==========================================================================
   Mobile Refinements (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {
    :root {
        --section-pad-y: 3rem;
    }

    .container { padding: 0 1.25rem; }

    /* Topbar */
    .topbar { height: 4.25rem; }
    .logo { height: 2.5rem; }
    .btn-topbar {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
        gap: 0.4rem;
    }

    /* Hero — frases mais respiráveis */
    .hero { min-height: auto; }
    .hero-content {
        padding-top: 3.25rem;
        padding-bottom: 5rem;
    }
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
        margin-bottom: 1.25rem;
        text-wrap: balance;
    }
    .hero-subheadline {
        font-size: 1.125rem;
        line-height: 1.45;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    .hero-desc {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
    .btn-note { font-size: 0.8125rem; }

    /* Numbers */
    .numbers { margin-top: -2.5rem; margin-bottom: 2.5rem; }
    .number-item { padding: 1.5rem 1rem; }
    .number-item h3 { font-size: 2.25rem; }
    .number-item p { font-size: 0.75rem; }

    /* Identification — checklist em blocos */
    .identification { padding: 3rem 0; }
    .split-layout { gap: 2.5rem; }
    .split-text > h2 {
        font-size: 1.625rem;
        line-height: 1.3;
        text-wrap: balance;
    }
    .section-desc {
        font-size: 1rem;
        margin: 1.25rem 0 1.75rem;
    }
    .checklist {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .checklist li {
        background: var(--color-surface-white);
        padding: 1rem 1.125rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--color-border);
        box-shadow: var(--shadow-sm);
        font-size: 0.9375rem;
        line-height: 1.45;
        margin-bottom: 0;
        gap: 0.875rem;
    }
    .check-icon-box { margin-top: 0.1rem; }
    .highlight-box { padding: 1.25rem; }
    .highlight-box p { font-size: 0.9375rem; }
    .image-placeholder { height: 380px; }
    .image-caption-overlay { padding: 1.5rem; }
    .image-caption-overlay span { font-size: 1.125rem; }
    .image-caption-overlay .caption-light { font-size: 0.9375rem; }

    /* Methodology */
    .methodology { padding: 3rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .methodology .section-header h2 {
        font-size: 1.625rem;
        line-height: 1.25;
        text-wrap: balance;
    }
    .section-sub { font-size: 1rem; line-height: 1.5; }
    .timeline-grid { gap: 1rem; }
    .timeline-step { padding: 1.5rem 1.25rem; }
    .step-icon { width: 56px; height: 56px; margin-bottom: 1rem; }
    .timeline-step h3 { font-size: 1.125rem; }
    .step-featured { transform: none; }

    /* Stories — carrossel horizontal com snap */
    .stories-section { padding: 3rem 0; }
    .stories-section .container { padding-right: 0; }
    .stories-section .section-header {
        margin-bottom: 2rem;
        padding-right: 1.25rem;
    }
    .stories-section .section-header h2 {
        font-size: 1.625rem;
        text-wrap: balance;
    }
    .stories-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0.875rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem 1.25rem 0.75rem 0;
        scroll-padding-left: 0;
    }
    .stories-grid::-webkit-scrollbar { display: none; }
    .stories-grid .story-card {
        flex: 0 0 78%;
        min-width: 78%;
        scroll-snap-align: start;
    }
    .stories-grid .story-card:last-child {
        margin-right: 0.5rem;
    }
    .stories-hint {
        display: flex;
        margin-right: 1.25rem;
    }

    /* Gallery */
    .gallery { padding: 3rem 0; }
    .gallery .section-header { margin-bottom: 1.5rem; }
    .gallery .section-header h2 { font-size: 1.625rem; }
    .gallery-item { height: 240px; }

    /* FAQ */
    .faq { padding: 3rem 0; }
    .faq .section-header { margin-bottom: 2rem; }
    .faq .section-header h2 { font-size: 1.625rem; }
    .faq-question {
        font-size: 0.9375rem;
        line-height: 1.4;
        padding: 1.125rem 1.125rem;
        gap: 1rem;
    }
    .faq-question i { flex-shrink: 0; }
    .faq-answer p {
        padding: 0 1.125rem 1.25rem 1.125rem;
        font-size: 0.9375rem;
    }

    /* Super CTA — corrigir aperto e botão */
    .super-cta { padding: 3rem 1rem; }
    .super-cta-card {
        padding: 2.5rem 1.25rem;
        border-radius: 1.25rem;
    }
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        text-wrap: balance;
        margin-bottom: 1rem;
    }
    .cta-content p {
        font-size: 0.9375rem;
        line-height: 1.55;
        margin-bottom: 2rem;
    }
    .super-cta .btn-large {
        font-size: 0.9375rem;
        padding: 1rem 1.25rem;
        width: 100%;
        max-width: 320px;
        gap: 0.6rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    .super-cta .btn-large i {
        font-size: 1.125rem;
        flex-shrink: 0;
    }
    .trust-badges {
        gap: 1rem 1.5rem;
        margin-top: 1.75rem;
    }
    .trust-badges span { font-size: 0.8125rem; }
    .mt-4 { margin-top: 1.75rem; }

    /* Footer */
    footer { padding: 3rem 0; }
    .footer-content { text-align: center; gap: 2rem; }
    .footer-col {
        text-align: center;
        min-width: 0 !important;
    }
    .footer-col h4 { font-size: 1rem; }
    .footer-col p {
        justify-content: center;
        font-size: 0.875rem;
    }
    .footer-logo { margin: 0 auto 1.25rem; height: 2.25rem; }
    .copyright { margin-top: 1.5rem !important; }
}

/* Telas extra pequenas */
@media (max-width: 360px) {
    .hero-text h1 { font-size: 1.75rem; }
    .hero-subheadline { font-size: 1rem; }
    .btn-topbar { font-size: 0.75rem; padding: 0.45rem 0.7rem; }
    .stories-grid .story-card { flex: 0 0 82%; min-width: 82%; }
}
