/* ==========================================
   RADAR DE INGRESOS - ESTILOS PREMIUM
   ========================================== */

/* 1. RESET Y CONFIGURACIÓN GLOBAL */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Paleta de Colores */
    --bg-dark: #0B0F19;
    --bg-dark-card: #161F30;
    --bg-dark-accent: #111827;
    --bg-brand-dark: #0B0F19;
    --bg-light: #F8FAFC;
    --bg-contrast: #F1F5F9;
    --bg-white: #FFFFFF;

    --text-white: #FFFFFF;
    --text-light: #F8FAFC;
    --text-muted: #64748B;
    --text-dark: #0F172A;
    --text-gray-dark: #334155;

    --primary: #CCFF00; /* Lima vibrante */
    --primary-rgb: 204, 255, 0;
    --primary-hover: #b8e600;
    --secondary: #3B82F6; /* Azul eléctrico */
    --accent-orange: #FF5A36; /* Naranja enérgico */
    
    /* Fuentes */
    --font-family: 'Montserrat', sans-serif;
    
    /* Bordes e Interacciones */
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-gray-dark);
    background-color: var(--bg-white);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* 2. DISEÑO Y ESTRUCTURA DE CONTENEDORES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow {
    max-width: 800px;
}

section {
    padding: 100px 0;
}

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

/* Tipografía de Encabezados (Montserrat Jerarquizado) */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2.section-title {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-title-visceral {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

h3.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 48px;
}

h3.section-subtitle-small {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* 3. BOTONES Y ACCIONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-family);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.05em;
    width: 100%;
}

@media(min-width: 576px) {
    .btn {
        width: auto;
    }
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(204, 255, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(204, 255, 0, 0.5);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(255, 90, 54, 0.4);
}

.btn-secondary:hover {
    background-color: #e04a27;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 90, 54, 0.5);
}

.btn-lg {
    font-size: 1.15rem;
    padding: 22px 48px;
    border-radius: var(--radius-md);
}

/* Efecto Pulso */
.btn-pulse {
    position: relative;
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(204, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
    }
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* 4. BLOQUE 1: HERO SECTION */
.hero-section {
    background: radial-gradient(circle at 75% 20%, #1A2238 0%, var(--bg-dark) 80%);
    color: var(--text-white);
    padding: 20px 0 100px 0;
    border-bottom: 2px solid #1E293B;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.logo-icon {
    color: var(--primary);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media(min-width: 992px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-badge {
    background-color: rgba(204, 255, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.hero-benefits li strong {
    color: var(--text-white);
}

.check-icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-pricing-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    max-width: 500px;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.old-price {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.arrow-right {
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.new-price {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
}

.price-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 5. INTERACTIVE MINI-SIMULATOR PREVIEW CARD */
.interactive-preview-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.indicator-red {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981; /* green indicator */
    box-shadow: 0 0 8px #10B981;
    animation: blink 1.5s infinite;
}

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

.card-body {
    padding: 28px;
}

.demo-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-val {
    color: var(--primary);
    font-weight: 800;
}

/* Custom Range Sliders */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin: 10px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.8);
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Radio Group styling */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.radio-label input {
    display: none;
}

.radio-label:has(input:checked) {
    background-color: rgba(204, 255, 0, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-simulate-style {
    width: 100%;
    background-color: #1E293B;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    margin-top: 10px;
}

.btn-simulate-style:hover {
    background-color: #334155;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Sim Result Area */
.sim-result-box {
    margin-top: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 255, 0, 0.2);
    padding: 20px;
    border-radius: var(--radius-md);
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none !important;
}

.result-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(204, 255, 0, 0) 0%, rgba(204, 255, 0, 0.4) 50%, rgba(204, 255, 0, 0) 100%);
    margin-bottom: 16px;
}

.result-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 1rem;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.result-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.result-meta strong {
    color: var(--text-white);
}

.result-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 16px;
}

.sim-cta {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.sim-cta:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

/* 6. BLOQUE 2: CALIFICACIÓN DEL PÚBLICO */
.bg-contrast {
    background-color: var(--bg-contrast);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white);
}

.border-top {
    border-top: 1px solid #E2E8F0;
}

.border-bottom {
    border-bottom: 1px solid #E2E8F0;
}

.qualification-section {
    position: relative;
    z-index: 10;
}

.symptoms-list {
    list-style: none;
    margin: 40px auto;
    max-width: 650px;
}

.symptoms-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
}

.symptom-icon-box {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon {
    width: 22px;
    height: 22px;
}

.symptoms-list li span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.warning-tag {
    display: inline-block;
    background-color: #EF4444;
    color: var(--text-white);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 40px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* 7. BLOQUE 3: CONEXIÓN CON EL PROBLEMA */
.problem-section {
    padding: 120px 0;
}

.problem-paragraphs {
    max-width: 700px;
    margin: 0 auto;
}

.problem-paragraphs p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.problem-paragraphs p strong {
    color: var(--text-dark);
}

/* 8. BLOQUE 4: PRESENTACIÓN DE LA SOLUCIÓN Y EL MECANISMO */
.section-badge {
    display: inline-block;
    background-color: var(--bg-contrast);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media(min-width: 992px) {
    .solution-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.mechanism-steps {
    margin-top: 36px;
}

.mech-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.mech-number {
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mech-step p {
    font-size: 1.05rem;
    color: #334155;
    margin-top: 6px;
}

/* Dashboard Mockup Graphics */
.dashboard-mockup {
    background-color: var(--bg-dark);
    border: 1px solid #1E293B;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-family);
    color: var(--text-white);
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
}

.dash-top {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #1E293B;
}

.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.dash-dot:nth-child(1) { background-color: #EF4444; }
.dash-dot:nth-child(2) { background-color: #F59E0B; }
.dash-dot:nth-child(3) { background-color: #10B981; }

.dash-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
}

.dash-main {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.dash-chart-circle {
    width: 90px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.8;
    stroke-linecap: round;
}

.percentage {
    fill: var(--text-white);
    font-family: var(--font-family);
    font-size: 0.55em;
    font-weight: 800;
    text-anchor: middle;
}

.chart-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.dash-stats {
    flex-grow: 1;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-indicator.green { background-color: var(--primary); }
.stat-indicator.yellow { background-color: #F59E0B; }
.stat-indicator.blue { background-color: var(--secondary); }

.dash-footer-list {
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid #1E293B;
    font-size: 0.7rem;
}

.dash-item {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
}

.dash-item.active {
    color: var(--primary);
    font-weight: 700;
    background-color: rgba(204, 255, 0, 0.02);
}

/* 9. BLOQUE 5: EL MÉTODO PASO A PASO */
.method-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media(min-width: 768px) {
    .method-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.method-card {
    background-color: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(204, 255, 0, 0.5);
}

.card-step-badge {
    display: inline-block;
    background-color: var(--bg-dark);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.card-icon-bg {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 6.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    user-select: none;
}

/* 10. BLOQUE 6: URGENCIA */
.urgency-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 50%, rgba(204, 255, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

.urgency-body {
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.urgency-body p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.urgency-body .urgency-highlight {
    font-weight: 800;
    color: var(--primary);
}

.urgency-body .urgency-footer-text {
    font-weight: 600;
    color: var(--text-white);
}

/* 11. BLOQUE 7: BONOS INCLUIDOS */
.bonus-alert-badge {
    display: inline-block;
    background-color: #FF5A36;
    color: var(--text-white);
    font-weight: 900;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: -10px;
    margin-bottom: 48px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-card {
    background-color: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 90, 54, 0.4);
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 90, 54, 0.1);
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}

.bonus-content-wrapper {
    padding: 40px;
}

.bonus-number {
    display: block;
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.bonus-subtitle-strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.4;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 12. BLOQUE 8: PRUEBA SOCIAL */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media(min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-light);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.author-age {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testi-disclaimer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* 13. BLOQUE 9: RESUMEN DE LA OFERTA Y PRECIO (Factura / Ticket) */
.receipt-ticket {
    background-color: var(--bg-white);
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    max-width: 500px;
    margin: 40px auto 0 auto;
}

/* Efecto de borde tipo ticket en la parte superior e inferior */
.receipt-ticket::before, .receipt-ticket::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 8px;
    background-size: 16px 8px;
    pointer-events: none;
    z-index: 10;
}

.receipt-ticket::before {
    top: 0;
    background-image: linear-gradient(135deg, var(--bg-contrast) 25%, transparent 25%), linear-gradient(225deg, var(--bg-contrast) 25%, transparent 25%);
}

.receipt-ticket::after {
    bottom: 0;
    background-image: linear-gradient(45deg, var(--bg-contrast) 25%, transparent 25%), linear-gradient(315deg, var(--bg-contrast) 25%, transparent 25%);
}

.receipt-header {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 36px 30px 24px 30px;
    text-align: center;
}

.receipt-header h3 {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 4px;
}

.receipt-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.receipt-body {
    padding: 30px;
    background-color: var(--bg-white);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.item-name {
    color: #475569;
}

.item-price {
    font-weight: 700;
    color: var(--text-dark);
}

.receipt-divider-dash {
    border-top: 1px dashed #CBD5E1;
    margin: 20px 0;
}

.receipt-divider-solid {
    border-top: 2px solid var(--text-dark);
    margin: 20px 0;
}

.total-original {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.total-original span:nth-child(2) {
    text-decoration: line-through;
}

.discount-row {
    color: #EF4444;
    font-weight: 700;
}

.price-final {
    margin-bottom: 0;
}

.final-text-stack {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
}

.saving-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #10B981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.receipt-footer {
    background-color: #FAFAFA;
    padding: 24px 30px 36px 30px;
    border-top: 1px solid #F1F5F9;
    text-align: center;
}

.barcode {
    height: 45px;
    background: repeating-linear-gradient(
        90deg,
        #0F172A,
        #0F172A 2px,
        transparent 2px,
        transparent 5px,
        #0F172A 5px,
        #0F172A 8px,
        transparent 8px,
        transparent 10px
    );
    margin-bottom: 8px;
    opacity: 0.8;
}

.barcode-number {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* 14. BLOQUE 10: GARANTÍA */
.guarantee-box {
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    background-color: var(--bg-white);
}

.guarantee-badge-icon {
    color: #10B981;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
}

.shield-check-icon {
    width: 100%;
    height: 100%;
}

.guarantee-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.guarantee-desc {
    font-size: 1rem;
    color: #475569;
    max-width: 550px;
    margin: 0 auto 30px auto;
}

/* 15. BLOQUE 11: PREGUNTAS FRECUENTES (Acordeón) */
.faq-accordion {
    max-width: 700px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #CBD5E1;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-panel p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

/* Acordeón Estado Abierto */
.faq-item.active .faq-trigger {
    color: var(--secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-item.active .faq-panel {
    max-height: 500px; /* Suficiente altura máxima */
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* 16. BLOQUE 12: CIERRE Y CTA FINAL */
.bg-brand-dark {
    background-color: var(--bg-brand-dark);
}

.footer-cta-section {
    padding: 100px 0;
    color: var(--text-white);
    border-top: 1px solid #1E293B;
}

.cta-banner-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-cta-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.footer-paragraphs {
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.footer-paragraphs p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.footer-paragraphs .final-lead-text {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 24px;
}

.footer-cta-actions {
    margin-bottom: 24px;
}

.guarantee-footer-notice {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* 17. FOOTER LEGAL */
.footer-legal {
    background-color: #060911;
    color: rgba(255, 255, 255, 0.35);
    padding: 40px 0;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-legal p {
    margin-bottom: 10px;
}

.legal-disclaimer {
    max-width: 900px;
    margin: 15px auto 0 auto;
    line-height: 1.5;
}

/* 18. MODAL DE PAGO SIMULADO */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
}

.modal-card {
    background-color: var(--bg-dark-accent);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--text-white);
}

.modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 24px;
}

.modal-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 700;
}

.modal-price {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 900;
}

.checkout-form-sim {
    margin-bottom: 20px;
}

.input-style {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-style:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(204, 255, 0, 0.2);
}

.payment-methods {
    display: flex;
    gap: 8px;
    margin: 16px 0 24px 0;
}

.payment-badge {
    flex: 1;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 10px 4px;
    border-radius: 4px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.payment-badge.active, .payment-badge:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.btn-pay-sim-style {
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pay-sim-style:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.modal-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2.section-title, .section-title-visceral {
        font-size: 1.85rem;
    }
    
    section {
        padding: 60px 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .method-card {
        padding: 30px 24px;
    }
    
    .receipt-ticket {
        margin: 20px auto 0 auto;
    }
}
