/* ==========================================================================
   CSS Variables & Base Reset
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #101010;
    --color-bg-darker: #080808;
    --color-bg-surface: #181818;
    --color-bg-surface-light: #222222;

    --color-text-primary: #FFFFFF;
    --color-text-secondary: #C8C8C8;
    --color-text-muted: #888888;

    /* Brand Accent */
    --color-accent-primary: #2F9E8A;
    /* Teal verde */
    --color-accent-primary-hover: #38BCA8;
    /* +15% luminosidade */
    --color-accent-secondary: #2BD8E3;
    /* Cyan */
    --color-accent-primary-transparent: rgba(47, 158, 138, 0.12);

    --color-danger: #EF4444;
    --color-error: #EF4444;
    --color-success: #2F9E8A;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;

    /* Effects */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease-out;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    --glow-shadow-primary: 0 0 24px rgba(47, 158, 138, 0.35);
    --glow-shadow-primary-heavy: 0 0 48px rgba(47, 158, 138, 0.55);
    --glow-shadow-sm: 0 0 12px rgba(47, 158, 138, 0.25);
}


/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.02em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

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

.text-light {
    color: #FFFFFF;
}

.mb-5 {
    margin-bottom: 3rem;
}

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

.w-100 {
    width: 100%;
}

.highlight-primary {
    color: var(--color-accent-primary-hover);
    /* A bit brighter on dark bg */
}

.glow-shadow {
    box-shadow: var(--glow-shadow-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.4s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background-color: var(--color-accent-primary);
    color: var(--color-text-primary);
    font-weight: 800;
}

.btn-primary:hover {
    background-color: var(--color-accent-primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow-primary);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(47, 158, 138, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 8px 32px rgba(47, 158, 138, 0.65);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-accent-primary);
    color: var(--color-accent-primary);
}

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

.btn-lg {
    padding: 1.35rem 3rem;
    font-size: 1.25rem;
}

/* ==========================================================================
   Animations (Reveal)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

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

@keyframes floatGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(43, 216, 227, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(47, 158, 138, 0.4);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Sections Layout
   ========================================================================== */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.dark-section {
    background-color: var(--color-bg-darker);
}

.bg-pattern {
    background-image:
        radial-gradient(ellipse at 15% 50%, rgba(43, 216, 227, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(47, 158, 138, 0.15) 0%, transparent 45%),
        linear-gradient(160deg, rgba(5, 14, 40, 0.94) 0%, rgba(4, 10, 28, 0.97) 100%),
        url('../Images/bg-secao.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(47, 158, 138, 0.6), rgba(47, 158, 138, 0.4), transparent);
}

.transformation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(47, 158, 138, 0.3), transparent);
}

/* ==========================================================================
   Glassmorphism Utilities
   ========================================================================== */
.glass-panel {
    background: rgba(24, 24, 24, 0.65) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45) !important;
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.glass-panel:hover {
    border-color: rgba(47, 158, 138, 0.18) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(47, 158, 138, 0.1) !important;
}

.glass-panel-light {
    background: rgba(47, 158, 138, 0.08) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(47, 158, 138, 0.22) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(47, 158, 138, 0.12) !important;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* Push content to bottom */
    padding-bottom: 4rem;
    position: relative;
    padding-top: 5rem;
    background-color: var(--color-bg-darker);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--color-bg-darker) 10%, rgba(8, 8, 8, 0.7) 40%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(43, 216, 227, 0.3) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(5, 5, 5, 0.5) 0%, rgba(10, 10, 10, 1) 100%),
        url('../Images/bg-hero.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-speakers-bg {
    position: absolute;
    top: 8rem;
    /* Locked in place below the nav */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.hero-speakers-bg img {
    width: 100%;
    height: auto;
    object-position: bottom;
    opacity: 0.9;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Extending gradient higher up to improve text readability */
    /* background: linear-gradient(to top, var(--color-bg-darker) 10%, rgba(5, 14, 29, 0.8) 40%, transparent 100%); */
}

/* Top Nav Pill */
.hero-top-nav-wrapper {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background: rgba(16, 16, 16, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(47, 158, 138, 0.12);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-logo img {
    height: 44px;
    object-fit: contain;
}

.nav-text {
    font-size: 0.85rem;
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
}

.nav-text strong {
    color: #FFF;
}

.btn-nav {
    background-color: var(--color-accent-primary);
    color: var(--color-text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-nav:hover {
    background-color: var(--color-accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow-primary);
}

/* Centered Content */
.hero-content-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    /* max-width: 1000px; */
    margin-top: 400px;
    /* Pushes to bottom of flex container */
    padding: 0 var(--space-md);
}

.badge-centered {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    background: rgba(47, 158, 138, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(47, 158, 138, 0.25);
    color: var(--color-text-primary);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.headline-centered {
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 0 60px rgba(47, 158, 138, 0.08);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.08;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.headline-centered .highlight-primary {
    color: var(--color-accent-primary-hover);
}

.subheadline-centered {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.hero-tags-centered {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.hero-tags-centered .divider {
    opacity: 0.3;
}

/* Ticker Marquee */
.hero-ticker-wrapper {
    /* position: absolute; */
    /* bottom: 1rem; */
    margin-top: -150px;
    left: -5%;
    width: 110%;
    background: rgba(10, 10, 10, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
    transform: rotate(-3deg);
    z-index: 3;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.hero-ticker span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFF;
    padding: 0 2rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   2. IDENTIFICAÇÃO
   ========================================================================== */
.identification {
    position: relative;
    background-image:
        radial-gradient(ellipse at 80% 50%, rgba(43, 216, 227, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 20%, rgba(47, 158, 138, 0.12) 0%, transparent 40%),
        linear-gradient(160deg, rgba(5, 14, 40, 0.95) 0%, rgba(4, 10, 28, 0.97) 100%),
        url('../Images/bg-secao.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.identification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(47, 158, 138, 0.5), rgba(47, 158, 138, 0.3), transparent);
}

.id-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* Pain Grid - 3 column */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem !important;
    text-align: left;
    border-left: 3px solid rgba(47, 158, 138, 0.5) !important;
    transition: var(--transition-base);
}

.pain-item:hover {
    border-left-color: #2F9E8A !important;
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.pain-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.pain-item p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Question Callouts Row */
.id-questions-row {
    display: flex;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.question-callout {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(43, 216, 227, 0.15) 0%, rgba(47, 158, 138, 0.08) 100%);
    border: 1px solid rgba(47, 158, 138, 0.25);
    border-radius: 10px;
    text-align: left;
}

.question-callout p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #FFF;
    margin: 0;
    line-height: 1.4;
}

.question-arrow {
    font-size: 1.5rem;
    color: var(--color-accent-primary-hover);
    flex-shrink: 0;
    font-weight: 900;
}

/* Reframe Card */
.id-reframe {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
    padding: 1.75rem 2rem !important;
    text-align: left;
    border-left: 4px solid var(--color-accent-primary) !important;
    background: var(--color-accent-primary-transparent) !important;
}

.reframe-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.id-reframe strong {
    color: var(--color-accent-primary-hover);
}

.id-reframe div {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .id-questions-row {
        flex-direction: column;
    }

    .id-reframe {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   3. BLOQUEIO
   ========================================================================== */
.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.block-item {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.block-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(239, 68, 68, 0.3);
}

.block-icon-x {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--color-danger);
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}

/* VS Comparison */
.vs-comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.vs-col {
    flex: 1;
    padding: 2.5rem 2rem;
    text-align: left;
}

.vs-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.vs-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.vs-icon-bad {
    background: rgba(239, 68, 68, 0.15);
    color: #2F9E8A;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.vs-icon-good {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.vs-col-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

.vs-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-col ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vs-col ul li:last-child {
    border-bottom: none;
}

.vs-bad ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #2F9E8A;
    font-weight: 700;
}

.vs-good ul li {
    color: var(--color-text-primary);
}

.vs-good ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.vs-good {
    background: linear-gradient(135deg, rgba(43, 216, 227, 0.2) 0%, rgba(47, 158, 138, 0.08) 100%);
    border-left: 3px solid var(--color-accent-primary) !important;
}

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
    background: var(--color-bg-darker);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* Bridge card */
.blocks-bridge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem !important;
    text-align: left;
    border-left: 4px solid var(--color-accent-primary) !important;
}

.blocks-bridge span {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.blocks-bridge p {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.6;
}

.blocks-bridge strong {
    color: var(--color-accent-primary-hover);
}

/* Danger highlight */
.highlight-danger {
    color: var(--color-danger);
}


/* ==========================================================================
   4. VIRADA / 12. CTA
   ========================================================================== */
.lead-text {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.brand-text {
    font-size: 1.125rem;
    color: var(--color-accent-primary-hover);
    margin-bottom: 2rem;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(47, 158, 138, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(43, 216, 227, 0.18) 0%, transparent 50%),
        linear-gradient(160deg, rgba(4, 10, 28, 0.97) 0%, rgba(5, 14, 40, 0.96) 100%),
        url('../Images/bg-secao.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.final-cta-body {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 520px;
}

.final-cta-body strong {
    color: #FFF;
}

/* Urgency signals */
.urgency-signals {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
}

.urgency-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.urgency-signal span {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.urgency-signal p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 500;
}

/* CTA Card */
.final-cta-card {
    padding: 2.5rem 2rem !important;
    text-align: center;
    border-radius: 16px !important;
}

.final-cta-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.final-cta-price {
    margin-bottom: 1.75rem;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.price-highlight {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.price-highlight strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFF;
}

.price-cash-note {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.final-cta-guarantee {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
}

@media (max-width: 900px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Virada Pillars */
.virada-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.virada-pillar {
    padding: 2rem 1.5rem !important;
    text-align: center;
    transition: var(--transition-base);
}

.virada-pillar:hover {
    transform: translateY(-6px);
}

.virada-pillar-featured {
    border-color: rgba(47, 158, 138, 0.4) !important;
    background: linear-gradient(160deg, rgba(43, 216, 227, 0.2) 0%, rgba(47, 158, 138, 0.08) 100%) !important;
    box-shadow: 0 0 30px rgba(47, 158, 138, 0.15) !important;
    transform: scale(1.04);
}

.virada-pillar-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pillar-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 1rem;
}

.virada-pillar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.75rem;
}

.virada-pillar p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Virada Quote */
.virada-quote {
    padding: 2.5rem 3rem !important;
    border-left: 4px solid var(--color-accent-primary) !important;
    background: rgba(43, 216, 227, 0.08) !important;
    text-align: center;
    position: relative;
}

.virada-quote p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin: 0;
}

.quote-mark {
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.5rem;
    color: var(--color-accent-primary-hover);
    font-family: Georgia, serif;
    opacity: 0.6;
    margin: 0 0.25rem;
}

@media (max-width: 768px) {
    .virada-pillars {
        grid-template-columns: 1fr;
    }

    .virada-pillar-featured {
        transform: scale(1);
    }
}


/* ==========================================================================
   5. ABOUT THE EVENT
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.rounded {
    border-radius: 8px;
}

/* Seat Legend */
.seat-legend {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.seat-tier {
    padding: 1.5rem !important;
}

.seat-tier-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.seat-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.seat-dot-vip {
    background: #e53e3e;
    box-shadow: 0 0 10px rgba(229, 62, 62, 0.5);
}

.seat-dot-exec {
    background: #58A8BB;
    box-shadow: 0 0 10px rgba(88, 168, 187, 0.5);
}

.seat-tier-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

.seat-badge-vip,
.seat-badge-exec {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.seat-badge-vip {
    background: rgba(229, 62, 62, 0.15);
    color: #fc8181;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.seat-badge-exec {
    background: rgba(88, 168, 187, 0.12);
    color: #58A8BB;
    border: 1px solid rgba(88, 168, 187, 0.28);
}

.seat-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seat-tier ul li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.seat-tier ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-primary-hover);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ==========================================================================
   EXPERIÊNCIA IMERSIVA - BENTO GRID
   ========================================================================== */
.experience-immersive {
    background-color: var(--color-bg-darker);
    padding: 6rem 0;
}

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

.bento-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(47, 158, 138, 0.15);
    min-height: 240px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Text Cards */
.bento-text-card {
    background: linear-gradient(145deg, #0d8a8a 0%, #0a6e6e 50%, #085858 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-text-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.bento-text-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Image Cards */
.bento-img {
    position: relative;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-img:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .bento-item {
        min-height: 180px;
    }

    .bento-text-card {
        padding: 1.5rem;
    }

    .bento-text-card h3 {
        font-size: 1.1rem;
    }
}

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

/* ==========================================================================
   EVENT VIDEO SECTION
   ========================================================================== */
.event-video {
    position: relative;
    padding: 6rem 0 7rem;
    background-color: var(--color-bg-darker);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(47, 158, 138, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 100%, rgba(47, 158, 138, 0.1) 0%, transparent 45%);
    overflow: hidden;
}

.event-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(47, 158, 138, 0.7), rgba(47, 158, 138, 0.5), transparent);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(47, 158, 138, 0.25),
        0 0 40px rgba(47, 158, 138, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(47, 158, 138, 0.4),
        0 0 60px rgba(47, 158, 138, 0.25),
        0 40px 90px rgba(0, 0, 0, 0.65);
}

.event-video-player {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 99998 !important;
    /* This prevents clicking on the YouTube iframe */
    cursor: default;
}

.custom-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 99999 !important; /* Force above the overlay and Plyr */
    background: rgba(4, 10, 28, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.custom-mute-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

/* ==========================================================================
   6. SPEAKERS
   ==========================================================================*/
/* Credential bar */
.speakers-credbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 3rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    width: fit-content;
}

.credbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.credbar-item strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-primary-hover);
    line-height: 1;
}

.credbar-item span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.credbar-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Speaker Grid */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Speaker Card — Poster Style */
.speaker-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    background: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.speaker-card:hover {
    border-color: rgba(47, 158, 138, 0.22);
    box-shadow: 0 0 24px rgba(47, 158, 138, 0.12);
}

.speaker-card:hover .speaker-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.75) 55%,
            rgba(5, 14, 40, 0.3) 100%);
}

.speaker-card:hover .lecture-title {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.5rem;
}

.speaker-card:hover .speaker-img {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(1.05);
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            transparent 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.4s ease;
}

.speaker-overlay h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    line-height: 1.3;
}

.lecture-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.3s ease;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Speaker tag badges */
.speaker-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
    background: rgba(234, 179, 8, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(234, 179, 8, 0.4);
    width: fit-content;
}

.speaker-tag-blue {
    background: rgba(47, 158, 138, 0.2);
    color: var(--color-accent-primary);
    border-color: rgba(47, 158, 138, 0.35);
}

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

@media (max-width: 580px) {
    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .speakers-credbar {
        gap: 1.5rem;
        padding: 0.85rem 1.25rem;
        border-radius: 12px;
    }

    .credbar-divider {
        width: 1px;
        height: 30px;
    }
}

/* ==========================================================================
   7. TIMELINE (SCHEDULE)
   ========================================================================== */
/* Day info bar */
.schedule-daybar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.25rem 2.5rem !important;
    margin: 0 auto 3rem;
    width: fit-content;
    border-radius: 14px !important;
}

.daybar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.daybar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.daybar-item div {
    display: flex;
    flex-direction: column;
}

.daybar-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
}

.daybar-item span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.daybar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Timeline Premium */
.timeline-premium {
    position: relative;
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: left;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(47, 158, 138, 0.6), rgba(47, 158, 138, 0.1));
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 20px 1fr;
    gap: 0 1rem;
    align-items: flex-start;
    padding: 0 0 1.5rem 0;
}

.tl-time {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-primary-hover);
    text-align: right;
    padding-top: 1rem;
    line-height: 1.3;
}

.tl-time span {
    color: var(--color-text-muted);
    font-weight: 500;
}

.tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-text-muted);
    margin-top: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition-base);
    z-index: 1;
    position: relative;
}

.tl-dot-accent {
    border-color: var(--color-accent-primary);
    background: var(--color-accent-primary);
    box-shadow: 0 0 8px rgba(47, 158, 138, 0.5);
}

.tl-dot-muted {
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-item:hover .tl-dot {
    box-shadow: 0 0 14px rgba(47, 158, 138, 0.6);
    border-color: var(--color-accent-primary-hover);
}

.timeline-content {
    padding: 1rem 1.25rem !important;
    border-radius: 10px !important;
    border-left: 3px solid transparent !important;
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-content {
    border-left-color: var(--color-accent-primary) !important;
    transform: translateX(6px);
}

.timeline-content h4 {
    color: #FFF;
    font-size: 1rem;
    margin: 0.35rem 0 0.35rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.tl-featured .timeline-content {
    border-color: rgba(234, 179, 8, 0.3) !important;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.08);
}

/* Timeline type badges */
.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-pill);
    border: 1px solid;
}

.tl-badge-accent {
    background: rgba(47, 158, 138, 0.1);
    color: var(--color-accent-primary);
    border-color: rgba(47, 158, 138, 0.28);
}

.tl-badge-blue {
    background: rgba(47, 158, 138, 0.08);
    color: var(--color-accent-primary-hover);
    border-color: rgba(47, 158, 138, 0.22);
}

.tl-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
}

.tl-badge-gold {
    background: rgba(234, 179, 8, 0.12);
    color: #fbbf24;
    border-color: rgba(234, 179, 8, 0.3);
}

.tl-badge-purple {
    background: rgba(168, 85, 247, 0.12);
    color: #d8b4fe;
    border-color: rgba(168, 85, 247, 0.3);
}

.tl-badge-muted {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Schedule CTA */
.schedule-cta {
    text-align: center;
    padding-top: 1rem;
}

.schedule-cta p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ==========================================================================
   8. TRANSFORMATION
   ========================================================================== */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.ba-card {
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.ba-card.before {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-card.after {
    background: rgba(43, 216, 227, 0.05);
    /* Blue subtle bg */
    border: 1px solid rgba(47, 158, 138, 0.3);
    position: relative;
}

.ba-card.after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 30px rgba(47, 158, 138, 0.1);
    pointer-events: none;
    border-radius: 12px;
}

.ba-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.ba-card.after h3 {
    color: var(--color-accent-primary-hover);
}

.ba-card ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cross {
    color: var(--color-error);
    font-weight: bold;
}

.check {
    color: var(--color-accent-primary-hover);
    font-weight: bold;
}

/* ==========================================================================
   9. PROVA SOCIAL
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-bg-surface);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.quote {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   10. PRICING
   ========================================================================== */
/* Tickets Section Background */
.tickets {
    position: relative;
    background-color: var(--color-bg-darker);
    background-image:
        radial-gradient(circle at 30% 50%, rgba(43, 216, 227, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(47, 158, 138, 0.08) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(5, 14, 29, 0.95) 0%, rgba(5, 14, 29, 0.85) 100%),
        url('../Images/bg-secao.webp');
    background-size: cover;
    background-position: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 158, 138, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card .btn {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
}

.pricing-card.vip {
    transform: scale(1.05);
    border-color: rgba(47, 158, 138, 0.45);
    background: linear-gradient(160deg, rgba(47, 158, 138, 0.07) 0%, var(--color-bg-surface) 60%);
    box-shadow: 0 0 0 1px rgba(47, 158, 138, 0.2), 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(47, 158, 138, 0.08);
    z-index: 2;
}

.pricing-card.vip:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 0 0 1px rgba(47, 158, 138, 0.35), 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 70px rgba(47, 158, 138, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-primary);
    color: #101010;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.875rem;
    min-height: 42px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #FFF;
    margin-top: 1rem;
}

.price .cents {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.pricing-card.vip .price {
    color: var(--color-accent-primary-hover);
}

.ben-list {
    margin-bottom: 2.5rem;
}

.ben-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ben-list li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.ben-list li strong {
    color: var(--color-text-primary);
}

/* Pricing Value Block */
.pricing-value {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-value .price {
    margin-top: 0;
}

.price-cash {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 0.25rem;
}

.pricing-footnote {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-cta-card {
    padding: 1.75rem !important;
    margin-top: 2rem;
    border-radius: 12px !important;
}

.faq-right .accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
}

.accordion-item {
    background: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-base);
}

.accordion-item.active {
    border-color: rgba(47, 158, 138, 0.35);
    border-left: 3px solid var(--color-accent-primary);
}

.accordion-item:hover {
    border-color: rgba(47, 158, 138, 0.2);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.accordion-header::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-accent-primary-hover);
    transition: var(--transition-base);
    margin-left: auto;
    flex-shrink: 0;
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-item.active .accordion-header {
    color: #FFF;
}

/* FAQ number circles */
.faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(47, 158, 138, 0.12);
    border: 1px solid rgba(47, 158, 138, 0.3);
    color: var(--color-accent-primary-hover);
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem 4rem;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

.accordion-content p strong {
    color: var(--color-text-primary);
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left {
        position: static;
    }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 3rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    max-width: 150px;
    margin: 0 auto 1.5rem;
    opacity: 0.5;
    transition: var(--transition-base);
}

.footer-logo:hover {
    opacity: 1;
}

.footer p {
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   SPONSORS MARQUEE (HERO)
   ========================================================================== */
.sponsors-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(4, 10, 28, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0 1.5rem 0;
    position: relative;
    z-index: 10;
}

.sponsors-marquee {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

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

.marquee-logo {
    height: 40px;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.marquee-logo:hover {
    opacity: 1;
}

.marquee-logo-lg {
    height: 70px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .sponsors-marquee {
        gap: 2.5rem;
        padding-right: 2.5rem;
        animation-duration: 20s;
    }

    .marquee-logo {
        height: 30px;
    }

    .marquee-logo-lg {
        height: 50px;
    }
}

/* ==========================================================================
   SPONSORS
   ========================================================================== */
.sponsors {
    background-color: var(--color-bg-darker);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(47, 158, 138, 0.15) 0%, transparent 55%),
        linear-gradient(rgba(4, 10, 28, 0.95), rgba(4, 10, 28, 0.95)),
        url('../Images/bg-secao.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 2.5rem !important;
    border-radius: 14px !important;
    min-width: 200px;
    transition: var(--transition-base);
}

.sponsor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 158, 138, 0.3) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.sponsor-card:hover .sponsor-logo {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

.sponsor-logo {
    max-height: 52px;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: var(--transition-base);
}

.sponsor-name {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .sponsors-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .sponsor-card {
        width: 100%;
        max-width: 260px;
        height: 120px;
        padding: 1.5rem !important;
    }
}

/* ==========================================================================
   SCARCITY / LOT COUNTDOWN
   ========================================================================== */
.scarcity-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.lot-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    border-color: rgba(47, 158, 138, 0.25) !important;
    background: rgba(47, 158, 138, 0.04) !important;
}

.lot-countdown-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2F9E8A;
    margin-bottom: 1.25rem;
}

.lot-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2F9E8A;
    flex-shrink: 0;
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

.countdown-timer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1;
    letter-spacing: -0.02em;
}

.countdown-lbl {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

.countdown-sep {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #2F9E8A;
    line-height: 1;
    padding-top: 0.1rem;
}

/* Spots Block */
.spots-block {
    padding: 1.75rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.6rem;
}

.spots-header strong {
    color: #FFF;
    font-weight: 700;
}

.spots-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1s ease;
}

.spots-fill-vip {
    background: linear-gradient(to right, #2BD8E3, #2F9E8A);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.spots-fill-exec {
    background: linear-gradient(to right, #2BD8E3, #2F9E8A);
    box-shadow: 0 0 8px rgba(47, 158, 138, 0.5);
}

.spots-warning {
    font-size: 0.75rem;
    color: #f59e0b;
    margin: 1rem 0 0;
    text-align: center;
}

@media (max-width: 768px) {
    .scarcity-block {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LOCAL DO EVENTO
   ========================================================================== */
.location {
    background-color: var(--color-bg-darker);
    padding: 6rem 0;
}

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

.location-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid rgba(47, 158, 138, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(43, 216, 227, 0.15);
}

/* Image Area */
.location-card-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.6s ease;
}

.location-card:hover .location-card-image img {
    transform: scale(1.05);
}

.location-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 20, 40, 0.95) 0%, transparent 100%);
}

/* Body */
.location-card-body {
    padding: 2.5rem 3rem 3rem;
    text-align: left;
}

.location-hotel-name {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.location-hotel-name h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

.location-city {
    font-size: 0.85rem;
    color: var(--color-accent-primary-hover);
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(47, 158, 138, 0.12);
    border: 1px solid rgba(47, 158, 138, 0.25);
    font-weight: 500;
}

/* Details Grid */
.location-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.location-detail-item:hover {
    background: rgba(47, 158, 138, 0.08);
}

.location-detail-icon {
    font-style: normal;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail-item strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.location-detail-item p {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}

/* CTA Button */
.btn-location-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    background: var(--color-accent-primary);
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-location-map:hover {
    background: var(--color-accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(43, 216, 227, 0.4);
}

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

    .location-card-body {
        padding: 1.5rem;
    }

    .location-card-image {
        height: 220px;
    }

    .location-hotel-name h3 {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* --- Tablet (≤992px) --- */
@media (max-width: 992px) {

    .id-grid,
    .about-grid,
    .contrast-box {
        grid-template-columns: 1fr;
    }

    .contrast-divider {
        width: 100%;
        height: 40px;
    }

    .pricing-card.vip {
        transform: scale(1);
    }

    .pricing-card.vip:hover {
        transform: translateY(-5px);
    }

    /* Blocks VS comparison */
    .vs-comparison {
        flex-direction: column;
    }

    .vs-badge {
        margin: 0 auto;
    }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {

    section {
        padding: var(--space-xl) 0;
    }

    /* --- Typography --- */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .headline-centered {
        font-size: 2rem;
    }

    .subheadline-centered {
        font-size: 1rem;
    }

    /* --- Hero --- */
    .hero {
        padding-top: 0;
        padding-bottom: 2rem;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-bg-overlay {
        background-image:
            linear-gradient(to bottom, rgba(5, 5, 5, 0.1) 0%, rgba(10, 10, 10, 1) 100%),
            url('../Images/bg-hero.webp');
        background-size: cover;
        background-position: center;
    }

    .hero-top-nav-wrapper {
        top: 1rem;
    }

    .hero-top-nav {
        width: 95%;
        padding: 0.5rem 1rem;
    }

    .hero-ticker-wrapper {
        bottom: 1rem;
    }

    .hero-speakers-bg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 5rem;
        /* space for the nav pill */
    }

    .hero-speakers-bg img {
        width: 100%;
        margin-left: 0;
    }

    .hero-content-centered {
        position: relative;
        z-index: 2;
        margin-top: -4rem;
        /* overlap slightly the bottom of the photo */
    }

    .hidden-mobile {
        display: none !important;
    }

    .nav-action {
        display: none !important;
    }

    .hero-top-nav {
        justify-content: center;
    }

    /* --- Container tighter padding on phone --- */
    .container {
        padding: 0 1rem;
    }

    /* --- Experience / Bento Grid --- */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item {
        min-height: 180px;
    }

    /* --- Section 2: Identification --- */
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .id-questions-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* --- Section 3: Bloqueio --- */
    .blocks-grid {
        grid-template-columns: 1fr;
    }

    .vs-comparison {
        flex-direction: column;
        gap: 0;
    }

    .vs-badge {
        margin: 0 auto;
        width: fit-content;
    }

    /* --- Section 4: Virada --- */
    .virada-pillars {
        grid-template-columns: 1fr;
    }

    .virada-pillar-featured {
        transform: scale(1);
    }

    .virada-quote {
        padding: 1.75rem 1.25rem !important;
    }

    /* --- Section 6: Speakers --- */
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speakers-credbar {
        gap: 1.5rem;
        padding: 1rem 1.25rem !important;
        border-radius: 12px;
        width: auto;
    }

    .credbar-divider {
        width: 60px;
        height: 1px;
    }

    /* --- Section 7: Schedule --- */
    .schedule-daybar {
        flex-direction: column;
        gap: 1rem;
        border-radius: 12px !important;
        width: auto;
        padding: 1.5rem 2rem !important;
    }

    .daybar-item {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        text-align: left;
    }

    .daybar-divider {
        width: 80px;
        height: 1px;
        margin: 0 auto;
    }

    .timeline-item {
        grid-template-columns: 60px 16px 1fr;
        gap: 0 0.75rem;
    }

    .tl-time {
        font-size: 0.7rem;
        padding-top: 0.9rem;
    }

    /* --- Section 8: Transformation --- */
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    /* --- Section 11: FAQ --- */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left {
        position: static;
    }

    /* --- Section 12: Final CTA --- */
    .final-cta-grid {
        grid-template-columns: 1fr;
    }

    .urgency-signals {
        max-width: 100% !important;
    }

    /* --- Sponsors --- */
    .sponsors-grid {
        gap: 1rem;
    }

    .sponsor-card {
        min-width: 140px;
        padding: 1.25rem 1.5rem !important;
    }

    /* --- Location --- */
    .location-details-grid {
        grid-template-columns: 1fr;
    }

    .location-card-body {
        padding: 1.5rem;
    }

    .location-card-image {
        height: 220px;
    }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 50px 14px 1fr;
        gap: 0 0.5rem;
    }

    .tl-time {
        font-size: 0.65rem;
    }

    .tl-time span {
        display: none;
    }

    .accordion-header {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .faq-num {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .accordion-content p {
        padding: 0 1rem 1rem 3rem;
    }

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

    .btn-primary {
        padding: 1rem 1.5rem;
    }
}

/* ==========================================================================
   Lucide Icons
   ========================================================================== */
.lucide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lucide-icon svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
}

/* Pain icons */
.pain-icon .lucide-icon svg {
    width: 2rem;
    height: 2rem;
}

/* Pillar icons */
.pillar-icon .lucide-icon svg {
    width: 2.25rem;
    height: 2.25rem;
}

/* Daybar icons */
.daybar-icon .lucide-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Location icons */
.location-detail-icon .lucide-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Badge / inline icon */
.badge-icon .lucide-icon svg {
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
    margin-right: 0.3em;
}

/* Urgency dot (replaces 🔴 emoji) */
.urgency-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-danger);
    box-shadow: 0 0 6px var(--color-danger);
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

/* ==========================================================================
   Accessibility — Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .bg-pattern,
    .identification {
        background-attachment: scroll !important;
    }

    .lot-pulse {
        animation: none !important;
    }

    .urgency-dot {
        animation: none !important;
    }
}


/* Ensure Plyr mute control is always visible */
.plyr__controls {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}
