:root {
            --bv-green: #10b981;
            --bv-green-dark: #059669;
            --bv-green-light: #ecfdf5;
            --bv-green-pale: #f0fdf4;
            --bv-blue-light: #38bdf8;
            --bv-dark: #0f172a;
            --bv-slate: #64748b;
            --bv-slate-light: #94a3b8;
            --bv-light: #f8fafc;
            --bv-white: #ffffff;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-md: 0 10px 30px rgba(0,0,0,0.05);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
            --bg-body: var(--bv-white);
            --text-main: var(--bv-dark);
            --bg-card: var(--bv-white);
            --border-color: #f1f5f9;
        }

        body.dark-mode {
            --bg-body: #020617;
            --text-main: #f8fafc;
            --bg-card: #0f172a;
            --border-color: #1e293b;
            --bv-white: #0f172a;
            --bv-light: #1e293b;
            --bv-green-light: #064e3b;
            --bv-green-pale: #064e3b;
            --bv-slate: #cbd5e1;
            --bv-slate-light: #94a3b8;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Poppins', 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* SPLASH SCREEN */
        #splash-screen {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bv-white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.4s ease;
        }
        #splash-logo {
            width: 250px;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
        }
        #splash-logo.fade-in { opacity: 1; transform: scale(1); }
        #splash-logo.fade-out { opacity: 0; transform: scale(1.1); }

/* HEADER */
#main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 10px 30px;
    z-index: 5000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 80px;
    opacity: 0;
}

#main-header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
}

/* SCROLLED SHRINK */
#main-header.scrolled {
    height: 64px;
    padding: 8px 22px;
}

#main-header.scrolled .header-logo img {
    height: 100px;
}

body.dark-mode #main-header {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

/* LOGO – BASE (mobile) */
#main-header .header-logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: height 0.25s ease;
}

#main-header .header-logo-mobile {
    display: none;
    z-index: 5001;
}

/* Ações do menu (mobile) — por padrão escondidas no desktop */
#main-header .header-actions-mobile {
    display: none;
}

/* NAV */
#main-header nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

#main-header nav a {
    text-decoration: none;
    color: var(--bv-slate);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

#main-header nav a:hover {
    color: var(--bv-green);
}

/* BOTÕES */
#main-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

#main-header .btn-assine {
    background: var(--bv-green);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

#main-header .btn-embaixador {
    background: #e2e8f0;
    color: var(--bv-dark) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

/* HAMBURGER */
#main-header .hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 5001;
}

#main-header .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--bv-dark);
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 3px;
}

body.dark-mode #main-header .hamburger span {
    background: white;
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  #main-header .header-logo img {
    height: 100px;
    width: auto;
  }

  #main-header {
    height: 76px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {

    #main-header .hamburger {
        display: block;
        order: 3;
    }

    .header-logo {
        display: none;
    }

    .header-logo-mobile {
        display: flex !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        justify-content: center;
        z-index: 5002;
    }

    .header-logo-mobile img {
        height: 60px;
        width: auto;
        display: block !important;
    }

    #main-header .header-actions .btn-assine,
    #main-header .header-actions .btn-embaixador {
        display: none;
    }
    #main-header nav .header-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 80%;
    }

    #main-header nav .header-actions-mobile a {
        width: 100%;
        text-align: center;
    }


    #main-header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bv-white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 5000;
    }

    #main-header nav.active { right: 0; }

    #main-header nav .header-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 80%;
    }

    #main-header nav .header-actions-mobile a {
        width: 100%;
        text-align: center;
    }
}

/* ===== HOTFIX: trava header desktop (evita herdar "mobile") ===== */
@media (min-width: 993px){
  #main-header .header-logo{ display: flex !important; }
  #main-header .header-logo-mobile{ display: none !important; }
  #main-header .hamburger{ display: none !important; }
  #main-header nav{
    position: static !important;
    width: auto !important;
    height: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 20px 60px;
            background: var(--bv-white);
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-container {
            width: 100%;
            max-width: 1200px;
            background: var(--bv-white);
            border-radius: 50px;
            padding: 60px;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        body.dark-mode .hero-container { background: var(--bg-card); }

        .chat-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 40px;
            position: relative;
            width: 100%;
            z-index: 10;
        }

        .chat-time { font-size: 18px; font-weight: 600; color: var(--bv-slate); width: 120px; }
        .chat-logo-center { position: absolute; left: 50%; transform: translateX(-50%); height: 240px; top: -75px; object-fit: contain; }
        .chat-status { display: flex; gap: 15px; align-items: center; color: var(--bv-slate); width: 120px; justify-content: flex-end; font-size: 24px; }

        .chat-body { display: flex; flex-direction: column; align-items: center; width: 100%; margin-top: 0; position: relative; gap: 28px; text-align: center; }
        .chat-icon-lupa { width: auto; height: auto; flex-shrink: 0; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px; margin: 0; }
        .chat-icon-lupa img { height: 160px; width: auto; object-fit: contain; margin: 0; }
        .hero-gps-text { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--bv-green); font-size: 46px; line-height: 1.05; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
        .hero-gps-text .hero-line-1, .hero-gps-text .hero-line-2 { display: block; }

        .chat-content { flex: 1; display: flex; flex-direction: column; align-items: center; width: 100%; }
	        .chat-question { font-size: clamp(28px, 4vw, 52px); font-weight: 300; color: var(--bv-slate); line-height: 1.2; margin-bottom: 40px; width: 100%; min-height: 160px; display: block; text-align: center; }
	        
	        .typing-cursor::after { content: "|"; animation: blink 1s infinite; color: var(--bv-green); margin-left: 2px; display: inline-block; vertical-align: baseline; }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

        .insights-label { font-size: 16px; font-weight: 800; color: var(--bv-green); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }

        .insights-header {
            margin-bottom: 40px;
        }

        /* INSIGHTS - DRAGGABLE CAROUSEL */
        .insights-section {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding-bottom: 10px;
            cursor: grab;
        }
        .insights-section:active { cursor: grabbing; }

        .insights-track {
            display: flex;
            gap: 25px;
            width: max-content;
            user-select: none;
            animation: scroll-infinite 30s linear infinite;
        }
        .insights-section:hover .insights-track {
            animation-play-state: paused;
        }
        @keyframes scroll-infinite {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .insight-card {
            background: var(--bv-light);
            padding: 22px 45px;
            border-radius: 100px;
            font-size: 18px;
            font-weight: 600;
            border: 1px solid rgba(0,0,0,0.1);
            white-space: nowrap;
            cursor: pointer;
            transition: var(--transition);
            color: var(--text-main);
        }

        .insight-card:hover { border-color: var(--bv-green); background: var(--bv-white); transform: translateY(-3px); }
        .insight-card.active { background: var(--bv-green); color: white; border-color: var(--bv-green); }

        /* SIMULATION AREA */
		        .simulation-area {
		            display: none;
		            margin-top: 40px;
		            padding: 30px;
		            border-top: 1px dashed #cbd5e1;
		            width: 100%;
		            background: var(--bv-green-pale);
		            border-radius: 40px;
		            /* Removido max-height fixo para permitir crescimento dinâmico */
		            animation: slideDownFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
		        }
                @keyframes slideDownFade { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
	        .chat-bubble {
	            animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	        }

        .chat-messages-container { display: flex; flex-direction: column; gap: 20px; width: 100%; }

        .chat-bubble {
            max-width: 85%;
            padding: 20px;
            border-radius: 25px;
            font-size: 18px;
            line-height: 1.6;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .bubble-user { align-self: flex-end; background: var(--bv-green); color: white; border-bottom-right-radius: 5px; }
	        .bubble-bot { align-self: flex-start; background: white; color: var(--text-main); border-bottom-left-radius: 5px; border: 1px solid var(--border-color); text-align: left; }
	        .chat-bubble { text-align: left !important; }

        .bubble-time { font-size: 12px; opacity: 0.7; margin-top: 8px; display: block; text-align: right; }

        .thinking-bubble {
            display: none;
            align-self: flex-start;
            background: rgba(255,255,255,0.8);
            padding: 15px 25px;
            border-radius: 20px;
            font-style: italic;
            color: var(--bv-slate);
            font-size: 16px;
            border: 1px dashed var(--bv-green);
        }

        .dot-flashing {
            position: relative; width: 10px; height: 10px; border-radius: 5px; background-color: var(--bv-green); color: var(--bv-green); animation: dot-flashing 1s infinite linear alternate; animation-delay: .5s; display: inline-block; margin-left: 15px;
        }
        .dot-flashing::before, .dot-flashing::after { content: ''; display: inline-block; position: absolute; top: 0; }
        .dot-flashing::before { left: -15px; width: 10px; height: 10px; border-radius: 5px; background-color: var(--bv-green); animation: dot-flashing 1s infinite alternate; animation-delay: 0s; }
        .dot-flashing::after { left: 15px; width: 10px; height: 10px; border-radius: 5px; background-color: var(--bv-green); animation: dot-flashing 1s infinite alternate; animation-delay: 1s; }
        @keyframes dot-flashing { 0% { background-color: var(--bv-green); } 50%, 100% { background-color: #ebe6ff; } }

        /* LOGO COM FUNDO TRANSPARENTE */
        img[src*="logo_buscavoto.png"] {
            background: transparent !important;
        }

        .simulation-cta-container { width: 100%; display: flex; justify-content: center; margin-top: 30px; }
        .simulation-cta { display: inline-block; text-align: center; font-weight: 800; color: white; font-size: 22px; padding: 22px 45px; background: #10b981; border-radius: 22px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); cursor: pointer; transition: var(--transition); border: 3px solid transparent; max-width: 95%; text-decoration: none; }
        .simulation-cta:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.12); opacity: 0.9; }
        body.dark-mode .simulation-cta { background: white; color: #0f172a; }

        @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); max-height: 0; } to { opacity: 1; transform: translateY(0); max-height: 10000px; } }

        /* SEÇÕES GERAIS */
        .comparison-section { padding: 120px 20px; background-color: var(--bv-white); }
        
/* =========================================================
   POUP E TEMPO – CARROSSEL DESKTOP (ANTES/DEPOIS)
   (Mobile continua empilhado/normal)
========================================================= */

/* Estrutura geral já existente: .comparison-section, .comparison-container etc */

/* Carrossel: padrão (mobile) = coluna, sem scroll forçado */
.comparison-carousel {
  width: 100%;
}

.comparison-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.comparison-carousel-track::-webkit-scrollbar { display: none; }

.comparison-slide {
  flex: 0 0 92%;
  scroll-snap-align: start;
}

.comparison-dots {
  display: none; /* dots só no desktop */
}

/* Desktop: vira carrossel “1 slide por vez”, mesma área */
@media (min-width: 1024px) {
  .comparison-right {
    position: relative;
  }

  .comparison-carousel {
    position: relative;
    max-width: 560px; /* largura do bloco do comparativo */
    margin-left: auto;
  }

  /* Linha vertical como na referência */
  .comparison-carousel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    border-radius: 3px;
    background: rgba(15, 23, 42, 0.22);
  }

  /* Espaço para a linha */
  .comparison-carousel-track {
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-left: 26px;
  }

  .comparison-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }

  /* Garante que cada “card” ocupe a largura do slide */
  .comparison-col {
    width: 100%;
  }

  /* Dots */
  .comparison-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-left: 26px; /* alinha com o track */
  }

  .comparison-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.18);
    cursor: pointer;
  }

  .comparison-dots .dot.is-active {
    background: rgba(15, 23, 42, 0.75);
  }
}

/* Melhor alinhamento do botão no card do BuscaVoto */
.comparison-col .btn-vencer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 18px;
}
        .comparison-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: flex-start; gap: 60px; }
        .comparison-left h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.1; font-weight: 900; margin-bottom: 30px; color: var(--text-main); }
        .comparison-left p { font-size: 20px; color: var(--bv-slate); margin-bottom: 40px; }
        .btn-teste { display: inline-block; background: var(--bv-green); color: white; padding: 22px 45px; border-radius: 18px; font-weight: 800; text-decoration: none; font-size: 18px; transition: var(--transition); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
        .comparison-right { display: flex; flex-direction: column; gap: 30px; }
        .comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .comp-column { background: var(--bv-white); padding: 40px 30px; border-radius: 24px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 20px; border: 1px solid var(--border-color); }
        .comp-column h4 { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: var(--text-main); }
        .comp-list { list-style: none; }
        .comp-list li { margin-bottom: 15px; font-size: 15px; color: var(--bv-slate); font-weight: 500; }
        .cost-comparison-redesigned { background: transparent; padding: 40px 0; display: flex; flex-direction: column; gap: 40px; }
        .comparison-columns { display: flex; flex-direction: column; gap: 30px; }
        .comparison-col { background: var(--bv-white); border: 2px solid var(--border-color); border-radius: 24px; padding: 30px; display: flex; flex-direction: column; gap: 20px; transition: var(--transition); }
        .comparison-col.traditional { border-color: #fee2e2; background: #fef2f2; }
        .comparison-col.buscavoto { border: 2px solid var(--bv-green); background: var(--bv-green-pale); }
        body.dark-mode .comparison-col { background: var(--bg-card); border-color: var(--border-color); }
        body.dark-mode .comparison-col.traditional { background: rgba(254, 242, 242, 0.05); border-color: rgba(254, 100, 100, 0.3); }
        body.dark-mode .comparison-col.buscavoto { background: rgba(16, 185, 129, 0.05); border-color: var(--bv-green); }
        .col-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
        .col-header .col-icon { font-size: 32px; }
        .col-header h3 { font-size: 20px; font-weight: 800; color: var(--text-main); }
        .comparison-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .comparison-list li { font-size: 14px; color: var(--text-main); line-height: 1.5; }
        .comparison-list li strong { color: var(--text-main); font-weight: 700; }
        .cost-box { background: rgba(16, 185, 129, 0.1); padding: 20px; border-radius: 16px; display: flex; flex-direction: column; gap: 10px; text-align: center; }
        .comparison-col.traditional .cost-box { background: rgba(254, 100, 100, 0.1); }
        .cost-label { font-size: 13px; font-weight: 600; color: var(--bv-slate); }
        .cost-value { font-size: 24px; font-weight: 900; color: var(--bv-green); }
        .comparison-col.traditional .cost-value { color: #dc2626; }
        .cost-bv { display: flex; justify-content: space-between; align-items: center; font-weight: 900; color: var(--bv-green); font-size: 24px; }
        .btn-vencer { display: block; width: 100%; background: var(--bv-dark); color: white; text-align: center; padding: 22px; border-radius: 15px; text-decoration: none; font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }

        .kp-modes-section { padding: 120px 20px; background: var(--bv-green); }
        .kp-modes-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            background: var(--bg-card); 
            border-radius: 40px; 
            padding: 60px; 
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.08),
                0 20px 60px rgba(0,0,0,0.06),
                0 40px 100px rgba(0,0,0,0.04); 
            border: 1px solid var(--border-color);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .kp-modes-container:hover {
            transform: translateY(-4px);
            box-shadow: 
                0 15px 40px rgba(0,0,0,0.1),
                0 25px 70px rgba(0,0,0,0.08),
                0 50px 120px rgba(0,0,0,0.06);
        }
        .kp-modes-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 70px; }
        .kp-mode-btn { 
            padding: 18px 36px; 
            border-radius: 25px; 
            border: 2px solid var(--border-color); 
            background: var(--bg-card); 
            cursor: pointer; 
            font-weight: 700; 
            font-size: 15px;
            color: var(--bv-slate); 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            font-family: inherit;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transform: translateY(0);
        }
        .kp-mode-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-color: var(--bv-green);
        }
        .kp-mode-btn.active { 
            border-color: var(--bv-green); 
            background: linear-gradient(135deg, var(--bv-green-light) 0%, var(--bv-green-pale) 100%); 
            color: var(--bv-green);
            box-shadow: 
                0 8px 20px rgba(16, 185, 129, 0.15),
                0 4px 12px rgba(16, 185, 129, 0.1);
            transform: translateY(-2px);
        }
        .kp-mode-content { display: none; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
        .kp-mode-content.active { display: grid; animation: fadeInUp 0.5s ease; }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .kp-mode-text h2 { 
            font-size: clamp(32px, 4.5vw, 48px); 
            margin-bottom: 30px; 
            font-weight: 900; 
            color: var(--text-main); 
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        .kp-mode-text p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--bv-slate);
            margin-top: 20px;
        }
        
        /* WHATSAPP SIMULATOR */
        .iphone-frame {
            width: 320px;
            height: 640px;
            background: #000;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.25),
                0 40px 80px rgba(0,0,0,0.15),
                0 60px 120px rgba(0,0,0,0.1);
            position: relative;
            margin: 0 auto;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        .iphone-frame:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.3),
                0 50px 100px rgba(0,0,0,0.2),
                0 70px 140px rgba(0,0,0,0.15);
        }
	        .iphone-frame.blurred .iphone-screen > *:not(.wa-overlay-text) { filter: blur(15px); }
	        .iphone-screen {
	            width: 100%;
	            height: 100%;
	            background: #e5ddd5 !important;
	            border-radius: 30px;
	            overflow: hidden;
	            display: flex;
	            flex-direction: column;
	            position: relative;
	        }
	        .whatsapp-header {
	            background: #075e54 !important;
	            color: white !important;
	            padding: 35px 15px 10px;
	            display: flex;
	            align-items: center;
	            gap: 10px;
	            z-index: 2;
	        }
	        .wa-avatar { width: 35px; height: 35px; border-radius: 50%; background: #eee; overflow: hidden; display: flex; align-items: center; justify-content: center; }
	        .wa-avatar img { width: 80%; height: 80%; object-fit: contain; }
        .wa-info { display: flex; flex-direction: column; }
        .wa-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 4px; }
        .wa-status { font-size: 10px; opacity: 0.8; }
        .wa-verified { width: 14px; height: 14px; }
        
        .whatsapp-chat {
            flex: 1;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            overflow-y: auto;
            scrollbar-width: none;
            padding-bottom: 60px;
        }
        .whatsapp-chat::-webkit-scrollbar { display: none; }
        
	        .wa-bubble {
	            max-width: 85%;
	            padding: 8px 12px;
	            border-radius: 8px;
	            font-size: 13px;
	            position: relative;
	            box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	            animation: waFadeIn 0.5s ease forwards;
	            word-wrap: break-word;
	            overflow-wrap: break-word;
	            color: #000 !important;
	        }
	        .wa-left { align-self: flex-start; background: white !important; border-top-left-radius: 0; }
	        .wa-right { align-self: flex-end; background: #dcf8c6 !important; border-top-right-radius: 0; }
        
	        .whatsapp-footer {
	            position: absolute;
	            bottom: 0;
	            width: 100%;
	            background: #f0f0f0 !important;
	            padding: 10px 15px 25px;
	            display: flex;
	            align-items: center;
	            gap: 10px;
	            z-index: 2;
	        }
	        .wa-plus { font-size: 24px; color: #007aff; }
	        .wa-input-fake { flex: 1; background: white; border-radius: 20px; height: 35px; border: 1px solid #ddd; }

	        /* VIDEO CAPTIONS */
	        .video-captions-overlay {
	            position: absolute;
	            bottom: 40px;
	            left: 15px;
	            right: 15px;
	            background: rgba(0, 0, 0, 0.75);
	            color: white;
	            padding: 15px;
	            border-radius: 15px;
	            font-size: 14px;
	            font-weight: 600;
	            text-align: center;
	            backdrop-filter: blur(5px);
	            z-index: 10;
	            opacity: 0;
	            transform: translateY(10px);
	            transition: all 0.3s ease;
	            pointer-events: none;
	            border: 1px solid rgba(255, 255, 255, 0.1);
	        }
	        .video-captions-overlay.active {
	            opacity: 1;
	            transform: translateY(0);
	        }
	        
	        /* FINAL SCREEN OVERLAY */
	        .explore-final-screen {
	            position: absolute;
	            top: 0; left: 0; width: 100%; height: 100%;
	            background: rgba(0, 0, 0, 0.6);
	            display: flex;
	            flex-direction: column;
	            align-items: center;
	            justify-content: center;
	            color: white;
	            opacity: 0;
	            visibility: hidden;
	            transition: all 0.8s ease;
	            z-index: 20;
	            text-align: center;
	            padding: 20px;
	        }
	        .explore-final-screen.active {
	            opacity: 1;
	            visibility: visible;
	        }
	        .explore-final-screen h3 { font-size: 32px; font-weight: 300; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
	        .explore-final-screen .final-logo { width: 260px; margin-bottom: 20px; filter: brightness(0) invert(1); }
	        .explore-final-screen p { font-size: 22px; font-weight: 800; color: var(--bv-green); letter-spacing: 1px; text-transform: uppercase; }
	        
	        #explore-video { transition: filter 0.8s ease; }
	        #explore-video.blurred { filter: blur(15px); }

	        .caption-logo {
	            display: block;
	            width: 120px;
	            margin: 10px auto 0;
	            filter: brightness(0) invert(1);
	        }
	        .wa-icons-right { display: flex; gap: 15px; align-items: center; padding-right: 5px; }
	        .wa-icons-right img { height: 24px; width: 24px; object-fit: contain; filter: grayscale(1) brightness(0.5); opacity: 0.6; }

	        .wa-overlay-text {
	            position: absolute;
	            top: 0;
	            left: 0;
	            width: 100%;
	            height: 100%;
	            display: flex;
	            flex-direction: column;
	            justify-content: center;
	            align-items: center;
	            padding: 30px;
	            text-align: center;
	            z-index: 1000;
	            opacity: 0;
	            transition: all 0.8s ease;
	            pointer-events: none;
	            background: rgba(15, 23, 42, 0.95);
	            backdrop-filter: blur(10px);
	            color: white;
	        }
        .wa-overlay-text.visible { opacity: 1; }
        .wa-overlay-text h3 { font-size: 24px; font-weight: 800; color: white; margin-bottom: 15px; }
        .wa-overlay-text img { width: 180px; margin-top: 10px; filter: brightness(0) invert(1); }

        @keyframes waFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* FOOTER */
        .kp-footer { padding: 120px 20px; background: var(--bv-white); }
        .kp-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; max-width: 1200px; margin: 0 auto; align-items: center; }
        .footer-left { display: flex; flex-direction: column; gap: 20px; }
        .footer-left h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: var(--text-main); }
        .footer-left p { font-size: 18px; color: var(--bv-slate); }
        .contact-info { display: flex; flex-direction: column; gap: 15px; }
        .contact-item { font-size: 18px; font-weight: 700; color: var(--text-main); text-decoration: none; }
        .footer-right { background: var(--bv-green-pale); padding: 50px; border-radius: 32px; box-shadow: var(--shadow-lg); border: 2px solid var(--bv-green); width: 100%; }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group textarea { width: 100%; padding: 15px; border-radius: 12px; border: 1px solid var(--border-color); background: var(--bv-white); color: var(--text-main); font-family: inherit; font-size: 16px; }
        .btn-submit { width: 100%; background: var(--bv-green); color: white; border: none; padding: 18px; border-radius: 12px; font-weight: 800; font-size: 18px; cursor: pointer; transition: var(--transition); }

        .final-cta-section { padding: 60px 20px; text-align: center; background: var(--bv-green-pale); }

        /* --- REFORMULAÇÃO MOBILE --- */
        @media (max-width: 768px) {
            #main-header { top: 10px; width: 95%; height: 70px; padding: 10px 20px; }
            .hero { padding: 120px 0 40px; }
            .hero-container { background: transparent; box-shadow: none; padding: 20px; border-radius: 0; }
            .chat-header { display: none; }
            .chat-body { flex-direction: column; align-items: center; text-align: center; margin-top: 0; gap: 20px; }
	            .chat-icon-lupa { width: auto; height: auto; margin-top: 0; margin-bottom: 40px; flex-direction: column; justify-content: center; gap: 15px; }
	            .chat-icon-lupa img { height: 80px; width: auto; }
                .hero-gps-text { font-size: 22px; text-align: center; }
            .chat-content { padding-top: 20px; align-items: center; width: 100%; }
            .chat-question { font-size: 28px; margin-bottom: 25px; text-align: center; min-height: 110px; }
            .insights-header { margin-bottom: 25px; margin-top: 20px; }
            .insights-section { width: 100vw; margin-left: -20px; }
            .insight-card { padding: 12px 25px; font-size: 15px; }
            .simulation-area { background: transparent; padding: 20px 0; border-top: none; margin-top: 20px; }
            .chat-bubble { max-width: 90%; font-size: 16px; padding: 15px; }
	            .bubble-bot { background: transparent; border: none; box-shadow: none; padding: 10px 0; max-width: 100%; text-align: left; align-self: flex-start; }
	            .bubble-bot .bubble-time { text-align: left; }
            .bubble-user { background: var(--bv-green); color: white; border-radius: 20px; border-bottom-right-radius: 5px; padding: 15px; box-shadow: var(--shadow-md); }
            .simulation-cta { font-size: 16px; padding: 15px; width: 100%; }
            .comparison-container, .kp-footer-grid, .kp-mode-content { grid-template-columns: 1fr; gap: 40px; }
            .comparison-left h2 { font-size: 32px; text-align: center; }
            .kp-modes-container { padding: 30px 20px; border-radius: 30px; }
            .kp-modes-nav { flex-direction: column; gap: 10px; }
            .footer-right { padding: 30px 20px; }
        }

        /* FAQ SECTION */
        .faq-section {
            background-color: #3e9ade;
            padding: 80px 20px;
            color: white;
            font-family: 'Poppins', sans-serif;
        }
        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .faq-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            min-height: 1.5em;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 25px;
            transition: var(--transition);
            cursor: pointer;
        }
        .faq-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .faq-question {
            font-weight: 600;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            margin-top: 15px;
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.9;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-icon {
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        .typing-cursor-white::after { 
            content: "|"; 
            animation: blink 1s infinite; 
            color: white; 
            margin-left: 2px; 
        }
            /* Estilos para o novo bloco BuscaVoto */
    .bv-how-it-works {
        background-color: #1a1a1a; /* Fundo escuro como na imagem */
        padding: 80px 20px;
        font-family: 'Poppins', sans-serif;
        color: white;
        overflow: hidden;
    }

    .bv-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    /* Visual dos Celulares */
    .bv-visual-area {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .bv-phone-mockup {
        background: #262626;
        border-radius: 25px;
        border: 8px solid #333;
        width: 220px;
        height: 380px;
        position: relative;
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .bv-phone-header {
        height: 40px;
        background: #333;
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .bv-wa-icon { width: 20px; height: 20px; background: #10b981; border-radius: 4px; }
    .bv-wa-call { width: 20px; height: 20px; background: #444; border-radius: 50%; }

    .bv-chat-body {
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 11px;
    }

    .bv-msg {
        padding: 8px 12px;
        border-radius: 12px;
        max-width: 85%;
        line-height: 1.4;
    }

    .bv-msg-user {
        align-self: flex-end;
        background: #333;
        color: #eee;
        border-bottom-right-radius: 2px;
    }

    .bv-msg-bot {
        align-self: flex-start;
        background: #10b981;
        color: white;
        border-bottom-left-radius: 2px;
        position: relative;
    }

    .bv-bot-avatar {
        position: absolute;
        right: -20px;
        top: 0;
        font-size: 14px;
    }

    .bv-phone-footer {
        height: 45px;
        background: #333;
        display: flex;
        align-items: center;
        padding: 0 10px;
        gap: 8px;
    }
    
/* ===== COMO FUNCIONA – CELULARES MAIS SOBREPOSTOS ===== */
.bv-how-it-works .bv-visual-area {
  position: relative; /* garante referência pros phones */
}

.bv-how-it-works .bv-phone-mockup {
  position: absolute; /* permite sobreposição */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Phone da frente */
.bv-how-it-works .bv-phone-1 {
  z-index: 2;
  transform: translate(-58%, -52%) rotate(-6deg);
}

/* Phone de trás (bem colado) */
.bv-how-it-works .bv-phone-2 {
  z-index: 1;
  transform: translate(-38%, -44%) rotate(6deg);
  opacity: 0.92;
}

    .bv-wa-plus { color: #10b981; font-size: 20px; font-weight: bold; }
    .bv-wa-input { flex: 1; height: 25px; background: #444; border-radius: 15px; }
    .bv-wa-input-small { flex: 1; height: 20px; background: #444; border-radius: 10px; }
    .bv-wa-mic, .bv-wa-send { width: 25px; height: 25px; background: #10b981; border-radius: 50%; }

    /* Área de Texto */
    .bv-text-area {
        text-align: center;
        max-width: 700px;
    }

    .bv-title-green {
        color: #10b981;
        font-size: 100px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .bv-subtitle-white {
        color: white;
        font-size: 42px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 40px;
    }

    .bv-description {
        font-size: 18px;
        line-height: 1.6;
        color: #ccc;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

.bv-description strong {
    color: white;
    font-weight: 600;
}
/* ===== COMO FUNCIONA – ENTRADA (DESKTOP + MOBILE) ===== */
.bv-how-it-works .bv-container {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bv-how-it-works.is-visible .bv-container {
  opacity: 1;
  transform: translateX(0);
}
/* ===== COMO FUNCIONA – WHATSAPP LOOK ===== */
.bv-phone-mockup {
  background: #ffffff;              /* celular branco */
  border: 10px solid #f1f5f9;       /* borda clara */
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.bv-phone-header,
.bv-phone-footer {
  background: #ffffff;
}

.bv-chat-body {
  background: #e5ddd5;              /* bege WhatsApp */
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Bolhas */
.bv-msg {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease, transform 350ms ease;
}

/* Quando ativar, elas “caem” */
.bv-msg.is-on {
  opacity: 1;
  transform: translateY(0);
}

/* Direita branca */
.bv-msg-user {
  background: #ffffff;
  color: #0f172a;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* Esquerda verde */
.bv-msg-bot {
  background: #10b981;
  color: #ffffff;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* Ajustes do “avatar” se estiver aparecendo estranho */
.bv-bot-avatar {
  display: none; /* opcional: some com o robozinho */
}

/* ===== COMO FUNCIONA – DESKTOP (GRID CORRETO E ESCOPADO) ===== */
@media (min-width: 1024px) {
  .bv-how-it-works .bv-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 520px 1fr; /* celulares | texto */
    grid-template-rows: auto auto;    /* título | conteúdo */
    column-gap: 80px;
    row-gap: 30px;

    align-items: center;
  }

  /* Título ocupa a linha inteira */
  .bv-how-it-works .bv-title-area {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    margin: 0;
  }

  /* Celulares na esquerda */
  .bv-how-it-works .bv-visual-area {
    grid-column: 1;
    grid-row: 2;

    width: 520px;
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Texto na direita */
  .bv-how-it-works .bv-copy-area {
    grid-column: 2;
    grid-row: 2;

    width: auto;
    text-align: left;
  }
}
/* ===== TÍTULO MAIOR SÓ NO DESKTOP (UMA LINHA) ===== */ 
@media (min-width: 1024px) {
  .bv-how-it-works .bv-title-green {
    font-size: 100px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 10px;

    /* 🔒 trava quebra de linha */
    white-space: nowrap;

    /* segurança extra */
    display: inline-block;
  }
}


/* ===== COMPARATIVO (POUPE TEMPO) – CARROSSEL NO DESKTOP ===== */
@media (min-width: 1024px) {
  /* vira carrossel arrastável */
  .comparison-right .comparison-columns,
  #comparison-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10px 24px;
    cursor: grab;
    user-select: none;
  }
  .comparison-right .comparison-columns:active,
  #comparison-carousel:active { cursor: grabbing; }

  /* cada card vira “slide” */
  .comparison-right .comparison-col,
  #comparison-carousel .comparison-col {
    flex: 0 0 520px;         /* largura do slide no desktop */
    scroll-snap-align: start;
  }

  /* esconde scrollbar */
  .comparison-right .comparison-columns::-webkit-scrollbar,
  #comparison-carousel::-webkit-scrollbar { display: none; }
  .comparison-right .comparison-columns { scrollbar-width: none; }

  /* evita o layout “espichado” */
  .comparison-right { align-items: flex-start; }
}

/* =========================================================
   [FIX] #poupe-tempo — Carrossel SOMENTE no desktop (>=1024px)
   - Mobile permanece em coluna (layout original)
   - Desktop: 1 card por vez (slides ocupam o mesmo espaço)
   - Escopo estrito: apenas #poupe-tempo
========================================================= */

/* Mobile / base: garante coluna e sem scroll horizontal */
#poupe-tempo .comparison-columns.comparison-carousel-track {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: visible;
  scroll-snap-type: none;
}

/* UI do carrossel (setas/dots) só existe para desktop */
#poupe-tempo .comparison-carousel-ui { display: none; }

@media (min-width: 1024px) {
  /* Track horizontal (lado a lado) */
  #poupe-tempo .comparison-columns.comparison-carousel-track {
    --snap-pad: 26px;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    padding-left: var(--snap-pad) !important;
    padding-right: 8px !important;
    padding-top: 10px !important;
    padding-bottom: 24px !important;

    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--snap-pad);
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }

  #poupe-tempo .comparison-columns.comparison-carousel-track:active { cursor: grabbing; }
  #poupe-tempo .comparison-columns.comparison-carousel-track::-webkit-scrollbar { display: none; }

  /* Cada wrapper vira um slide com largura da "janela" */
  #poupe-tempo .comparison-columns.comparison-carousel-track > .comparison-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    scroll-snap-align: start;
  }

  /* Card ocupa o slide todo */
  #poupe-tempo .comparison-columns.comparison-carousel-track > .comparison-slide > .comparison-col {
    width: 100%;
  }

  /* Linha vertical (mantém o visual da seção) */
  #poupe-tempo .comparison-right { position: relative; align-items: flex-start; }
  #poupe-tempo .comparison-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    border-radius: 3px;
    background: rgba(15, 23, 42, 0.22);
  }

  /* UI (setas + dots) */
  #poupe-tempo .comparison-carousel-ui {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    padding-left: var(--snap-pad);
  }

  #poupe-tempo .comparison-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    cursor: pointer;
    line-height: 1;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  }

  #poupe-tempo .comparison-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  #poupe-tempo .comparison-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.18);
    cursor: pointer;
  }

  #poupe-tempo .comparison-dots .dot.is-active {
    background: rgba(15, 23, 42, 0.75);
  }
}

/* =========================================================
   [NOVO COMPARATIVO] #poupe-tempo — visual "Antes vs Depois"
   - Escopo 100% restrito ao ID #poupe-tempo
   - Não depende de JS
   - Responsivo (desktop 2 colunas, mobile empilha)
========================================================= */

#poupe-tempo .bv-impact{width:100%;}
#poupe-tempo .bv-impact__container{width:min(1180px,calc(100% - 48px));margin:0 auto;}
#poupe-tempo .bv-impact__head{text-align:center;margin-bottom:34px;}
#poupe-tempo .bv-impact__title{margin:0;font-size:clamp(34px,4.2vw,56px);line-height:1.02;letter-spacing:-0.03em;color:var(--text-main);font-weight:900;}
#poupe-tempo .bv-impact__subtitle{margin:12px auto 0;max-width:740px;font-size:16px;line-height:1.6;color:var(--bv-slate);font-weight:600;}

#poupe-tempo .bv-impact__grid{display:grid;grid-template-columns:1fr auto 1fr;gap:22px;align-items:stretch;margin-top:28px;}
#poupe-tempo .bv-impact__divider{display:flex;align-items:center;justify-content:center;}
#poupe-tempo .bv-impact__chevrons{width:62px;height:62px;border-radius:999px;border:1px solid rgba(15,23,42,0.10);background:rgba(255,255,255,0.70);box-shadow:0 18px 34px rgba(15,23,42,0.08);display:inline-flex;align-items:center;justify-content:center;font-size:22px;font-weight:900;color:rgba(15,23,42,0.35);}

#poupe-tempo .bv-impact__card{
  border-radius:22px;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 22px 48px rgba(15,23,42,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:560px;
  transform:translateY(0) rotateX(0deg);
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#poupe-tempo .bv-impact__card:hover{
  transform:translateY(-8px) rotateX(2deg);
}
#poupe-tempo .bv-impact__card--bad{
  background:linear-gradient(180deg,#ff6b6b,#ffa5a5);
  border-color:#f87171;
  box-shadow:
    0 4px 8px rgba(239,68,68,0.15),
    0 12px 24px rgba(239,68,68,0.12),
    0 24px 48px rgba(239,68,68,0.1),
    inset 0 -4px 12px rgba(239,68,68,0.08);
}
#poupe-tempo .bv-impact__card--bad:hover{
  box-shadow:
    0 8px 16px rgba(239,68,68,0.2),
    0 16px 32px rgba(239,68,68,0.15),
    0 32px 64px rgba(239,68,68,0.12),
    inset 0 -4px 12px rgba(239,68,68,0.08);
}
#poupe-tempo .bv-impact__card--good{
  background:linear-gradient(180deg,#34d399,#6ee7b7);
  border-color:#10b981;
  box-shadow:
    0 4px 8px rgba(16,185,129,0.15),
    0 12px 24px rgba(16,185,129,0.12),
    0 24px 48px rgba(16,185,129,0.1),
    inset 0 -4px 12px rgba(16,185,129,0.08);
}
#poupe-tempo .bv-impact__card--good:hover{
  box-shadow:
    0 8px 16px rgba(16,185,129,0.2),
    0 16px 32px rgba(16,185,129,0.15),
    0 32px 64px rgba(16,185,129,0.12),
    inset 0 -4px 12px rgba(16,185,129,0.08);
}

#poupe-tempo .bv-impact__cardBody{padding:26px 26px 18px;display:flex;flex-direction:column;gap:18px;}
#poupe-tempo .bv-impact__cardTop{display:flex;gap:12px;align-items:flex-start;}
#poupe-tempo .bv-impact__chip{width:34px;height:34px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;font-weight:900;flex:0 0 auto;}
#poupe-tempo .bv-impact__chip--bad{background:rgba(239,68,68,0.18);color:#ef4444;}
#poupe-tempo .bv-impact__chip--good{background:rgba(16,185,129,0.18);color:var(--bv-green);}

#poupe-tempo .bv-impact__kicker{font-size:18px;font-weight:800;color:rgba(15,23,42,0.75);margin-top:2px;}
#poupe-tempo .bv-impact__h3{margin:10px 0 0;font-size:36px;line-height:1.05;letter-spacing:-0.02em;font-weight:900;color:var(--text-main);}

#poupe-tempo .bv-impact__list{list-style:none;padding:0;margin:0;display:grid;gap:14px;}
#poupe-tempo .bv-impact__list li{display:flex;gap:10px;align-items:flex-start;font-size:15px;line-height:1.5;color:rgba(15,23,42,0.78);font-weight:600;}
#poupe-tempo .bv-impact__mark{width:26px;height:26px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;font-weight:900;flex:0 0 auto;margin-top:2px;}
#poupe-tempo .bv-impact__mark--bad{background:rgba(239,68,68,0.14);color:#ef4444;}
#poupe-tempo .bv-impact__mark--good{background:rgba(16,185,129,0.14);color:var(--bv-green);}

#poupe-tempo .bv-impact__illus{margin-top:auto;padding:18px 22px 22px;position:relative;min-height:180px;display:flex;align-items:flex-end;justify-content:center;}
#poupe-tempo .bv-impact__illus::before{content:"";position:absolute;inset:0;opacity:0.65;pointer-events:none;background:radial-gradient(120px 80px at 24% 65%,rgba(255,255,255,0.70),transparent 60%),radial-gradient(160px 100px at 72% 72%,rgba(255,255,255,0.75),transparent 62%);}
#poupe-tempo .bv-impact__illusInner{position:relative;width:100%;max-width:360px;border-radius:18px;border:1px dashed rgba(15,23,42,0.18);background:rgba(255,255,255,0.55);padding:18px 18px;display:grid;gap:10px;}
#poupe-tempo .bv-impact__illusRow{display:flex;justify-content:space-between;gap:12px;font-size:12px;font-weight:800;color:rgba(15,23,42,0.65);}
#poupe-tempo .bv-impact__illusBig{font-size:42px;line-height:1;}

#poupe-tempo .bv-impact__metrics{margin:26px auto 0;width:min(980px,100%);border-radius:22px;border:1px solid rgba(15,23,42,0.10);background:rgba(16,185,129,0.06);box-shadow:0 22px 48px rgba(15,23,42,0.08);padding:22px 24px;display:grid;gap:18px;}
#poupe-tempo .bv-impact__metric{display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:center;}
#poupe-tempo .bv-impact__metricIcon{width:38px;height:38px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;font-weight:900;background:rgba(16,185,129,0.14);color:var(--bv-green);}
#poupe-tempo .bv-impact__metricText{display:grid;gap:4px;}
#poupe-tempo .bv-impact__metricTitle{font-size:22px;line-height:1.1;font-weight:900;color:var(--text-main);letter-spacing:-0.02em;}
#poupe-tempo .bv-impact__metricTitle strong{color:var(--bv-green);}
#poupe-tempo .bv-impact__metricSub{font-size:14px;font-weight:700;color:rgba(15,23,42,0.65);}

#poupe-tempo .bv-impact__ctaRow{margin-top:24px;display:flex;justify-content:center;}
#poupe-tempo .bv-impact__ctaRow .btn-vencer{min-width:300px;}

@media (max-width: 980px){
  #poupe-tempo .bv-impact__grid{grid-template-columns:1fr;}
  #poupe-tempo .bv-impact__divider{display:none;}
  #poupe-tempo .bv-impact__card{min-height:auto;}
  #poupe-tempo .bv-impact__head{text-align:left;}
  #poupe-tempo .bv-impact__subtitle{margin-left:0;}
  #poupe-tempo .bv-impact__metrics{padding:18px 18px;}
  #poupe-tempo .bv-impact__ctaRow .btn-vencer{width:100%;min-width:0;}
}

/* =========================
   TESTEMUNHAIS (novo bloco)
   Entre "Veja na prática" e FAQ
========================= */
.bv-testimonials{
  padding: 80px 16px;
  background: #ffffff;
}

body.dark-mode .bv-testimonials{
  background: #0b0b0b;
}

.bv-testimonials__container{
  width: min(1100px, 100%);
  margin: 0 auto;
}

.bv-testimonials__head{
  text-align: center;
  margin-bottom: 32px;
}

.bv-testimonials__title{
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 10px;
  color: var(--bv-dark);
}

body.dark-mode .bv-testimonials__title{
  color: #fff;
}

.bv-testimonials__subtitle{
  margin: 0 auto;
  max-width: 720px;
  color: var(--bv-slate);
  font-size: 16px;
  line-height: 1.5;
}

body.dark-mode .bv-testimonials__subtitle{
  color: rgba(255,255,255,0.78);
}

.bv-testimonials__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bv-testimonial{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  padding: 18px;
  background: rgba(16,185,129,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

body.dark-mode .bv-testimonial{
  border-color: rgba(255,255,255,0.10);
  background: rgba(16,185,129,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.bv-testimonial__stars{
  letter-spacing: 2px;
  color: var(--bv-green);
  font-size: 14px;
  margin-bottom: 10px;
}

.bv-testimonial__quote{
  margin: 0 0 14px;
  color: var(--bv-dark);
  line-height: 1.55;
  font-size: 15px;
}

body.dark-mode .bv-testimonial__quote{
  color: #fff;
}

.bv-testimonial__author{
  display: flex;
  align-items: center;
  gap: 12px;
}

.bv-testimonial__avatar{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--bv-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.bv-testimonial__name{
  font-weight: 800;
  color: var(--bv-dark);
  font-size: 14px;
}

body.dark-mode .bv-testimonial__name{
  color: #fff;
}

.bv-testimonial__role{
  color: var(--bv-slate);
  font-size: 13px;
}

body.dark-mode .bv-testimonial__role{
  color: rgba(255,255,255,0.75);
}

.bv-testimonials__cta{
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.bv-testimonials__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--bv-green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(16,185,129,0.25);
  transition: transform .15s ease, opacity .15s ease;
}

.bv-testimonials__btn:hover{
  transform: translateY(-1px);
  opacity: .96;
}

@media (max-width: 980px){
  .bv-testimonials__grid{
    grid-template-columns: 1fr;
  }
  .bv-testimonials{
    padding: 56px 16px;
  }
}
/* =========================================================
   CSS ADICIONAL - Apenas para o botão WhatsApp
   Adicione este código no FINAL do seu style.css
========================================================= */

/* Botão WhatsApp estilizado */
.whatsapp-button {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
