/* ============================================================
   Anna Vitoria - Funil de Mapeamento Vocal
   Modern, fluid, responsive
   ============================================================ */

/* --- Base --- */
.funnel-page {
    min-height: 100vh;
    background: #f5f3f0;
    font-family: 'Poppins', 'Raleway', sans-serif;
}

.funnel-header {
    padding: 1rem 2rem;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.funnel-header-logo img { height: 36px; }
.funnel-content { display: flex; flex-direction: column; align-items: center; padding: 0; }
.funnel-footer { text-align: center; padding: 2rem 1rem; font-size: 0.75rem; color: #999; }
.funnel-footer a { color: #999; text-decoration: none; }
.funnel-footer a:hover { text-decoration: underline; }

/* ============================================================
   Landing Page (cadastro = first page)
   ============================================================ */
.funnel-landing {
    max-width: 100%;
    margin: 0 auto;
}

/* Banner */
.funnel-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.funnel-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 360px;
}

.funnel-banner-gradient {
    background: linear-gradient(135deg, #2B0101 0%, #960000 50%, #6b1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 200px;
    line-height: normal;
}

.funnel-banner-logo {
    height: 60px;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Form wrapper */
.funnel-form-wrapper {
    max-width: 520px;
    width: 100%;
    margin: -2rem auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.funnel-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.5rem 2.25rem;
}

/* Form header */
.funnel-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.funnel-form-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.funnel-form-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B0101;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.funnel-form-header p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Form fields */
.funnel-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.funnel-field {
    position: relative;
}

.funnel-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #65534a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.funnel-form-card input[type="text"],
.funnel-form-card input[type="email"],
.funnel-form-card input[type="tel"],
.funnel-form-card input[type="password"],
.funnel-form-card select,
.funnel-field input,
.funnel-field select {
    display: block;
    width: 100% !important;
    padding: 0.85rem 1.1rem !important;
    border: 1.5px solid #ddd8d3 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    color: #2B0101 !important;
    background: #f8f6f3 !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.4 !important;
    height: auto !important;
}

.funnel-field input::placeholder,
.funnel-form-card input::placeholder {
    color: #b0a89e !important;
    font-weight: 400;
}

.funnel-field input:focus,
.funnel-field select:focus,
.funnel-form-card input:focus,
.funnel-form-card select:focus {
    border-color: #960000 !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(150, 0, 0, 0.07) !important;
}

.funnel-field select,
.funnel-form-card select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5L2.5 5h11z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    padding-right: 2.75rem !important;
    cursor: pointer;
}

/* Icon inside field - wrapper é relativo ao input, não ao label */
.funnel-field-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.funnel-field-icon input {
    padding-left: 2.75rem !important;
    width: 100% !important;
}

.funnel-field-icon > svg {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: #b0a89e;
    pointer-events: none;
    z-index: 1;
    flex-shrink: 0;
}

/* Select personalizado - evitar duplicação */
    background-position: right 1rem center !important;
    padding-right: 2.75rem !important;
    cursor: pointer !important;
}

.funnel-field select option {
    padding: 0.5rem;
    font-size: 0.95rem;
}

/* Submit button */
.funnel-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #960000, #7a0000);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 0, 0, 0.25);
}

.funnel-btn-submit:hover {
    background: linear-gradient(135deg, #7a0000, #5a0000);
    box-shadow: 0 6px 20px rgba(150, 0, 0, 0.35);
    transform: translateY(-1px);
}

.funnel-btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(150, 0, 0, 0.2);
}

.funnel-btn-submit svg { flex-shrink: 0; }

/* Disclaimer */
.funnel-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 1.25rem;
    line-height: 1.5;
}

/* ============================================================
   Step Pages (perguntas)
   ============================================================ */
.funnel-step-container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Progress */
.funnel-progress { margin-bottom: 1.5rem; }

.funnel-progress-bar {
    height: 5px;
    background: #e5e2de;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.funnel-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #960000, #c44040);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.funnel-progress-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #960000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Question Card */
.funnel-question-card {
    padding: 2rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.funnel-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B0101;
    margin: 0 0 1.5rem;
    line-height: 1.4;
    text-align: center;
}

/* Answer Buttons */
.funnel-answers-list { display: flex; flex-direction: column; gap: 0.6rem; }

.funnel-answer-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 1.5px solid #e5e2de;
    border-radius: 12px;
    background: #faf9f7;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    line-height: 1.4;
    position: relative;
}

.funnel-answer-btn::before {
    content: '';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d0ccc7;
    transition: all 0.25s ease;
}

.funnel-answer-btn:hover {
    border-color: #c44040;
    background: #fff;
}

.funnel-answer-btn.selected {
    border-color: #960000;
    background: rgba(150, 0, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(150, 0, 0, 0.06);
}

.funnel-answer-btn.selected::before {
    border-color: #960000;
    background: #960000;
    box-shadow: inset 0 0 0 3px #fff;
}

/* Nav */
.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

/* ============================================================
   Result Page
   ============================================================ */
.funnel-result-container { max-width: 640px; margin: 0 auto; width: 100%; padding: 0 1rem; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-wrapper iframe,
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.funnel-result-cta,
.funnel-result-fallback {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.funnel-result-title { font-size: 1.25rem; font-weight: 600; color: #2B0101; margin: 0 0 0.75rem; }
.funnel-result-description { font-size: 0.9rem; color: #555; line-height: 1.7; margin: 0 0 1.5rem; }

/* ============================================================
   VSL Player custom + seções unlock
   ============================================================ */
.vsl-container { max-width: 720px; margin: 0 auto; padding: 0 1rem 3rem; }

.vsl-header { text-align: center; margin: 1.5rem 0 1.25rem; }
.vsl-title { font-size: 1.6rem; font-weight: 700; color: #2B0101; line-height: 1.3; margin: 0 0 .5rem; }
.vsl-subtitle { font-size: 1rem; color: #6b5e56; line-height: 1.5; margin: 0; }

.vsl-player-wrapper {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.18);
    margin-bottom: 1.25rem;
}

.vsl-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.vsl-player iframe,
.vsl-player video,
.vsl-player #vsl-youtube-mount {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px; height: 84px;
    border-radius: 50%;
    border: 0;
    background: rgba(150, 0, 0, .92);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    transition: transform .2s ease;
}
.vsl-play-btn:hover { transform: scale(1.05); background: #960000; }

.vsl-progress-container { background: #1a1a1a; padding: .75rem 1rem 1rem; }
.vsl-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.12);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: .5rem;
}
.vsl-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #960000, #e04545);
    transition: width .2s linear;
}
.vsl-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: #ddd;
    font-variant-numeric: tabular-nums;
}
.vsl-time-remaining { color: #c44040; font-weight: 600; }

.vsl-sections { display: flex; flex-direction: column; gap: 1rem; }

.vsl-section {
    opacity: 0;
    transform: translateY(12px);
    max-height: 0;
    overflow: hidden;
    transition: opacity .45s ease, transform .45s ease, max-height .45s ease;
    pointer-events: none;
}
.vsl-section.visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 3000px;
    pointer-events: auto;
}

.vsl-section-cta {
    background: linear-gradient(135deg, #2B0101, #960000);
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(150, 0, 0, .25);
}
.vsl-section-cta .vsl-section-title { color: #fff; font-size: 1.4rem; margin: 0 0 .75rem; font-weight: 700; }
.vsl-section-cta .vsl-section-content { color: rgba(255,255,255,.92); font-size: 1rem; line-height: 1.6; margin: 0 0 1.5rem; }
.vsl-cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.25rem;
    background: #fff;
    color: #960000;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    transition: transform .2s ease, box-shadow .2s ease;
}
.vsl-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.28); }

.vsl-section-testimonial_video,
.vsl-section-testimonial_text,
.vsl-section-text_block {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.vsl-section-title { font-size: 1.1rem; font-weight: 600; color: #2B0101; margin: 0 0 .75rem; }
.vsl-testimonial-title { text-align: center; }
.vsl-testimonial-video .video-wrapper { border-radius: 10px; overflow: hidden; position: relative; padding-bottom: 56.25%; }
.vsl-testimonial-video .video-wrapper iframe,
.vsl-testimonial-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-testimonial-caption { font-size: .9rem; color: #666; margin: .75rem 0 0; font-style: italic; text-align: center; }

.vsl-testimonial-text {
    background: #faf6f3;
    border-left: 4px solid #960000;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0;
}
.vsl-testimonial-text p { margin: 0 0 .75rem; color: #333; font-size: .95rem; line-height: 1.6; font-style: italic; }
.vsl-testimonial-text cite { color: #960000; font-weight: 600; font-size: .85rem; font-style: normal; }

/* FAQ */
.vsl-faq { display: flex; flex-direction: column; gap: .5rem; }
.vsl-faq-item {
    background: #faf6f3;
    border: 1px solid #e5e2de;
    border-radius: 12px;
    padding: 0;
    transition: border-color .2s ease;
}
.vsl-faq-item[open] { border-color: #960000; background: #fff; }
.vsl-faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: #2B0101;
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
}
.vsl-faq-item summary::-webkit-details-marker { display: none; }
.vsl-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #960000;
    font-weight: 300;
    transition: transform .2s ease;
}
.vsl-faq-item[open] summary::after { content: '−'; }
.vsl-faq-answer {
    padding: 0 1.25rem 1rem;
    color: #555;
    font-size: .95rem;
    line-height: 1.6;
}

/* Pricing */
.vsl-pricing-card {
    background: linear-gradient(180deg, #fff 0%, #faf6f3 100%);
    border: 2px solid #960000;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(150, 0, 0, .12);
}
.vsl-pricing-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2B0101;
    margin: 0 0 1rem;
}
.vsl-pricing-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}
.vsl-pricing-benefits li {
    padding: .5rem 0 .5rem 2rem;
    position: relative;
    color: #333;
    font-size: .95rem;
    border-bottom: 1px solid rgba(150, 0, 0, .08);
}
.vsl-pricing-benefits li:last-child { border-bottom: none; }
.vsl-pricing-benefits li::before {
    content: '✓';
    position: absolute;
    left: .5rem;
    color: #960000;
    font-weight: 700;
}
.vsl-pricing-price { margin-bottom: 1.25rem; }
.vsl-pricing-original {
    display: block;
    color: #999;
    font-size: .95rem;
    text-decoration: line-through;
    margin-bottom: .25rem;
}
.vsl-pricing-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #960000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.vsl-pricing-label {
    display: block;
    color: #666;
    font-size: .85rem;
    margin-top: .25rem;
}
.vsl-pricing-card .vsl-cta-btn {
    background: linear-gradient(135deg, #960000, #7a0000);
    color: #fff;
    width: 100%;
    box-shadow: 0 6px 20px rgba(150, 0, 0, .35);
}
.vsl-pricing-card .vsl-cta-btn:hover { background: linear-gradient(135deg, #7a0000, #5a0000); }

[data-theme="dark"] .vsl-faq-item { background: #2a2a2a; border-color: #3a3a3a; }
[data-theme="dark"] .vsl-faq-item[open] { background: #333; border-color: #c44040; }
[data-theme="dark"] .vsl-faq-item summary { color: #f0e0e0; }
[data-theme="dark"] .vsl-faq-answer { color: #bbb; }
[data-theme="dark"] .vsl-pricing-card { background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%); border-color: #c44040; }
[data-theme="dark"] .vsl-pricing-title { color: #f0e0e0; }
[data-theme="dark"] .vsl-pricing-main { color: #e04545; }
[data-theme="dark"] .vsl-pricing-benefits li { color: #ddd; border-color: rgba(196,62,62,.15); }

.vsl-section-button { text-align: center; }
.vsl-secondary-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .85rem 1.75rem;
    background: #fff;
    color: #960000;
    border: 2px solid #960000;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}
.vsl-secondary-btn:hover { background: #960000; color: #fff; }

[data-theme="dark"] .vsl-title { color: #f0e0e0; }
[data-theme="dark"] .vsl-subtitle { color: #aaa; }
[data-theme="dark"] .vsl-section-testimonial_video,
[data-theme="dark"] .vsl-section-testimonial_text,
[data-theme="dark"] .vsl-section-text_block { background: #2a2a2a; }
[data-theme="dark"] .vsl-section-title { color: #f0e0e0; }
[data-theme="dark"] .vsl-testimonial-text { background: #333; border-left-color: #c44040; }
[data-theme="dark"] .vsl-testimonial-text p { color: #ddd; }

@media (max-width: 640px) {
    .vsl-title { font-size: 1.3rem; }
    .vsl-section-cta { padding: 1.5rem 1.25rem; }
    .vsl-section-cta .vsl-section-title { font-size: 1.2rem; }
    .vsl-cta-btn { width: 100%; padding: .9rem 1.25rem; }
}

/* ============================================================
   Dark Mode
   ============================================================ */
[data-theme="dark"] .funnel-form-card { background: #2a2a2a; box-shadow: 0 12px 48px rgba(0,0,0,0.4); }
[data-theme="dark"] .funnel-form-header h1 { color: #f0e0e0; }
[data-theme="dark"] .funnel-field label { color: #aaa; }
[data-theme="dark"] .funnel-form-card input[type="text"],
[data-theme="dark"] .funnel-form-card input[type="email"],
[data-theme="dark"] .funnel-form-card input[type="tel"],
[data-theme="dark"] .funnel-form-card select,
[data-theme="dark"] .funnel-field input,
[data-theme="dark"] .funnel-field select { background: #333 !important; border-color: #4a4a4a !important; color: #eee !important; }
[data-theme="dark"] .funnel-field input::placeholder,
[data-theme="dark"] .funnel-form-card input::placeholder { color: #777 !important; }
[data-theme="dark"] .funnel-field input:focus,
[data-theme="dark"] .funnel-field select:focus,
[data-theme="dark"] .funnel-form-card input:focus,
[data-theme="dark"] .funnel-form-card select:focus { border-color: #c44040 !important; background: #383838 !important; box-shadow: 0 0 0 4px rgba(196,62,62,0.1) !important; }
[data-theme="dark"] .funnel-field-icon svg { color: #666; }
[data-theme="dark"] .funnel-question-card { background: #2a2a2a; }
[data-theme="dark"] .funnel-question-text { color: #f0e0e0; }
[data-theme="dark"] .funnel-answer-btn { background: #333; border-color: #444; color: #eee; }
[data-theme="dark"] .funnel-answer-btn:hover { border-color: #c44040; background: #383838; }
[data-theme="dark"] .funnel-answer-btn.selected { border-color: #c44040; background: rgba(196,62,62,0.1); }
[data-theme="dark"] .funnel-result-cta,
[data-theme="dark"] .funnel-result-fallback { background: #2a2a2a; }

/* ============================================================
   Responsive
   ============================================================ */
/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #ddd8d3;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #b0a89e;
    background: #f8f6f3;
    cursor: pointer;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.custom-select.selected .custom-select-trigger {
    color: #2B0101;
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
    border-color: #960000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(150, 0, 0, 0.06);
}

.custom-select-trigger svg {
    flex-shrink: 0;
    color: #b0a89e;
    transition: transform 0.25s ease;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e5e2de;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
    overflow: hidden;
    animation: selectFadeIn 0.2s ease;
}

@keyframes selectFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-select.open .custom-select-options {
    display: block;
}

.custom-select-option {
    padding: 0.75rem 1.1rem;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f5f3f0;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: #faf5f3;
    color: #960000;
}

.custom-select-option.active {
    background: rgba(150, 0, 0, 0.06);
    color: #960000;
    font-weight: 500;
}

/* Dark mode custom select */
[data-theme="dark"] .custom-select-trigger {
    background: #333;
    border-color: #4a4a4a;
    color: #777;
}
[data-theme="dark"] .custom-select.selected .custom-select-trigger { color: #eee; }
[data-theme="dark"] .custom-select-trigger:hover,
[data-theme="dark"] .custom-select.open .custom-select-trigger {
    border-color: #c44040;
    background: #383838;
}
[data-theme="dark"] .custom-select-options {
    background: #2a2a2a;
    border-color: #444;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .custom-select-option {
    color: #ddd;
    border-bottom-color: #383838;
}
[data-theme="dark"] .custom-select-option:hover {
    background: rgba(196, 62, 62, 0.1);
    color: #c44040;
}
[data-theme="dark"] .custom-select-option.active {
    background: rgba(196, 62, 62, 0.15);
    color: #c44040;
}

/* Overflow global — overflow:visible para permitir que o dropdown custom
   vaze do card quando expandido (caso contrário, o último item seria cortado) */
.funnel-landing, .funnel-step-container, .funnel-result-container { overflow: visible; }
.funnel-form-card, .funnel-question-card { overflow: visible; word-wrap: break-word; }
/* Fallback: garantir que o dropdown tenha max-height com scroll em telas curtas */
.custom-select-options { max-height: 60vh; overflow-y: auto; }

@media (max-width: 640px) {
    .funnel-banner-gradient { padding: 2rem 1rem; min-height: 140px; }
    .funnel-banner-logo { height: 44px; }
    .funnel-form-wrapper { margin-top: -1.5rem; padding: 0 0.5rem; }
    .funnel-form-card { padding: 1.5rem 1.25rem; border-radius: 14px; }
    .funnel-form-header h1 { font-size: 1.25rem; }
    .funnel-question-card { padding: 1.5rem 1.25rem; }
    .funnel-answer-btn { font-size: 0.85rem; padding: 0.8rem 0.9rem 0.8rem 2.5rem; }
    .funnel-answer-btn::before { left: 0.75rem; width: 16px; height: 16px; }
    .funnel-btn-submit { font-size: 0.9rem; padding: 0.8rem; }
}
