/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-global: #07122A;
    /* Azul marinho escuro */
    --primary: #1A4FBB;
    /* Azul royal */
    --accent: #C9A84C;
    /* Dourado premium */
    --accent-glow: rgba(201, 168, 76, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #C5D0E0;
    --card-dark: #0F1E3D;
    --card-light: #F5F2EB;
    /* Off-white quente */
    --danger: #FF4A4A;
    /* Vermelho para o comparativo "Sem VDR" */

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-card: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-global);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Soft Gold Side Glow Blurs (nas laterais no decorrer do site) */
.side-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.side-glow-left {
    left: -300px;
}

.side-glow-right {
    right: -300px;
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.page-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    overflow: hidden;
}

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

.text-gold {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    /* Fallback for older browsers */
    font-weight: 700;
}

.text-white {
    color: #FFFFFF;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

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

/* Efeitos de Glow no Fundo (All updated to soft gold blurs) */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    /* Very subtle gold light */
}

.glow-hero {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.glow-prova {
    top: 20%;
    left: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    /* Unified to premium VDR Gold */
}

.glow-bio {
    bottom: 5%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

/* [BARRA DO TOPO] */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    z-index: 120;
}

/* [BANNER EXCLUSIVO RESTAURANTE] */
.top-announcement-banner {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    color: #07122A;
    /* Dark navy for high premium contrast */
    text-align: center;
    padding: 18px 24px;
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
    position: relative;
    z-index: 110;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.top-announcement-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-announcement-banner .highlight {
    font-weight: 900;
    color: #07122A;
}

/* Responsividade do Banner */
@media (max-width: 768px) {
    .top-announcement-banner {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .top-announcement-banner {
        padding: 12px 12px;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }
}

/* Badge Estilizada */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    background: rgba(201, 168, 76, 0.05);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

.badge-dark {
    color: var(--card-dark);
    background: rgba(15, 30, 61, 0.08);
    border: 1px solid rgba(15, 30, 61, 0.2);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
    display: inline-block;
    width: auto;
    min-width: 280px;
    padding: 18px 36px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    color: #07122A;
    /* Dark navy text for high contrast on the premium VDR gold gradient */
    font-weight: 800;
}

.btn-glow-gold {
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.4), 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-glow-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(35deg);
    transition: none;
    pointer-events: none;
    animation: ctaShine 4s infinite linear;
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.6), 0 15px 35px rgba(0, 0, 0, 0.35);
}

.btn:active {
    transform: translateY(0) scale(1.0);
}

@keyframes ctaShine {
    0% {
        left: -60%;
    }

    15% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.cta-wrapper {
    margin-top: 32px;
}

/* ==========================================================================
   DOBRA 1 — HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 100px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(26, 79, 187, 0.15);
    overflow: hidden;
    /* Prevent background images from bleeding outside */
}

/* Imagem de Fundo Responsiva (Dobra 1) */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% top;
    /* Anchors the horizontal position at 30%: this correctly pushes Bruno Cezar further to the right (away from the text) while keeping him fully visible on smaller screens and beautifully framed on large 27" monitors */
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Gives the text container about 60% of width on the left, keeping it wide and un-cramped */
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 5;
    /* Sit neatly in front of the background */
}

.hero-content {
    grid-column: 1;
    /* Places the text container back to the LEFT side on desktop/wide viewports */
    max-width: 580px;
    /* Perfectly occupies 50% of the section on the left with excellent readability */
    width: 100%;
    position: relative;
    z-index: 10;
}

.pre-headline {
    font-size: 1.15rem;
    font-weight: 600;
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.headline-primary {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.headline-primary .text-gold {
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
}

.subheadline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 400;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(15, 30, 61, 0.45);
    border: 1px solid rgba(26, 79, 187, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.event-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.event-item .icon {
    font-size: 1.3rem;
}

/* Área da foto do Bruno (Dobra 1) */
.hero-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.avatar-placeholder-wrapper {
    position: relative;
    width: 340px;
    height: 420px;
}

.avatar-grid-overlay {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(201, 168, 76, 0.25);
    border-radius: 24px;
    pointer-events: none;
}

.avatar-glow {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
    filter: blur(40px);
    opacity: 0.35;
    z-index: 1;
}

.avatar-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--card-dark);
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.avatar-photo-container {
    width: 100%;
    height: 85%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #07122A;
}

.avatar-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-box:hover .avatar-portrait-img {
    transform: scale(1.05);
}

.avatar-border-line {
    position: absolute;
    bottom: 52px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
}

.avatar-tag {
    display: block;
    width: 100%;
    padding: 14px;
    background: rgba(7, 18, 42, 0.9);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    letter-spacing: 0.15em;
}

.avatar-info-card {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background: rgba(15, 30, 61, 0.95);
    border: 1px solid var(--accent);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10;
    backdrop-filter: blur(8px);
}

.pulse-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

/* ==========================================================================
   DOBRA 2 — CARD PROBLEMA & DIAGRAMA VDR
   ========================================================================== */
.problema-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 61, 0.3) 100%);
}

.card-light {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.65) 0%, rgba(245, 242, 235, 0.1) 100%), var(--card-light);
    /* Elegant and extremely subtle mathematical dotted grid texture */
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.65) 0%, rgba(245, 242, 235, 0.1) 100%),
        radial-gradient(rgba(7, 18, 42, 0.05) 1.2px, transparent 1.2px);
    background-size: 100% 100%, 18px 18px;
    background-blend-mode: normal, normal;
    color: var(--bg-global);
    border-radius: 24px;
    padding: 60px 48px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

/* Highly readable gold gradient text override for light card backgrounds */
.card-light .text-gold {
    background: linear-gradient(135deg, #7A5F23 0%, #A8863A 50%, #C9A84C 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: #A8863A !important;
    text-shadow: none !important;
    font-weight: 700;
}

.card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.headline-card {
    font-size: 2.8rem;
    /* Upgraded to match other titles */
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    max-width: 980px;
    margin: 0 auto 48px auto;
    color: var(--bg-global);
    letter-spacing: -0.02em;
}

/* Container do Diagrama VDR */
.diagrama-vdr-container {
    max-width: 800px;
    margin: 0 auto 48px auto;
    background: rgba(7, 18, 42, 0.03);
    border: 1px solid rgba(7, 18, 42, 0.08);
    border-radius: 16px;
    padding: 36px 24px;
    position: relative;
}

.diagram-title {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--bg-global);
    padding: 4px 14px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 30px;
}

.diagrama-vdr-venn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.svg-venn-diagram {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Grupos do Diagrama de Venn */
.venn-group {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.group-visibilidade {
    transform-origin: 200px 100px;
}

.group-demanda {
    transform-origin: 115px 240px;
}

.group-receita {
    transform-origin: 285px 240px;
}

.venn-group:hover {
    transform: scale(1.03);
}

/* Círculos */
.venn-circle {
    transition: var(--transition-smooth);
}

.venn-circle.outer {
    transition: var(--transition-smooth);
}

.venn-circle.inner {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1px;
}

/* Efeito Hover nos Círculos */
.venn-group:hover .venn-circle.outer {
    stroke-width: 1.8px;
    stroke: var(--accent);
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
}

.venn-group:hover .venn-circle.inner {
    stroke: rgba(255, 255, 255, 0.15);
}

/* Intersecção Central (Diamond/Core) */
.venn-intersection {
    cursor: pointer;
    transform-origin: 200px 193px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.venn-intersection:hover {
    transform: scale(1.06);
}

.intersection-polygon {
    transition: var(--transition-smooth);
}

.intersection-polygon.outer {
    fill: #07122A;
    stroke: url(#grad-center);
    stroke-width: 2px;
}

.intersection-polygon.inner {
    fill: none;
    stroke: rgba(201, 168, 76, 0.3);
    stroke-width: 1px;
}

.venn-intersection:hover .intersection-polygon.outer {
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.7));
}

/* Rótulos e Textos */
.label-group {
    pointer-events: none;
    /* Garante que o hover passe para os círculos */
}

.label-title {
    fill: url(#gold-grad) !important;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-anchor: middle;
    transition: var(--transition-smooth);
}

.label-subtitle {
    fill: #FFFFFF;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 11.5px;
    text-anchor: middle;
    opacity: 0.95;
    transition: var(--transition-smooth);
}

/* Efeito Hover nos Textos do Círculo */
.venn-group:hover .label-title {
    fill: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.venn-group:hover .label-subtitle {
    fill: var(--accent);
    font-weight: 600;
}

/* Texto Central VDR */
.label-vdr {
    fill: url(#gold-grad) !important;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 18px;
    text-anchor: middle;
    letter-spacing: 0.05em;
}

.label-sistema {
    fill: #FFFFFF;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 9px;
    text-anchor: middle;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

/* Título Inferior */
.diagram-footer-title {
    fill: var(--bg-global);
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 19px;
    text-anchor: middle;
    letter-spacing: 0.08em;
}

.diagram-footer-title .highlight {
    fill: var(--accent);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.25);
}



/* ==========================================================================
   DOBRA 2.5 — DEPOIMENTOS EM VÍDEO
   ========================================================================== */
.depoimentos-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 30, 61, 0.3) 0%, transparent 100%);
    border-bottom: 1px solid rgba(26, 79, 187, 0.15);
}

.glow-depoimentos {
    top: 30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.video-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    position: relative;
    overflow: visible;
}

/* Navigation Buttons */
.video-carousel-wrapper .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(7, 18, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #C5D0E0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-carousel-wrapper .nav-btn:hover {
    background: rgba(15, 30, 61, 0.95);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.video-carousel-wrapper .nav-btn-left {
    left: -24px;
}

.video-carousel-wrapper .nav-btn-right {
    right: -24px;
}

@media (max-width: 1024px) {
    .video-carousel-wrapper .nav-btn {
        display: flex;
        width: 36px;
        height: 36px;
    }
    .video-carousel-wrapper .nav-btn-left {
        left: 12px;
    }
    .video-carousel-wrapper .nav-btn-right {
        right: 12px;
    }
}

.video-carousel-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0 30px 0;
}

.video-carousel-scroll::-webkit-scrollbar {
    display: none;
}

.video-card {
    width: calc((100% - 48px) / 3);
    min-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: rgba(15, 30, 61, 0.55);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    transition: var(--transition-card);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.65);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 15px rgba(201, 168, 76, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 580px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.video-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-button-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    color: #07122A;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.video-container:hover .play-button-circle {
    transform: scale(1.1);
}

.video-container.playing .play-button-circle {
    opacity: 0;
    pointer-events: none;
}

.video-container.playing .video-play-overlay {
    background: transparent;
}

.play-icon {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    /* offset visual balance */
}

.video-info {
    text-align: center;
    padding: 4px 0;
}

.video-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.video-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (max-width: 991px) {
    .video-card {
        width: calc((100% - 24px) / 2);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .video-carousel-scroll {
        gap: 16px;
    }

    .video-card {
        width: 100%;
        min-width: 260px;
    }

    .video-container {
        height: 480px;
    }
}

/* ==========================================================================
   DOBRA 3 — PROVA SOCIAL (CARROSSEL)
   ========================================================================== */
.prova-social-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Cabeçalho da Prova Social Split */
.prova-social-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 32px;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-left .badge {
    margin-bottom: 16px;
}

.section-title-left {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.25;
    max-width: 650px;
    color: var(--text-primary);
}

.section-title-left .text-gold {
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(15, 30, 61, 0.45);
    border: 1px solid rgba(26, 79, 187, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Overlapping Avatar Stack */
/* Restaurant Badge Icon */
.restaurant-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.55);
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.svg-restaurant-badge {
    width: 22px;
    height: 22px;
    display: block;
}

.stack-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
    line-height: 1.3;
}

.stack-text strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #FFFFFF;
}

.stack-text span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

/* Carrossel Horizontal Infinito */
.carrossel-wrapper {
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Efeito Blur/Fade nas Extremidades Laterais (Divs estáticas separadas) */
.carrossel-shadow-left,
.carrossel-shadow-right {
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.carrossel-shadow-left {
    left: 0;
    background: linear-gradient(90deg, #07122A 0%, rgba(7, 18, 42, 0) 100%);
}

.carrossel-shadow-right {
    right: 0;
    background: linear-gradient(270deg, #07122A 0%, rgba(7, 18, 42, 0) 100%);
}

.carrossel-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.carrossel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: infiniteScroll 15s linear infinite;
    cursor: grab;
}

.carrossel-track:active {
    cursor: grabbing;
}

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

    100% {
        /* Desloca exatamente a largura dos 7 cards originais + gaps */
        transform: translateX(calc(-300px * 7 - 24px * 7));
    }
}

/* Pausa animação no hover (Apenas no desktop) */
@media (hover: hover) {
    .carrossel-wrapper:hover .carrossel-track {
        animation-play-state: paused;
    }
}

.carrossel-card {
    width: 300px;
    background: rgba(15, 30, 61, 0.45);
    border: 1.5px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    transition: var(--transition-card);
    user-select: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.carrossel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 15px rgba(201, 168, 76, 0.1);
}

/* Gráfico em Background */
.card-chart-bg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 48%;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.card-chart-bg svg {
    width: 100%;
    height: 100%;
}

.card-case-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 5;
}

.case-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #07122A;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
}

.case-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.case-results {
    display: flex;
    flex-direction: column;
    background: rgba(7, 18, 42, 0.45);
    border-radius: 12px;
    padding: 18px 16px;
    border: 1px solid rgba(26, 79, 187, 0.15);
    z-index: 5;
    position: relative;
}

.result-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.result-numbers {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 12px rgba(201, 168, 76, 0.25);
}

.result-numbers .highlight {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
}

.result-numbers .arrow {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0 4px;
}

.result-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.85;
    font-weight: 600;
}

/* ==========================================================================
   DOBRA 4 — COMPARATIVO SEM vs COM VDR
   ========================================================================== */
.comparativo-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(26, 79, 187, 0.15);
}

.comparativo-section .section-title {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 2.8rem !important;
    /* Enlarge to match others */
    text-align: center !important;
    /* Force centering */
}

.comparativo-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Separates the cards just like reference 2 */
    max-width: 1000px;
    margin: 0 auto 48px auto;
}

.comparativo-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.comparativo-card .card-body {
    padding: 40px;
    flex-grow: 1;
}

/* Card SEM VDR — Lighter Blur-effect Red/Crimson premium theme */
.card-sem-vdr {
    background-image:
        radial-gradient(circle at top, rgba(255, 74, 74, 0.15) 0%, rgba(255, 74, 74, 0) 70%),
        linear-gradient(135deg, #180909 0%, #070202 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 74, 74, 0.25);
}

.card-sem-vdr .card-header {
    background: linear-gradient(90deg, #8B0000 0%, #FF4A4A 50%, #8B0000 100%);
    border-bottom: 1.5px solid rgba(255, 74, 74, 0.25);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center-aligned text */
    text-align: center;
    min-height: 76px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-sem-vdr .card-header h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.card-sem-vdr:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 74, 74, 0.45);
    box-shadow: 0 0 45px rgba(255, 74, 74, 0.25), 0 20px 45px rgba(0, 0, 0, 0.65);
}


/* Card COM VDR — Lighter Blue to Soft Gold Gradient Card */
.card-com-vdr {
    background-image:
        radial-gradient(circle at top, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0) 70%),
        linear-gradient(135deg, #0F2042 0%, #292110 100%),
        linear-gradient(135deg, #BA943F 0%, #F5DB94 30%, #E2C26F 70%, #9E7D31 100%);
    border: 1.5px solid transparent;
    background-clip: padding-box, padding-box, border-box;
    background-origin: padding-box, padding-box, border-box;
    box-shadow: 0 0 30px rgba(226, 194, 111, 0.15), 0 20px 40px rgba(0, 0, 0, 0.55);
}

.card-com-vdr .card-header {
    background: linear-gradient(90deg, #BA943F 0%, #F5DB94 50%, #BA943F 100%);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center-aligned text */
    text-align: center;
    min-height: 76px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.card-com-vdr .card-header h3 {
    color: #FFFFFF;
    /* High-contrast white text like the reference! */
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    /* Text shadow for incredible readability */
}

.card-com-vdr:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 45px rgba(226, 194, 111, 0.28), 0 20px 45px rgba(0, 0, 0, 0.65);
}

/* Listas */
.comparativo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.comparativo-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.comparativo-list .list-text {
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-main);
}

.card-sem-vdr .list-text {
    color: #C5D0E0;
    /* Soft highly readable silver-blue text matching the new blue background */
}

.card-com-vdr .list-text {
    color: #FFFFFF;
    /* High-contrast white text */
    font-weight: 600;
    /* slightly bolder for premium readability */
}

/* Ícones Circulares */
.circle-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.circle-cross {
    border: 1.5px solid var(--danger);
    /* Crimson red outline */
    background-color: rgba(255, 74, 74, 0.12);
    /* Soft red background */
    box-shadow: 0 0 10px rgba(255, 74, 74, 0.2);
}

.circle-check {
    border: 1.5px solid #2ed573;
    background-color: rgba(46, 213, 115, 0.15);
}

.svg-comparativo-icon {
    width: 12px;
    height: 12px;
}

.circle-cross .svg-comparativo-icon {
    fill: var(--danger);
    /* Pure danger red cross */
}

.circle-check .svg-comparativo-icon {
    fill: #2ed573;
}

/* ==========================================================================
   DOBRA 5 — O QUE VOCÊ VAI VER AO VIVO
   ========================================================================== */
.ao-vivo-section {
    padding: 120px 0;
    position: relative;
}

.glow-live {
    top: 30%;
    left: 35%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
}

/* Custom styles for the Live Section Light Card Container */
.live-card {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.live-card .section-title {
    color: #07122A !important;
    /* Dark navy title on the light container card */
    font-size: 2.8rem !important;
    /* Enlarge to match others */
    text-align: center !important;
    /* Force centering */
}

/* Grid/Flex das Trilhas (Centered Flexbox) */
.live-grid-trilhas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-top: 50px;
}

.trilha-card {
    flex: 1 1 300px;
    max-width: 320px;
    /* Aligns 3 columns perfectly inside the padded light card container */
    background-image:
        linear-gradient(#07122A, #07122A),
        linear-gradient(135deg, rgba(168, 134, 58, 0.25) 0%, rgba(201, 168, 76, 0.25) 50%, rgba(230, 197, 110, 0.25) 100%);
    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    border-radius: 20px;
    padding: 40px;
    /* Generous breathable padding */
    transition: var(--transition-card);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.trilha-card:hover {
    transform: translateY(-6px);
    background-image:
        linear-gradient(#07122A, #07122A),
        linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 20px rgba(201, 168, 76, 0.2);
}

/* CSS-Drawn Toggle Switch Switch (Micro-Animação do Card 2!) */
.trilha-toggle-icon {
    margin-bottom: 36px;
    /* Spacing below toggle switch */
}

.toggle-track {
    width: 48px;
    height: 24px;
    border-radius: 50px;
    background: #2E2C37;
    /* Flat, dark gray capsule from image 2 */
    display: flex;
    align-items: center;
    padding: 3px;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.toggle-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #FFFFFF;
    /* Pure white circle */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 3px;
    transition: var(--transition-smooth);
}

/* Hover active toggle state - Micro-animation */
.trilha-card:hover .toggle-track {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    /* Gold track */
}

.trilha-card:hover .toggle-dot {
    left: 27px;
    /* 48px - 18px - 3px = 27px */
    background-color: #07122A;
    /* Dark contrast knob on hover */
    box-shadow: none;
}

.trilha-title {
    font-size: 1.55rem;
    /* Larger, high-impact heading from image 2 */
    font-weight: 600;
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    /* Premium VDR Honey-Gold gradient */
    margin-bottom: 14px;
    font-family: var(--font-main);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.trilha-desc {
    font-size: 0.95rem;
    /* Readable font size from image 2 */
    line-height: 1.6;
    color: #A3A1B2;
    /* Slightly brighter for premium readability against dark card background */
    font-weight: 400;
}

/* Responsividade das Trilhas */
@media (max-width: 992px) {
    .live-grid-trilhas {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .live-grid-trilhas {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trilha-card {
        padding: 30px;
    }

    .trilha-title {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   DOBRA 6 — QUEM VAI APRESENTAR
   ========================================================================== */
.apresentar-section {
    padding: 120px 0;
    position: relative;
    background-color: #07122A;
    min-height: 650px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(26, 79, 187, 0.15);
    overflow: hidden;
}

/* Responsive Image Container */
.apresentar-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Spans the entire section, acting as a true full-width background cover! */
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Smooth smokey transition blur at the top boundary */
.apresentar-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, #07122A 0%, rgba(7, 18, 42, 0.7) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.apresentar-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    /* Prioritizes Bruno Cezar's head and right positioning on widescreen and 4K displays */
}


.apresentar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 5;
}

.apresentar-content {
    max-width: 480px;
    /* Reduced from 580px to completely avoid overlapping Bruno's arm/shoulder! */
    width: 100%;
}

.apresentar-content .badge {
    margin-bottom: 24px;
}

.apresentar-nome {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.apresentar-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Responsividade do Apresentador (Mobile-First / Adaptativo) */
@media (max-width: 991px) {
    .apresentar-section {
        padding-top: 0;
        padding-bottom: 80px;
        min-height: auto;
        display: block;
    }

    .apresentar-image-bg {
        position: relative;
        width: 100%;
        height: 380px;
        /* fixed height for the image area on mobile */
        margin-bottom: -50px;
        /* negative margin to pull the text card upwards on top of the image */
    }

    .apresentar-img-element {
        object-position: center top;
        /* keeps him centered and visible */
    }

    /* Elegant gradient fade at the bottom of the mobile image to blend into the section background */
    .apresentar-image-bg::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, rgba(7, 18, 42, 0) 0%, #07122A 100%);
        z-index: 2;
    }

    .apresentar-container {
        justify-content: center;
        position: relative;
        z-index: 10;
        padding: 0 20px;
    }

    .apresentar-content {
        max-width: 100%;
        text-align: center;
        background: rgba(7, 18, 42, 0.85);
        /* Soft dark backing to guarantee readability over bottom fade */
        padding: 36px 28px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(201, 168, 76, 0.2);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    }

    .apresentar-nome {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer {
    background-color: #040A18;
    border-top: 1px solid rgba(26, 79, 187, 0.15);
    padding: 30px 0 0 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.footer-copy p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.9;
    letter-spacing: 0.03em;
    text-align: center;
}

.footer-signature-bar {
    width: 100%;
    background-color: #FFFFFF;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.signature-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.signature-link:hover {
    transform: scale(1.04);
}

.signature-img {
    height: 20px;
    width: auto;
    display: block;
}

/* ==========================================================================
   REVEAL / TRANSITION ANIMATIONS (Intersection Observer)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggering para listas */
.comparativo-list li,
.trilha-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed .comparativo-list li,
.reveal.revealed .trilha-card {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */

/* Notebooks / Desktop médio (1024px) */
@media (max-width: 1024px) {
    .headline-primary {
        font-size: 2.6rem;
    }

    .apresentar-nome {
        font-size: 2.4rem;
    }

    .hero-container,
    .apresentar-container {
        gap: 36px;
    }
}

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

    .carrossel-shadow-left,
    .carrossel-shadow-right {
        width: 40px;
        /* Reduced width on mobile to prevent blocking cards */
    }

    .headline-card,
    .comparativo-section .section-title,
    .live-card .section-title {
        font-size: 2.0rem !important;
    }

    .prova-social-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        margin-bottom: 40px;
    }

    .header-left {
        align-items: center;
        text-align: center;
    }

    .section-title-left {
        text-align: center;
    }

    .header-right {
        margin: 0 auto;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(7, 18, 42, 0.45) 0%, rgba(7, 18, 42, 0.75) 50%, rgba(7, 18, 42, 0.95) 100%);
        z-index: 2;
        pointer-events: none;
    }

    .hero-bg-img {
        object-position: center top;
        /* Align image to top on mobile/tablet to guarantee Bruno's face is fully visible */
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 16px;
        position: relative;
        z-index: 5;
        padding-top: 210px;
        /* Pushes text below Bruno Cezar's face on mobile but pulls everything up to be visible above the fold! */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .headline-primary {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .subheadline {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .event-details {
        align-items: flex-start;
        text-align: left;
        padding: 16px;
        margin-bottom: 16px;
        gap: 10px;
    }

    .apresentar-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .apresentar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .apresentar-image-area {
        order: -1;
        /* Imagem no topo */
    }

    .comparativo-widget {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .card-light {
        padding: 40px 24px;
    }

    .comparativo-card {
        padding: 0;
    }

    .comparativo-card .card-body {
        padding: 32px 20px;
    }
}

/* Mobile pequenos (480px até 320px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 45px 0 20px 0 !important;
        min-height: unset;
    }

    .top-announcement-banner {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .hero-container {
        padding-top: 90px;
        /* Pull the text container right below the banner and face background */
        gap: 8px;
    }

    .badge {
        margin-bottom: 6px;
        padding: 4px 10px;
        font-size: 0.62rem;
    }

    .pre-headline {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .headline-primary {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 6px;
     }
 
     .subheadline {
        font-size: 0.85rem;
        line-height: 1.35;
        margin-bottom: 10px;
     }

    .section-title {
        font-size: 1.65rem;
    }

    .headline-card,
    .comparativo-section .section-title,
    .live-card .section-title {
        font-size: 1.65rem !important;
    }

    .headline-live-card {
        font-size: 1.5rem;
    }

    .apresentar-nome {
        font-size: 2rem;
    }

    .avatar-placeholder-wrapper,
    .bio-placeholder-wrapper {
        width: 280px;
        height: 350px;
    }

    .btn {
        width: 100%;
        min-width: unset;
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .event-details {
        padding: 10px 12px;
        gap: 6px;
        margin-bottom: 12px;
    }

    .event-item {
        font-size: 0.72rem;
        gap: 6px;
    }

    .event-item .icon {
        font-size: 0.9rem;
    }

    .comparativo-card .card-body {
        padding: 24px 16px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   VDR STEP-BY-STEP FLOW WIDGET STYLING
   ========================================================================== */
.vdr-flow-container {
    display: flex;
    align-items: stretch;
    /* Forces all 3 cards to stretch to the exact same height */
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 48px auto;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.vdr-flow-card {
    flex: 1;
    min-height: 140px;
    position: relative;
    border-radius: 24px;
    /* Matches the rounded corners in reference */
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* Double-gradient backgrounds: pad-box for solid blue grad, border-box for gold gradient border */
    background-image:
        linear-gradient(135deg, #091D46 0%, #050D21 100%),
        linear-gradient(135deg, #A8863A 0%, #E6C56E 50%, #C9A84C 100%);
    border: 1.5px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: border-box;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(201, 168, 76, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: pointer;
}

.vdr-flow-card:hover {
    transform: translateY(-5px);
    background-image:
        linear-gradient(135deg, #0A245C 0%, #061129 100%),
        linear-gradient(135deg, #F3D17A 0%, #C9A84C 50%, #E6C56E 100%);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(201, 168, 76, 0.28);
}

/* Left Column Content Area */
.vdr-card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 5;
    max-width: calc(100% - 60px);
    /* Leaves space for the ribbon on the right */
}

/* Header Row: circular icon and bold gold gradient title */
.vdr-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* Small Circular Gold frame for icons (matches the circle next to BÔNUS) */
.vdr-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 1.2px solid rgba(201, 168, 76, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.vdr-icon-svg {
    width: 15px;
    height: 15px;
    display: block;
    filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.3));
    transition: var(--transition-smooth);
}

.vdr-flow-card:hover .vdr-card-icon {
    transform: scale(1.08);
    border-color: rgba(201, 168, 76, 0.85);
    background: rgba(201, 168, 76, 0.22);
}

/* Gold Gradient Title (Highly Premium & Sleek) */
.vdr-card-title {
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    /* Fallback */
    font-size: 1.05rem;
    /* Clean and elegant size */
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0;
    font-family: var(--font-main);
    white-space: nowrap;
    /* Prevents title text wrapping */
}

/* Pure White Description text below, in one single line */
.vdr-card-desc {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
    white-space: nowrap;
    /* Prevents subtitle text wrapping */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

/* Gold Curved Ribbon/Stripe Background decoration on the right edge */
.card-right-ribbon {
    position: absolute;
    right: -2px;
    top: -2px;
    bottom: -2px;
    height: calc(100% + 4px);
    width: 80px;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.vdr-flow-card:hover .card-right-ribbon {
    transform: scaleX(1.04);
}

/* Connectors pointing right */
.vdr-flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 5;
}

.connector-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background-color: #07122A;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.25), inset 0 0 5px rgba(201, 168, 76, 0.1);
    transition: var(--transition-smooth);
}

.connector-circle svg {
    width: 14px;
    height: 14px;
}

/* Connectors micro-animation on container hover */
.vdr-flow-container:hover .connector-circle {
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
    transform: scale(1.05);
}

/* Responsividade do Flow Widget (Mobile-First / Adaptativo) */
@media (max-width: 991px) {
    .vdr-flow-container {
        gap: 12px;
    }

    .vdr-flow-card {
        padding: 24px 28px;
    }

    .vdr-card-title {
        font-size: 0.95rem;
    }

    .vdr-card-desc {
        font-size: 1.05rem;
    }

    .card-right-ribbon {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .vdr-flow-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .vdr-flow-card {
        width: 100%;
        max-width: 440px;
        min-height: 120px;
        padding: 24px 28px;
    }

    /* Rotate the arrows to point downwards on mobile devices */
    .vdr-flow-connector {
        transform: rotate(90deg);
        margin: -5px 0;
    }

    .connector-circle {
        box-shadow: 0 0 8px rgba(201, 168, 76, 0.2);
    }
}

/* ==========================================================================
   POPUP MODAL (LEAD CAPTURE)
   ========================================================================== */
.vdr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 10, 24, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.vdr-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vdr-modal-card {
    background-image:
        radial-gradient(circle at top, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0) 70%),
        linear-gradient(135deg, #0A1835 0%, #050D21 100%);
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(201, 168, 76, 0.15);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.vdr-modal-overlay.active .vdr-modal-card {
    transform: translateY(0) scale(1);
}

.vdr-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    opacity: 0.7;
    z-index: 10;
}

.vdr-modal-close:hover {
    color: #FFFFFF;
    transform: rotate(90deg);
    opacity: 1;
}

.vdr-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.vdr-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #A8863A 0%, #C9A84C 50%, #E6C56E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #C9A84C;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.vdr-modal-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

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

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-top: 4px;
}

.vdr-modal-form input,
.vdr-modal-form select {
    width: 100%;
    background-color: rgba(4, 10, 24, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #FFFFFF;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
    outline: none;
    box-sizing: border-box;
}

.vdr-modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.vdr-modal-form input:focus,
.vdr-modal-form select:focus {
    border-color: var(--accent);
    background-color: rgba(4, 10, 24, 0.8);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

/* Custom styled Select Dropdown wrapper with native gold arrow */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    font-size: 10px;
    color: var(--accent);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.vdr-modal-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.vdr-modal-form select option {
    background-color: #07122A;
    color: #FFFFFF;
}

/* Modal submit button adjustments */
.btn-submit {
    width: 100% !important;
    min-width: unset !important;
    margin-top: 10px;
    padding: 16px 20px;
    font-size: 0.95rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-submit.loading .btn-text {
    visibility: hidden;
    opacity: 0;
}

.btn-spinner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #07122A;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.btn-submit.loading .btn-spinner {
    opacity: 1;
}

@keyframes btnSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .vdr-modal-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .vdr-modal-header h3 {
        font-size: 1.5rem;
    }
}