/* ===== OVERHAUL: Campaign-Style Design System ===== */

:root {
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Exo 2', sans-serif;
    --color-bg-dark: #0a0e1a;
    --color-bg-secondary: #0d1321;
    --color-text-white: #ffffff;
    --color-text-secondary: #94a3b8;
    --color-accent-blue: #0066ff;
    --color-accent-cyan: #00c2ff;
    --color-accent-green: #00d64f;
    --container-width: 1200px;
    --gradient-blue: linear-gradient(90deg, #0066ff 0%, #00c2ff 60%, #ffffff 100%);
    --gradient-button: linear-gradient(90deg, #0066ff 0%, #00c2ff 100%);
    --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.4), 0 0 40px rgba(0, 102, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: var(--font-secondary);
    overflow-x: clip;
    /* Vertical lines background + radial glows */
    background-image:
        repeating-linear-gradient(90deg, rgba(0, 102, 255, 0.04) 0px, rgba(0, 102, 255, 0.04) 1px, transparent 1px, transparent 50px),
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 194, 255, 0.05) 0%, transparent 40%);
    background-size: 50px 100%, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Grid 2-col only where explicitly needed */
.container.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Section-specific container overrides */
.section-transformation .container,
.section-details .container,
.section-program .container,
.section-comparison .container,
.section-speakers .container,
.section-timeline .container,
.section-testimonials .container,
.section-faq .container,
.section-final-cta .container {
    display: block;
}

.section-why-participate .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


/* ===== HERO 2026 LAYOUT ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem 1rem;
    overflow: hidden;
    max-width: 100vw;
}

/* Background Orbital SVG */
.hero-orbital-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vw;
    max-width: 1400px;
    max-height: 1400px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.orbital-rings {
    width: 100%;
    height: 100%;
    animation: spin 80s linear infinite;
    transform-origin: center;
}

.ring {
    fill: none;
    stroke-width: 1.5px;
    stroke-dasharray: 4 16;
}
.ring-grok { stroke: url(#ringGrad1); stroke-width: 1px; stroke-dasharray: 6 20; animation: dash-move 25s linear infinite; }
.ring-outer { stroke: url(#ringGrad1); animation: dash-move 30s linear infinite; }
.ring-middle { stroke: url(#ringGrad2); animation: dash-move 40s linear infinite reverse; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes dash-move { 100% { stroke-dashoffset: 200; } }

/* Hero Content */
.hero-2026-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.hero-content-central {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    width: 100%;
}

/* Badge Topo */
.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00c2ff;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d64f;
    box-shadow: 0 0 8px #00d64f;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 214, 79, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 214, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 214, 79, 0); }
}

/* Tipografia Hero */
.hero-title-2026 {
    font-family: var(--font-primary);
    font-size: 3.8rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin: 0;
}

/* br removido do HTML — texto flui naturalmente */

.hero-subtitle-2026 {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0;
}
.hero-subtitle-2026 strong {
    color: var(--color-text-white);
    font-weight: 600;
}

/* Hero Info Chips */
.hero-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 0;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.hero-chip svg {
    color: var(--color-accent-cyan);
    flex-shrink: 0;
}

/* Hero Lote Progress Bar */
.hero-lote-bar {
    width: 100%;
    max-width: 360px;
    margin: 0;
}

.hero-lote-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    text-align: center;
}

.hero-lote-container {
    width: 100%;
    background-color: rgba(0, 40, 80, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 32px;
    position: relative;
    overflow: hidden;
}

.hero-lote-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #0066ff, #00a3ff);
    border-radius: 50px;
    transition: width 2s ease-out;
}

.hero-lote-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-info-chips { gap: 0.4rem; }
    .hero-chip { font-size: 0.75rem; padding: 0.35rem 0.7rem; }
    .hero-lote-bar { max-width: 280px; }
}

/* ===== ORBITING TOOL ICONS (Wrapper Rotation) ===== */

/* The wrapper is an invisible square centered on the orbital bg. It spins. */
.orbit-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* The icon is positioned at a fixed pixel offset from center (= orbit radius) */
.orbit-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px; /* center on point */
    pointer-events: auto;
    z-index: 5;
}

/* The inner circle: white bg, glow border, counter-rotation keeps icon upright */
.orbit-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 2px solid rgba(0, 102, 255, 0.4);
    box-shadow:
        0 0 15px rgba(0, 102, 255, 0.3),
        0 0 40px rgba(0, 102, 255, 0.1),
        inset 0 0 10px rgba(0, 102, 255, 0.05);
    transition: box-shadow 0.3s ease;
}

.orbit-icon:hover .orbit-icon-inner {
    transform: scale(1.2);
    box-shadow:
        0 0 25px rgba(0, 102, 255, 0.5),
        0 0 60px rgba(0, 102, 255, 0.2),
        inset 0 0 15px rgba(0, 102, 255, 0.1);
}

.orbit-icon-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Orbit speed classes — the WRAPPER spins */
.orbit-speed-50    { animation: orbit-spin 50s linear infinite; }
.orbit-speed-65r   { animation: orbit-spin 65s linear infinite reverse; }
.orbit-speed-40    { animation: orbit-spin 40s linear infinite; }

/* Counter-rotation classes — the INNER counter-spins to keep icons upright */
.orbit-counter-50  { animation: orbit-spin 50s linear infinite reverse; }
.orbit-counter-65r { animation: orbit-spin 65s linear infinite; }
.orbit-counter-40  { animation: orbit-spin 40s linear infinite reverse; }

/* Orbital particles — small glowing dots on the rings */
.orbit-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: #00c2ff;
    box-shadow: 0 0 8px #00c2ff, 0 0 20px rgba(0, 194, 255, 0.4);
    pointer-events: none;
    z-index: 3;
    animation: particle-twinkle 3s ease-in-out infinite alternate;
}

.orbit-particle--dim {
    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;
    opacity: 0.5;
    background: #0066ff;
    box-shadow: 0 0 6px #0066ff, 0 0 15px rgba(0, 102, 255, 0.3);
    animation-delay: -1.5s;
}

@keyframes particle-twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Single keyframe used by both wrapper and counter-rotation */
@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Glow border pulse for orbit icons */
@keyframes glow-pulse-orbit {
    0%   { border-color: rgba(0, 102, 255, 0.3); box-shadow: 0 0 12px rgba(0, 102, 255, 0.2), 0 0 35px rgba(0, 102, 255, 0.08); }
    100% { border-color: rgba(0, 194, 255, 0.6); box-shadow: 0 0 20px rgba(0, 194, 255, 0.35), 0 0 50px rgba(0, 194, 255, 0.12); }
}

/* Mobile: reduce icon size and hide overflow */
@media (max-width: 768px) {
    .orbit-icon {
        width: 36px;
        height: 36px;
        margin: -18px 0 0 -18px;
    }
    .orbit-icon-inner {
        padding: 6px;
    }
}

/* WHY CARDS - Icon wrappers and text (used by section-why-participate) */
.why-card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* AUDIENCE SECTION FIXES */
.benefit-card {
    transition: all 0.3s ease;
    cursor: default;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--color-accent-blue) !important;
    transform: scale(1.02);
}

.benefit-icon i {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: rotate(10deg) scale(1.1);
}

/* SPEAKERS FIXES */
.speakers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 480px) {
    .speakers-list {
        grid-template-columns: 1fr;
    }
}

.role-icon i {
    color: var(--color-accent-blue);
    font-size: 1.2rem;
}

/* Instrutores Minimalistas */

.hero-instructors-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.instructor-glass-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 14, 26, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.instructor-glass-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.5);
}

.ins-info {
    text-align: right;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-white);
}

.ins-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

/* CTA Arrow */
.cta-button svg {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Overhauls Media Queries */
@media (max-width: 1024px) {
    .hero-title-2026 { font-size: 3rem; }
    .hero-subtitle-2026 { font-size: 1.15rem; }
}

@media (max-width: 768px) {
    .hero { padding: 3rem 1rem 2rem 1rem; min-height: auto; }
    .hero-title-2026 { font-size: 2.2rem; }
    .hero-subtitle-2026 { font-size: 1.05rem; }
    
    .hero-instructors-cards {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .instructor-glass-card {
        justify-content: space-between;
    }
    
    .ins-info { text-align: left; }
    
    .tools-badges-cluster { gap: 0.5rem; }
    .tool-badge { padding: 0.3rem 0.6rem 0.3rem 0.3rem; font-size: 0.8rem; }
    .tool-icon-img { width: 20px; height: 20px; }
    .cta-button { font-size: 1rem; padding: 1rem 1.5rem; }
}
.revolution-bg-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.15) 0%, rgba(0, 100, 200, 0.08) 30%, rgba(0, 56, 255, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.revolution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.revolution-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2; /* Above image */
}

/* BENTO BOX LAYOUT 2026 */
.bento-section {
    padding: 6rem 1rem;
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

.bento-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    z-index: 2;
    position: relative;
}

.bento-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bento-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-primary);
}

.bento-header p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
}

.bento-card {
    display: flex;
    flex-direction: column;
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.benefit-card-inner {
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
    position: relative;
}

.benefit-card-inner.vertical-inner {
    justify-content: center;
}

.benefit-card-inner h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bento-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.bento-footer p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Glass Badge Icon Style (re-used in Bento) */
.benefit-badge {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.02) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 14px;
    box-shadow: inset 0 0 10px rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-badge svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent-cyan);
    transition: all 0.3s ease;
}

.animated-border-card {
    position: relative;
    border-radius: 16px;
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 2px;
    transform: translateZ(0); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-border-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.15);
}

.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.border-svg rect {
    fill: none;
    stroke: rgba(0, 102, 255, 0.2);
    stroke-width: 2px;
    stroke-dasharray: 60 400;
    stroke-dashoffset: 0;
    transition: all 0.5s ease;
}

.animated-border-card:hover .border-svg rect {
    stroke: #00c2ff;
    stroke-width: 3px;
    stroke-dasharray: 200 100;
    animation: border-dance 3s linear infinite;
}

@keyframes border-dance {
    to { stroke-dashoffset: -500; }
}

.animated-border-card:hover .benefit-badge {
    background: rgba(0, 102, 255, 0.2);
    border-color: #00c2ff;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.4);
    transform: scale(1.05);
}

.animated-border-card:hover .benefit-badge svg {
    stroke: #fff;
    filter: drop-shadow(0 0 5px #fff);
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--color-text-white);
    margin: 0;
    padding-top: 0.2rem;
}

/* Responsividade Bento Box */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-tall { grid-row: span 1; }
    .bento-header h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-span-2 { grid-column: span 1; }
    .bento-header h2 { font-size: 2.2rem; }
    .bento-container { padding: 0 1rem; }
}

.revolution-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%; /* Full height of section */
    max-width: 100%; /* Remove 800px limit to allow full contain */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    pointer-events: none;
}

.revolution-notebook {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure it fits nicely */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    opacity: 0.6;
}

.revolution-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2; /* Above image */
}

/* Card Glass - Estilo Modernizado com Badge */
.card-glass {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 30, 60, 0.5) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.card-glass:hover::before {
    left: 100%;
}

.card-glass:hover {
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow:
        0 8px 30px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Badge do Card Glass */
.card-glass-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.08) 100%);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-glass-badge svg {
    width: 24px;
    height: 24px;
    stroke: #0066ff;
    filter: drop-shadow(0 0 5px rgba(0, 102, 255, 0.5));
    transition: stroke 0.3s ease, filter 0.3s ease;
}

.card-glass:hover .card-glass-badge {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.4) 0%, rgba(0, 102, 255, 0.15) 100%);
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.card-glass:hover .card-glass-badge svg {
    stroke: #fff;
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.8));
}

.card-glass-content h3 {
    font-size: 1rem;
    color: var(--color-accent-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 700;
}

.card-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .revolution-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .revolution-content {
        align-items: center;
        margin-bottom: 10rem; /* Space for image */
    }

    .revolution-image-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -8rem auto 2rem; /* Pull up into gap */
        width: 80%;
    }
}

/* Section - Transformation */
.section-transformation {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--color-bg-dark);
}

.transformation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-transformation h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-transformation p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Transformation Items - Estilo Modernizado */
.transformation-item {
    display: grid;
    grid-template-columns: 80px 280px 1fr;
    align-items: stretch;
    gap: 0;
    height: auto;
    min-height: 100px;
    position: relative;
}

.item-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff 0%, #00fff2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
    transition: filter 0.3s ease;
}

.transformation-item:hover .item-number {
    filter: drop-shadow(0 0 25px rgba(0, 102, 255, 0.6));
}

.item-title-box {
    background: #ffffff;
    color: #0a0e1a;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px 0 0 12px;
    margin-right: 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.item-title-box::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left-color: #ffffff;
}

.transformation-item:hover .item-title-box {
    background: #f0f7ff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.item-description-box {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 30, 60, 0.5) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.transformation-item:hover .item-description-box {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.8) 0%, rgba(0, 40, 80, 0.6) 100%);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
}

.item-description-box p {
    margin: 0;
    text-align: left;
    max-width: 100%;
    color: #e0e0e0;
}

@media (max-width: 900px) {
    .transformation-item {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        background: linear-gradient(135deg, rgba(0, 20, 40, 0.6) 0%, rgba(0, 30, 60, 0.4) 100%);
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid rgba(0, 102, 255, 0.2);
    }

    .item-number {
        justify-content: center;
        padding-right: 0;
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .item-title-box {
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .item-title-box::after {
        display: none;
    }

    .item-description-box {
        border: 1px solid rgba(0, 102, 255, 0.3);
        border-radius: 12px;
        text-align: center;
    }

    .item-description-box p {
        text-align: center;
    }
}

/* Section Why Participate */
.section-why-participate {
    position: relative;
    padding: 6rem 2rem;
    background: radial-gradient(circle at top left, #011829 0%, var(--color-bg-dark) 70%); /* Subtle blue shine */
    overflow: hidden;
}

.section-why-participate .container {
    align-items: flex-start; /* Align top for better layout */
}

.why-content {
    position: sticky;
    top: 50px; /* Sticky effect for left content */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.section-why-participate h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Why Cards - Layout coluna única */
.why-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 30, 60, 0.5) 100%);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.8) 0%, rgba(0, 40, 80, 0.6) 100%);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow:
        0 8px 30px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Badge do Why Card - Estilo Glass */
.why-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.08) 100%);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-icon {
    width: 26px;
    height: 26px;
    filter: invert(72%) sepia(66%) saturate(2253%) hue-rotate(164deg) brightness(101%) contrast(101%) drop-shadow(0 0 5px rgba(0, 102, 255,0.5));
    transition: filter 0.3s ease;
}

.why-card:hover .why-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.4) 0%, rgba(0, 102, 255, 0.15) 100%);
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.why-card:hover .why-icon {
    filter: invert(100%) brightness(100%) drop-shadow(0 0 8px rgba(0, 102, 255, 0.8));
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-card-header strong {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.why-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.why-card-text strong {
    display: block;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

@media (max-width: 1024px) {
    .section-why-participate .container {
        display: flex;
        flex-direction: column;
    }

    .why-content {
        position: static;
        margin-bottom: 3rem;
        align-items: center;
        text-align: center;
    }

    .section-why-participate .cta-button {
        align-self: center;
    }

    .why-cards {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .why-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Section 4 - Program */
.section-program {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--color-bg-dark);
}

/* Reset global container grid for this section */
.section-program .container {
    display: block;
}

.program-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-program h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Increased gap */
    margin-bottom: 4rem;
}

/* Program Card - Estilo Modernizado */
.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.6) 0%, rgba(0, 30, 60, 0.4) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    padding: 2rem 2rem 2rem 3.5rem;
    text-align: left;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: visible;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    border-color: rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.7) 0%, rgba(0, 40, 80, 0.5) 100%);
    box-shadow:
        0 15px 40px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Badge do Número - Estilo Glass */
.card-number {
    position: absolute;
    left: -18px;
    top: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 150, 200, 0.9) 100%);
    color: #030b12;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

.program-card:hover .card-number {
    box-shadow:
        0 6px 20px rgba(0, 102, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.card-content h3 {
    font-size: 1.15rem;
    color: var(--color-accent-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.program-card:hover .card-content h3 {
    color: #fff;
}

.card-content p {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.program-card:hover .card-content p {
    color: #e0e0e0;
}

/* Centered 7th item */
.program-card.card-centered {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.program-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .section-program h2 {
        font-size: 1.8rem;
    }

    .program-card.card-centered {
        width: 100%;
        max-width: 100%;
    }
}
/* Section 5 - Details & Schedule */
.section-details {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--color-bg-dark);
}

.section-details .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.details-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

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

/* Detail Cards - Estilo Modernizado */
.detail-card {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.6) 0%, rgba(0, 30, 60, 0.4) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-card:hover {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.7) 0%, rgba(0, 40, 80, 0.5) 100%);
    box-shadow:
        0 15px 40px rgba(0, 102, 255, 0.15),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.detail-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-accent-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.detail-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
    flex-shrink: 0;
}

.detail-card:hover h3 {
    color: #fff;
}

.detail-card p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.6;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.detail-card:hover p {
    color: #e0e0e0;
}

/* ========================================
   TIMELINE MODERNA - Cronograma
   ======================================== */

.schedule-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.schedule-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.schedule-header-modern h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.schedule-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #a0a0a0;
}

.schedule-divider {
    color: var(--color-accent-blue);
    margin: 0 0.5rem;
}

/* Timeline Container */
.timeline {
    position: relative;
    padding: 2rem 0;
}

/* Linha vertical central */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 102, 255, 0.3) 10%,
        rgba(0, 102, 255, 0.3) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Luz pulsante descendo pela linha */
.timeline-glow {
    position: absolute;
    left: 50%;
    top: -20%;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 102, 255, 0.8) 30%,
        #0066ff 50%,
        rgba(0, 102, 255, 0.8) 70%,
        transparent 100%
    );
    transform: translateX(-50%);
    border-radius: 4px;
    filter: blur(2px);
    box-shadow:
        0 0 20px rgba(0, 102, 255, 0.8),
        0 0 40px rgba(0, 102, 255, 0.4),
        0 0 60px rgba(0, 102, 255, 0.2);
    animation: timeline-pulse 3s ease-in-out infinite;
}

@keyframes timeline-pulse {
    0% {
        top: -10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Timeline Items */
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternância: itens ímpares à direita, pares à esquerda */
.timeline-item:nth-of-type(odd) {
    flex-direction: row;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-of-type(odd) .timeline-content {
    text-align: right;
    flex-direction: row-reverse;
}

.timeline-item:nth-of-type(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 30px);
}

.timeline-item:nth-of-type(even) .timeline-content {
    text-align: left;
}

/* Ponto na timeline */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 30, 60, 0.9) 100%);
    border: 2px solid rgba(0, 102, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-dot-inner {
    width: 8px;
    height: 8px;
    background: var(--color-accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.8);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.timeline-item:hover .timeline-dot {
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

/* Conteúdo do item */
.timeline-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.6) 0%, rgba(0, 30, 60, 0.4) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    flex: 1;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.7) 0%, rgba(0, 40, 80, 0.5) 100%);
    box-shadow: 0 5px 25px rgba(0, 102, 255, 0.15);
}

.timeline-time {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    min-width: 70px;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-time {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.timeline-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #c0c0c0;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-label {
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .schedule-container {
        padding: 2rem 1rem;
    }

    .schedule-header-modern h2 {
        font-size: 1.8rem;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-glow {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-of-type(odd),
    .timeline-item:nth-of-type(even) {
        flex-direction: row;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-of-type(odd) .timeline-content,
    .timeline-item:nth-of-type(even) .timeline-content {
        text-align: left;
        flex-direction: row;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .timeline-time {
        font-size: 1.1rem;
    }

    .timeline-label {
        font-size: 0.9rem;
    }
}

/* Section Comparison */
.section-comparison {
    padding: 6rem 2rem;
    background-color: var(--color-bg-dark);
}

/* Reset global container grid for this section */
.section-comparison .container,
.section-transformation .container {
    display: block !important;
    grid-template-columns: none !important;
    text-align: center;
}

.comparison-header-main {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-header-main h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
}

.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Row Styling */
.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 2rem;
    /* Ensure rows touch for continuous borders */
    margin-bottom: 0;
}

/* Feature Column */
.col-features {
    padding: 1.5rem 1rem 1.5rem 0;
    text-align: right;
    font-family: var(--font-primary);
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row.header .col-features {
    padding-top: 0;
    align-items: flex-end;
    font-size: 1.2rem;
    color: #aaaaaa;
    border-bottom: none;
    padding-bottom: 1rem;
}

/* Content Columns */
.col-positive, .col-negative {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    border-left: 2px solid;
    border-right: 2px solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Important: Fix borders */
    border-color: inherit;
}

.col-positive strong, .col-negative strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Green Column Styles */
.col-positive {
    border-color: var(--color-accent-green);
    /* margin-bottom to pull next row up? No, assume touching */
}

/* Red Column Styles */
.col-negative {
    border-color: #ff4d4d;
}

/* Header Cells (Top Caps) */
.comparison-row.header .col-positive {
    border-top: 2px solid var(--color-accent-green);
    border-radius: 12px 12px 0 0;
    background: linear-gradient(to bottom, rgba(0, 214, 79, 0.1), transparent);
    color: var(--color-accent-green);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

.comparison-row.header .col-negative {
    border-top: 2px solid #ff4d4d;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(to bottom, rgba(255, 77, 77, 0.1), transparent);
    color: #ff4d4d;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

/* Fix separators */
.col-positive::after, 
.col-negative::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; 
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Last Row (Bottom Caps) */
.comparison-row.last-row .col-positive {
    border-bottom: 2px solid var(--color-accent-green);
    border-radius: 0 0 12px 12px;
}

.comparison-row.last-row .col-negative {
    border-bottom: 2px solid #ff4d4d;
    border-radius: 0 0 12px 12px;
}

.comparison-row.last-row .col-positive::after,
.comparison-row.last-row .col-negative::after {
    display: none;
}

.comparison-row.last-row .col-features {
    border-bottom: none;
}

/* Adjustment to make borders touch perfectly */
/* Remove marginBottom from all rows */
.comparison-row {
    margin-bottom: 0;
}

/* Ensure backgrounds don't leak */
.col-positive, .col-negative {
    background-clip: padding-box;
}

/* Hide helper divs */
.col-border-top, .col-border-bottom {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .section-comparison {
        padding: 4rem 1rem;
    }
    
    .comparison-table {
        gap: 2rem;
    }
    
    .comparison-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1rem; /* Spacing between cards on mobile */
    }
    
    .comparison-row.header {
        display: none;
    }
    
    .col-features {
        text-align: left;
        padding: 0;
        border: none;
        font-size: 1.25rem;
        color: var(--color-accent-blue);
        margin-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .col-positive, .col-negative {
        border: 1px solid;
        border-radius: 8px;
        padding: 1.5rem;
        background: rgba(0,0,0,0.2);
    }
    
    /* Content hints for mobile context */
    .col-positive::before {
        content: "Com IA (método Inovajur)";
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--color-accent-green);
        letter-spacing: 0.5px;
    }

    .col-negative::before {
        content: "Método tradicional";
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #ff4d4d;
        letter-spacing: 0.5px;
    }
    
    .col-positive { border-color: var(--color-accent-green); }
    .col-negative { border-color: #ff4d4d; }
    
    .comparison-row.last-row .col-positive, 
    .comparison-row.last-row .col-negative {
        border-radius: 8px;
    }
    
    .col-positive::after, .col-negative::after {
        display: none;
    }
}

/* Section Final CTA - Futuristic Design */
.section-final-cta {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #030b12 0%, #001428 50%, #002244 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Animated Circuit SVG Background */
.circuit-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
}

.circuit-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: circuitDraw 8s ease-in-out infinite;
}

.circuit-path-1 { animation-delay: 0s; }
.circuit-path-2 { animation-delay: 1s; }
.circuit-path-3 { animation-delay: 2s; }
.circuit-path-4 { animation-delay: 0.5s; }
.circuit-path-5 { animation-delay: 1.5s; }
.circuit-path-6 { animation-delay: 2.5s; }

@keyframes circuitDraw {
    0% { stroke-dashoffset: 1000; opacity: 0.3; }
    50% { stroke-dashoffset: 0; opacity: 0.8; }
    100% { stroke-dashoffset: -1000; opacity: 0.3; }
}

.circuit-node {
    fill: var(--color-accent-blue);
    opacity: 0.6;
    animation: nodeGlow 3s ease-in-out infinite;
}

.circuit-node:nth-child(odd) { animation-delay: 0s; }
.circuit-node:nth-child(even) { animation-delay: 1.5s; }

@keyframes nodeGlow {
    0%, 100% { opacity: 0.3; r: 3; }
    50% { opacity: 1; r: 5; }
}

/* Animated pulses traveling on paths */
.pulse {
    fill: var(--color-accent-blue);
    opacity: 0;
}

.pulse-1 {
    animation: pulsePath1 6s ease-in-out infinite;
}

.pulse-2 {
    animation: pulsePath2 6s ease-in-out infinite 2s;
}

.pulse-3 {
    animation: pulsePath3 6s ease-in-out infinite 4s;
}

@keyframes pulsePath1 {
    0% { cx: 0; cy: 100; opacity: 0; }
    10% { opacity: 1; }
    50% { cx: 600; cy: 250; }
    90% { opacity: 1; }
    100% { cx: 1200; cy: 200; opacity: 0; }
}

@keyframes pulsePath2 {
    0% { cx: 0; cy: 400; opacity: 0; }
    10% { opacity: 1; }
    50% { cx: 550; cy: 350; }
    90% { opacity: 1; }
    100% { cx: 1200; cy: 400; opacity: 0; }
}

@keyframes pulsePath3 {
    0% { cx: 100; cy: 0; opacity: 0; }
    10% { opacity: 1; }
    50% { cx: 250; cy: 350; }
    90% { opacity: 1; }
    100% { cx: 100; cy: 800; opacity: 0; }
}

/* Floating particles */
.final-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.final-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-accent-blue);
    border-radius: 50%;
    animation: finalParticleFloat 10s ease-in-out infinite;
}

.final-particle:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.final-particle:nth-child(2) { left: 15%; top: 70%; animation-delay: 1.5s; }
.final-particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 3s; }
.final-particle:nth-child(4) { left: 50%; top: 15%; animation-delay: 0.5s; }
.final-particle:nth-child(5) { left: 70%; top: 60%; animation-delay: 2s; }
.final-particle:nth-child(6) { left: 85%; top: 30%; animation-delay: 4s; }
.final-particle:nth-child(7) { left: 95%; top: 80%; animation-delay: 1s; }
.final-particle:nth-child(8) { left: 40%; top: 85%; animation-delay: 2.5s; }

@keyframes finalParticleFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
    25% { transform: translateY(-30px) translateX(15px) scale(1.2); opacity: 0.8; }
    50% { transform: translateY(-15px) translateX(-10px) scale(0.8); opacity: 0.5; }
    75% { transform: translateY(-40px) translateX(20px) scale(1.1); opacity: 0.9; }
}

/* Central radial glow */
.final-radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: radialPulse 4s ease-in-out infinite;
}

@keyframes radialPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.section-final-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

/* Top Card - Futuristic Glass */
.final-cta-card {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-glow-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.5), rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% { background: linear-gradient(0deg, rgba(0, 102, 255, 0.6), transparent, rgba(0, 102, 255, 0.3)); }
    25% { background: linear-gradient(90deg, rgba(0, 102, 255, 0.6), transparent, rgba(0, 102, 255, 0.3)); }
    50% { background: linear-gradient(180deg, rgba(0, 102, 255, 0.6), transparent, rgba(0, 102, 255, 0.3)); }
    75% { background: linear-gradient(270deg, rgba(0, 102, 255, 0.6), transparent, rgba(0, 102, 255, 0.3)); }
    100% { background: linear-gradient(360deg, rgba(0, 102, 255, 0.6), transparent, rgba(0, 102, 255, 0.3)); }
}

.card-inner {
    background: linear-gradient(180deg, rgba(0, 40, 80, 0.9) 0%, rgba(0, 30, 60, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem 4rem;
    border-radius: 24px;
}

/* Urgency badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgba(255, 60, 60, 0.2), rgba(255, 100, 100, 0.1));
    border: 1px solid rgba(255, 100, 100, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.final-cta-card h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.final-cta-card p {
    font-size: 1.15rem;
    color: #c0c8d0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta-card strong {
    color: white;
}

/* CTA button with glow */
.cta-glow {
    position: relative;
    box-shadow: 0 0 30px rgba(0, 214, 79, 0.4), 0 4px 15px rgba(0, 214, 79, 0.3);
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 214, 79, 0.4), 0 4px 15px rgba(0, 214, 79, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 214, 79, 0.6), 0 4px 25px rgba(0, 214, 79, 0.5); }
}

/* Footer Area */
.final-cta-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.final-cta-footer h2 {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.final-cta-footer p {
    font-size: 1.15rem;
    color: #b0b8c0;
    max-width: 600px;
    line-height: 1.7;
}

/* Futuristic CTA Button */
.cta-button-future {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: white;
    overflow: hidden;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button-future .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00d64f 0%, #00b840 50%, #009933 100%);
    z-index: 0;
}

.cta-button-future .btn-text {
    position: relative;
    z-index: 2;
}

.cta-button-future .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-button-future:hover {
    transform: translateY(-3px) scale(1.02);
}

.cta-button-future::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00ff5a, #00d64f, #00ff5a);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button-future:hover::before {
    opacity: 1;
    animation: borderPulse 1s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Final Price Box */
.final-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.02) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    margin-top: 1rem;
}

.price-label {
    font-size: 0.95rem;
    color: #a0a8b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    display: flex;
    align-items: flex-start;
}

.price-value .currency {
    font-size: 1.5rem;
    margin-right: 0.25rem;
    margin-top: 0.5rem;
}

.price-value .cents {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.price-subtitle {
    font-size: 1rem;
    color: #c0c8d0;
}

/* Legacy support */
.final-price-text {
    font-size: 1.2rem;
    color: white;
}

@media (max-width: 768px) {
    .section-final-cta {
        padding: 4rem 1rem;
    }

    .circuit-bg {
        opacity: 0.2;
    }

    .final-particles {
        display: none;
    }

    .final-radial-glow {
        width: 400px;
        height: 400px;
    }

    .card-inner {
        padding: 2rem 1.5rem;
    }

    .final-cta-card h2,
    .final-cta-footer h2 {
        font-size: 1.8rem;
    }

    .cta-button-future {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .final-price-box {
        padding: 1rem 1.5rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-value .currency,
    .price-value .cents {
        font-size: 1.2rem;
    }

    .cta-button-orange {
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-radius: 16px;
        font-size: 1rem;
    }
}

/* Section 5 - Speakers - Futuristic Design */
.section-speakers {
    position: relative;
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at center top, #003366 0%, #001428 40%, #030b12 100%);
    overflow: hidden;
}

/* Reset global container grid for this section */
.section-speakers .container {
    display: block !important;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

/* Futuristic grid background */
.speakers-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

/* Floating particles */
.speakers-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.speaker-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: speakerParticleFloat 8s ease-in-out infinite;
}

.speaker-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.speaker-particle:nth-child(2) { left: 85%; top: 30%; animation-delay: 1.5s; }
.speaker-particle:nth-child(3) { left: 20%; top: 70%; animation-delay: 3s; }
.speaker-particle:nth-child(4) { left: 75%; top: 60%; animation-delay: 4.5s; }
.speaker-particle:nth-child(5) { left: 50%; top: 15%; animation-delay: 2s; }
.speaker-particle:nth-child(6) { left: 40%; top: 85%; animation-delay: 5.5s; }

@keyframes speakerParticleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.7; }
}

.speakers-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.divider-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 200;
    display: block;
}

.speakers-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    color: white;
}

.speakers-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 100%;
    margin: 0 auto;
}

.speakers-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Speaker Card - Futuristic Glass Effect */
.speaker-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.6) 0%, rgba(0, 20, 40, 0.4) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Hover transition separate to not conflict with AOS opacity/transform */
.speaker-card.aos-animate {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.5s ease,
                box-shadow 0.5s ease;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), transparent);
}

.speaker-card:hover {
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.speaker-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

/* Image Container with Futuristic Frame */
.speaker-img-container {
    position: relative;
    width: 280px;
    aspect-ratio: 371 / 550;
}

.speaker-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
}

/* Animated glow behind image */
.speaker-img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.speaker-card:hover .speaker-img-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Scan line effect */
.speaker-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.8), transparent);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.speaker-card:hover .speaker-scan-line {
    opacity: 1;
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Photo */
.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.speaker-card:hover .speaker-photo {
    transform: scale(1.05);
}

/* Holographic overlay */
.speaker-holo-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 102, 255, 0.03) 2px,
            rgba(0, 102, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-holo-overlay {
    opacity: 1;
}

/* Corner decorations */
.speaker-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent-blue);
    opacity: 0.6;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.speaker-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-radius: 16px 0 0 0; }
.speaker-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; border-radius: 0 16px 0 0; }
.speaker-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; border-radius: 0 0 0 16px; }
.speaker-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-radius: 0 0 16px 0; }

.speaker-card:hover .speaker-corner {
    opacity: 1;
    border-color: rgba(0, 102, 255, 1);
}

/* Speaker Info */
.speaker-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.speaker-info h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 700;
}

/* Role badge */
.speaker-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-accent-blue);
    font-weight: 500;
    margin: 0 auto;
}

.role-icon {
    width: 8px;
    height: 8px;
    background: var(--color-accent-blue);
    border-radius: 50%;
    animation: roleIconPulse 2s ease-in-out infinite;
}

@keyframes roleIconPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.speaker-info p {
    color: #c0c8d0;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
}

.text-bold {
    font-weight: 700;
    color: white;
}

/* Pricing / Info Box */
.pricing-info-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.info-icon {
    width: 28px;
    height: 28px;
    filter: invert(72%) sepia(66%) saturate(2253%) hue-rotate(164deg) brightness(101%) contrast(101%); /* Blue tint */
}

.price-box {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(0, 102, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(0, 214, 79, 0.15) 0%, transparent 50%),
        linear-gradient(160deg, #0a1628 0%, #0d2847 30%, #0a3a5c 60%, #072a45 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: white;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), transparent);
}

/* Progress Bar Styles */
.progress-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
}

.progress-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.progress-container {
    width: 100%;
    background-color: rgba(0, 40, 80, 0.6);
    border-radius: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 32px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #0066ff, #00a3ff);
    height: 100%;
    border-radius: 50px;
    width: 0%;
    transition: width 1.5s ease-out;
}

.progress-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.price-cta-button {
    background-color: #00d64f;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    width: 100%;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 214, 79, 0.4);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.price-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 214, 79, 0.6);
    background-color: #00e656;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #0b1a26;
    border: 1px solid var(--color-accent-blue);
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: white;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

.form-submit {
    width: 100%;
    background-color: var(--color-accent-blue);
    color: #030b12;
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

.form-submit:hover {
    background-color: #33dbff;
}

/* Lote Tag helper removed (replaced by progress) */
/* Initial Lote/Progress fix */
.lote-tag {
    display: none;
}

/* --- Form & Validation Styles --- */
.form-error {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

input.error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
}

/* intl-tel-input overrides for dark theme */
.iti {
    width: 100%;
}

.form-group .iti input[type="tel"] {
    padding: 0.8rem 1rem 0.8rem 0;
}

.iti__country-list {
    background: #0b1a26 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.iti__country:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti__search-input {
    background: #1f2937 !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Success Message */
.form-success h3 {
    font-family: var(--font-primary);
    font-weight: 700;
}


.price-value-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.invest-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.price-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
    opacity: 0.8;
}

.info-item-note {
    font-size: 0.75rem;
    color: #ffe066;
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

.info-item-highlight {
    color: var(--color-accent-cyan);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 90%;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .speakers-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .speaker-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .speaker-img-container {
        width: 220px;
    }

    .pricing-info-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .price-box {
        order: 0;
    }
}

@media (max-width: 768px) {
    .speakers-title {
        font-size: 2rem;
    }

    .speaker-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .speaker-img-container {
        width: 180px;
    }

    .speaker-info h3 {
        font-size: 1.5rem;
    }

    .speaker-info p {
        font-size: 0.9rem;
    }

    .speaker-role {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .speaker-corner {
        width: 15px;
        height: 15px;
    }

    .speakers-particles {
        display: none;
    }

    .pricing-info-container {
        padding: 1.5rem;
    }

    .price-number {
        font-size: 3rem;
    }
}

/* ========================================
   ENHANCED FEATURES - Improvements
   ======================================== */

/* Badge "Ao Vivo" piscando */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink-dot 1s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
    }
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Gradiente animado no botão CTA */
.cta-button {
    background: linear-gradient(90deg, #00d64f, #00a83e, #00d64f);
    background-size: 200% 100%;
    animation: shimmer-cta 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine-cta 3s ease-in-out infinite;
}

@keyframes shimmer-cta {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shine-cta {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Glow pulsante no card de preço */
.price-box {
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(0, 102, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(0, 102, 255, 0.4),
            0 0 40px rgba(0, 102, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* Hover effects melhorados nos cards - transition only after AOS animation completes */
.card-glass.aos-animate,
.why-card.aos-animate,
.program-card.aos-animate,
.detail-card.aos-animate {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.card-glass:hover,
.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.25);
    border-color: rgba(0, 102, 255, 0.6);
}

.detail-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

/* Speaker card hover animations are now defined in the speakers section */

/* Parallax effect placeholder - handled in JS */
.hero {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
}

/* ========================================
   FAQ Section with Accordion
   ======================================== */
.section-faq {
    padding: 6rem 2rem;
    background-color: var(--color-bg-dark);
}

.section-faq .container {
    display: block !important;
    max-width: 800px;
}

.faq-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Items - Estilo Modernizado */
.faq-item {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.5) 0%, rgba(0, 30, 60, 0.3) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.6) 0%, rgba(0, 40, 80, 0.4) 100%);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: transparent;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.05rem;
    color: white;
    transition: color 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

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

/* FAQ Icon - Badge Style */
.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-color: rgba(0, 102, 255, 0.5);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent-blue);
    transition: opacity 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
    padding-top: 0;
}

.faq-answer p {
    color: #c0c0c0;
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(0, 102, 255, 0.3);
}

/* ========================================
   Testimonials Marquee Carousel
   ======================================== */
.section-testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #011829 50%, var(--color-bg-dark) 100%);
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.testimonials-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.testimonial-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
}

.marquee-row {
    width: 100%;
    overflow: clip;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-marquee 80s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-left .marquee-content {
    animation-direction: normal;
}

.marquee-right .marquee-content {
    animation-direction: reverse;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.marquee-item img {
    height: 100px;
    width: auto;
    display: block;
    transition: transform 0.5s ease;
}

.marquee-item:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5), 0 0 60px rgba(0, 163, 255, 0.3);
    border-color: var(--color-accent-blue);
}

@media (max-width: 768px) {
    .testimonial-marquee-wrapper {
        gap: 1.5rem;
    }

    .marquee-item img {
        height: 80px;
    }

    .marquee-row {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .marquee-row::-webkit-scrollbar {
        display: none;
    }

    .marquee-content {
        animation: none !important;
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* ========================================
   Particles Effect (CSS only - subtle)
   ======================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 20s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 2.5s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 19s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 11s; }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.4;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* Apply particles to specific sections */
.section-revolution,
.section-why-participate {
    position: relative;
}

/* ========================================
   EFEITOS GLOBAIS E DECORAÇÕES
   ======================================== */

/* Glow Decoration para seções */
.section-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.section-glow-top-right {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.section-glow-bottom-left {
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Linha decorativa de brilho entre seções */
.section-divider-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.4), transparent);
}

/* Animação de fade-in para títulos */
.section-title-animated {
    position: relative;
    display: inline-block;
}

.section-title-animated::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-blue), rgba(0, 102, 255, 0.3));
    border-radius: 3px;
}

/* Efeito de grid de fundo para algumas seções */
.bg-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Estilo padronizado para highlight-blue — gradiente */
.highlight-blue {
    background: linear-gradient(135deg, #0066ff 0%, #00c2ff 60%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

/* Estilo padronizado para todos os títulos h2 de seções */
.section-benefits h2,
.section-revolution h2,
.section-transformation h2,
.section-why-participate h2,
.section-program h2,
.section-details .details-title,
.section-comparison h2,
.section-speakers .speakers-title,
.section-testimonials .testimonials-title,
.section-faq .faq-title,
.section-final-cta h2 {
    position: relative;
}

/* Efeito de texto com gradiente para títulos */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decoração de canto para cards */
.corner-decoration {
    position: relative;
}

.corner-decoration::before,
.corner-decoration::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    pointer-events: none;
}

.corner-decoration::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.corner-decoration::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Animação de pulso suave para elementos destacados */
@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Animação de brilho contínuo */
@keyframes continuous-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
    }
}

/* Linha de separação estilizada entre seções */
.section-separator {
    position: relative;
    height: 100px;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(0, 30, 60, 0.3) 50%, var(--color-bg-dark) 100%);
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-blue), transparent);
}

/* Efeito de vidro (glassmorphism) padronizado */
.glass-effect {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 30, 60, 0.5) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 102, 255, 0.25);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Botões com efeito de brilho no hover */
.cta-button,
.price-cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after,
.price-cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: left 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
    will-change: left;
}

.cta-button:hover::after,
.price-cta-button:hover::after {
    animation: button-shine 0.75s ease forwards;
}

@keyframes button-shine {
    0% {
        left: -100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Estilização padronizada para bordas com gradiente */
.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.5), rgba(0, 102, 255, 0.1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Content-visibility para seções below-fold - defer rendering */
.section-transformation,
.section-details,
.section-comparison,
.section-why-participate,
.section-speakers,
.section-testimonials,
.section-faq,
.section-final-cta {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* CSS Containment para isolar layout recalculations */
.section-transformation,
.section-details,
.section-comparison,
.section-why-participate,
.section-speakers,
.section-testimonials,
.section-faq,
.section-final-cta {
    contain: layout style;
}


/* STICKY SCROLLING 2026 */
.sticky-section {
    position: relative;
    padding: 4rem 1rem 8rem 1rem;
    min-height: 100vh;
}

.sticky-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.sticky-text-panel {
    position: sticky;
    top: 25vh; /* Fix at 25% height of viewport */
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.sticky-text-panel h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: var(--font-primary);
    margin: 0;
}

.sticky-text-panel p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.scrolling-cards-panel {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.scroll-card {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.scroll-card:hover {
    border-color: rgba(0, 102, 255, 0.6);
    transform: translateX(-15px) scale(1.02);
    box-shadow: -10px 15px 50px rgba(0, 102, 255, 0.15);
}

.stat-big {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.3));
}

.scroll-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.sticky-footer {
    position: relative;
    z-index: 3;
    margin-top: 5rem;
    text-align: center;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-txt {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
}

.footer-txt strong {
    color: #0a0e1a;
}

.footer-h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    color: #0a0e1a;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    text-shadow: none;
}

@media (max-width: 992px) {
    .sticky-container {
        flex-direction: column;
        gap: 3rem;
    }
    .sticky-text-panel {
        position: relative;
        top: 0;
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .sticky-text-panel h2 { font-size: 3rem; }
    .scrolling-cards-panel {
        width: 100%;
        gap: 2rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .scroll-card { padding: 2.5rem; }
    .stat-big { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .scroll-card { padding: 1.5rem; }
    .stat-big { font-size: 2.8rem; }
    .sticky-text-panel h2 { font-size: 2.3rem; }
    .footer-h3 { font-size: 1.35rem; }
    .footer-txt { font-size: 1rem; }
    .sticky-footer { padding: 2rem 1.5rem; }
}

/* ACCORDION 2026 */
.interactive-accordion-section {
    padding: 6rem 1rem;
    position: relative;
    background: radial-gradient(circle at 0% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 60%);
}

.accordion-container {
    max-width: 900px;
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accordion-item {
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-item[open] {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(0, 20, 50, 0.6) 100%);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none; /* remove default arrow */
    position: relative;
    user-select: none;
}
.accordion-header::-webkit-details-marker {
    display: none;
}

.acc-num {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s ease;
    line-height: 1;
}

.accordion-item[open] .acc-num,
.accordion-header:hover .acc-num {
    color: var(--color-accent-blue);
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.acc-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    flex: 1;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.accordion-item[open] .acc-title {
    color: #fff;
}

.acc-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent-blue);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item[open] .acc-icon {
    transform: rotate(180deg);
    color: var(--color-accent-cyan);
}

.accordion-content {
    padding: 0 2rem 2rem 4.5rem; /* Indented text aligned with the title */
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    animation: accordion-slide-down 0.4s ease-out;
}

@keyframes accordion-slide-down {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .accordion-header { padding: 1.25rem 1rem; gap: 1rem; }
    .accordion-content { padding: 0 1rem 1.5rem 1rem; }
    .acc-num { font-size: 1.4rem; }
    .acc-title { font-size: 1.15rem; }
}

/* Fix: Accordion icon SVG dimensions */
.acc-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
}

/* Fix: Instructor images constraints */
.ins-img {
    max-width: 80px;
    max-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

/* Fix: Hero container must not inherit generic .container styles */
.hero .container {
    display: flex;
    justify-content: center;
    max-width: 900px;
    padding: 0;
}

/* Fix: Bento container override */
.bento-container {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 1rem !important;
}

/* Fix: Sticky container override */
.sticky-container {
    display: flex !important;
    gap: 6rem !important;
    align-items: flex-start !important;
    padding: 0 2rem !important;
}

/* Fix: All SVGs inside cards must be constrained */
.benefit-card-inner svg,
.bento-card svg:not(.border-svg) {
    max-width: 28px;
    max-height: 28px;
}

/* Fix: CTA button SVG must not grow */
.cta-button svg {
    max-width: 20px !important;
    max-height: 20px !important;
    width: 20px !important;
    height: 20px !important;
}

/* Acessibilidade: desabilitar animações para usuários que preferem reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle,
    .speaker-particle,
    .final-particle,
    .circuit-path,
    .circuit-node,
    .pulse {
        animation: none !important;
    }

    .marquee-content {
        animation: none !important;
    }
}

/* ========================================
   SECTION DETAILS - CONTROLE DO TEMPO
   ======================================== */

.section-details--tempo {
    padding: 4rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 102, 255, 0.05));
}

.section-details__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-details__header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.section-details__header p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-top: 1rem;
}

.details-grid--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Segunda linha (cards 4 e 5): centralizar */
.detail-card--centered-row {
    /* Nada extra necessário, o grid centraliza via justify abaixo */
}

/* Centralizar a segunda linha de 2 cards no grid de 3 */
.details-grid--3col .detail-card--centered-row:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
}

/* Hack: usar um wrapper ou rearranjar. Melhor: usar subgrid ou offset */
/* Na verdade, vamos centralizar os 2 últimos com offset */
.details-grid--3col {
    justify-items: center;
}

.details-grid--3col .detail-card--centered-row:nth-child(4) {
    grid-column: 1 / 3;
    justify-self: end;
    max-width: calc(100% - 0.75rem);
}

.details-grid--3col .detail-card--centered-row:nth-child(5) {
    grid-column: 2 / 4;
    justify-self: start;
    max-width: calc(100% - 0.75rem);
}

.detail-card--topped {
    padding: 2rem;
    border-top: 3px solid var(--color-accent-blue);
    width: 100%;
}

.detail-card--topped p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #fff;
    padding-left: 0;
}

.detail-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.detail-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-cyan);
}

@media (max-width: 768px) {
    .details-grid--3col {
        grid-template-columns: 1fr;
    }
    .details-grid--3col .detail-card--centered-row:nth-child(4),
    .details-grid--3col .detail-card--centered-row:nth-child(5) {
        grid-column: auto;
        justify-self: auto;
        max-width: 100%;
        margin: 0;
    }
}

/* ========================================
   SECTION AUDIENCE - PÚBLICO-ALVO
   ======================================== */

.section-audience {
    padding: 6rem 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.section-audience .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.audience-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.audience-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.audience-intro {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.audience-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
    min-width: 0;
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-blue);
    transform: scale(1.02);
}

.audience-icon {
    font-size: 1.6rem;
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: rotate(10deg) scale(1.1);
}

.audience-label {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.audience-label p {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.audience-label small {
    display: block;
    font-size: 0.8rem;
    color: #b0bec5;
    font-weight: 400;
    margin-top: 0.15rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .audience-cards {
        grid-template-columns: 1fr;
    }

    .audience-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   SECTION PRICING
   ======================================== */

.section-pricing {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

.section-pricing .container {
    display: block;
}

.price-box-title {
    text-align: center;
    margin-bottom: 1rem;
}

.price-avista {
    font-size: 0.5em;
}

/* Event logo in hero */
.hero-event-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .hero-event-logo {
        max-width: 200px;
    }
}

/* Event logo in pricing card */
.pricing-event-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

/* ========================================
   SECTION SCHEDULE
   ======================================== */

.section-schedule {
    padding: 6rem 0;
    background: linear-gradient(to top, transparent, rgba(0, 102, 255, 0.05));
}

/* ========================================
   PRICING CARD
   ======================================== */

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 1rem;
}

/* ========================================
   SEÇÃO FINAL CTA — FUNDO BRANCO
   ======================================== */

.section-final-cta--white {
    background: #ffffff;
    padding: 6rem 2rem;
}

.final-cta-card--white {
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
}

.card-inner--white {
    background: #ffffff;
    padding: 3rem 4rem;
    border-radius: 24px;
    text-align: center;
}

.card-inner--white h2 {
    color: #0a0e1a;
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.urgency-badge--dark {
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #0066ff;
}

.urgency-badge--dark .urgency-dot {
    background: #0066ff;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .card-inner--white {
        padding: 2rem 1.5rem;
    }
    .card-inner--white h2 {
        font-size: 1.8rem;
    }
    .section-final-cta--white {
        padding: 4rem 1rem;
    }
}

/* Transformation callout */
.transformation-callout {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.transformation-callout p {
    font-size: 1.1rem;
    color: #00d64f;
    font-weight: 600;
}

/* Section CTA spacing */
.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Program subtitle */
.program-subtitle {
    margin-top: 1rem;
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer text spacing */
.footer-txt {
    margin-bottom: 1.5rem;
}

/* ========================================
   GEMINI + NOTEBOOKLM CARD STACK
   ======================================== */

.why-card-icon-stack {
    display: flex;
    flex-shrink: 0;
    position: relative;
    width: 90px;
    height: 60px;
}

.why-card-icon-stack .why-card-icon-wrapper {
    position: absolute;
    top: 0;
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.why-card-icon-stack .card-tilt-left {
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.why-card-icon-stack .card-tilt-right {
    left: 30px;
    transform: rotate(8deg);
    z-index: 2;
}

.why-card:hover .card-tilt-left {
    transform: rotate(-12deg) translateX(-4px);
}

.why-card:hover .card-tilt-right {
    transform: rotate(12deg) translateX(4px);
}

/* ========================================
   BENTO CARD HIGHLIGHT (6o card de destaque)
   ======================================== */

.bento-card--highlight {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card--highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.benefit-card-inner--highlight {
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-card-inner--highlight h3 {
    color: #0a0e1a;
    font-size: 1.15rem;
}

.benefit-card-inner--highlight .benefit-text {
    font-size: 1.1rem;
    color: #0a0e1a;
}

.benefit-card-inner--highlight .benefit-text strong {
    background: linear-gradient(135deg, #0066ff 0%, #00c2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-badge--highlight {
    background: linear-gradient(135deg, #0066ff 0%, #00c2ff 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.benefit-badge--highlight svg {
    stroke: #fff;
}

/* Depoimentos ratio fix handled in marquee-item block above */

/* ========================================
   COMPARATIVO: ESPAÇAMENTO CTA
   ======================================== */

.section-comparison .section-cta {
    margin-top: 3rem;
}
