:root {
    /* Paleta de Colores Solicitada */
    --bg-black: #000000;
    --primary-military: #4a6741;
    --action-neon: #22c55e;
    --text-white: #ffffff;
    
    /* Colores Secundarios para UI */
    --card-bg: #0d0d0d; /* Casi negro para diferenciar del fondo */
    --card-border: #1f1f1f;
    --card-hover: #151515;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
}

/* Mobile-First App Container */
.app-container {
    width: 100%;
    max-width: 500px; /* Constrained width like a mobile app */
    min-height: 100vh;
    padding: 15px 15px; /* Reducido de 25px 20px */
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px; /* Reducido de 8px */
    background-color: var(--card-border);
    border-radius: 10px;
    margin-bottom: 20px; /* Reducido de 35px */
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, #16803d, var(--action-neon));
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 10px;
}

/* Navigation */
.quiz-nav {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    height: 30px; /* Fixed height to prevent layout shift */
}

.back-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    visibility: hidden; /* Hidden by default, JS will show it */
    opacity: 0;
}

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

.back-btn i {
    font-size: 0.75rem;
}

/* Steps Transition */
.step {
    display: none;
    opacity: 0;
}

.step.active {
    display: flex;
    flex-direction: column;
    animation: slideUpFade 0.5s ease forwards;
}

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

/* Typography & Headers */
.step-header {
    text-align: center;
    margin-bottom: 15px; /* Reducido de 30px */
}

.main-title {
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 5px; /* Reducido para acercar al METODO IRON */
    letter-spacing: -0.5px;
}

.pre-title {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 5px;
    letter-spacing: 0px;
}

.con-el-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: #e5e7eb;
    text-transform: uppercase;
    margin-bottom: 2px;
    display: block;
    letter-spacing: 1px;
}

.iron-text {
    font-weight: 900;
    font-size: 2.8rem; /* Reducido de 3.4rem */
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffffff 0%, #b3b3b3 25%, #666666 45%, #1a1a1a 50%, #4d4d4d 55%, #a6a6a6 80%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 15px; /* Reducido de 20px */
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.8));
}

.iron-text-inline {
    font-weight: 900;
    font-size: 2.8rem; /* Triple the size (~0.95rem * 3) */
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffffff 0%, #b3b3b3 25%, #666666 45%, #1a1a1a 50%, #4d4d4d 55%, #a6a6a6 80%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    display: block; /* Make it block to handle the large size better */
    margin-top: 10px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.7));
    line-height: 1;
}

.step-title {
    font-weight: 800;
    font-size: 1.5rem; /* Reducido de 1.8rem */
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 8px; /* Reducido de 12px */
}

.subtitle {
    font-weight: 400;
    font-size: 0.95rem;
    color: #9ca3af; /* Gray text for readability */
    line-height: 1.5;
}

.highlight-text {
    color: var(--action-neon);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.text-neon {
    color: var(--action-neon);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px; /* Reducido de 12px */
    margin-bottom: 15px; /* Reducido de 25px */
}

.options-grid.body-types {
    grid-template-columns: 1fr 1fr;
    gap: 10px; /* Reducido de 15px */
}

/* Base Cards */
.option-card {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px; /* Reducido de 14px */
    padding: 12px 15px; /* Reducido de 18px 20px */
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px; /* Reducido de 18px */
    font-weight: 700;
    font-size: 0.95rem; /* Reducido de 1.1rem */
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.option-card:hover {
    border-color: var(--action-neon);
    background-color: var(--card-hover);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

.option-card:active {
    transform: translateY(0);
}

.option-card.selected {
    border-color: var(--action-neon);
    background-color: rgba(34, 197, 94, 0.05);
    box-shadow: inset 0 0 0 1px var(--action-neon), 0 0 15px rgba(34, 197, 94, 0.2);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* Icons within Cards */
.icon-neon {
    color: var(--action-neon);
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.icon-neon-subtle {
    color: #4ade80;
    font-size: 1.4rem;
}

.circle-icon-container {
    background: rgba(34, 197, 94, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.emoji {
    font-size: 1.8rem;
}

/* Image Cards (Step 3) */
.image-card {
    flex-direction: column;
    padding: 0;
    gap: 0;
    border: 2px solid var(--card-border);
}

.img-wrapper {
    width: 100%;
    height: 120px; /* Reducido de 160px */
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%) contrast(110%);
}

.image-card.option-age img {
    object-fit: cover;
    object-position: top;
}

.image-card.option-goal .img-wrapper {
    /* Restaurar al valor por defecto de .image-card */
    border-radius: 12px 12px 0 0;
    height: 160px;
}

.image-card.option-goal img {
    object-fit: cover;
    object-position: center;
}

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

.image-card span {
    padding: 10px 8px; /* Reducido de 15px 10px */
    text-align: center;
    font-size: 0.85rem; /* Reducido de 0.9rem */
    width: 100%;
    line-height: 1.2;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-military);
    color: var(--text-white);
    border: none;
    border-radius: 10px; /* Reducido de 12px */
    padding: 15px 20px; /* Reducido de 20px 24px */
    font-size: 1.05rem; /* Reducido de 1.15rem */
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(74, 103, 65, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #5b7e50; /* Slightly lighter military green */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 103, 65, 0.5);
}

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

/* Pulse Animation for Final Call to Action */
.btn-pulse {
    background-color: var(--action-neon);
    color: #000000;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    animation: pulseGlow 2s infinite;
}

.btn-pulse:hover {
    background-color: #2ce06d;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.8);
}

.btn-large {
    font-size: 1.3rem;
    padding: 22px 24px;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Sliders (Steps 7-9) */
.slider-container {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 25px 15px; /* Reducido de 40px 20px */
    text-align: center;
    margin-bottom: 15px; /* Reducido de 25px */
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.value-display {
    font-size: 2.8rem; /* Reducido de 3.5rem */
    font-weight: 900;
    color: var(--action-neon);
    margin-bottom: 15px; /* Reducido de 25px */
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    line-height: 1;
}

.value-display .unit {
    font-size: 1.2rem;
    color: #9ca3af;
    font-weight: 600;
    text-shadow: none;
}

/* Customizing Input Range */
.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #2a2a2a;
    outline: none;
    position: relative;
    z-index: 10; /* Ensure slider is above radar effects */
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--action-neon);
    cursor: pointer;
    box-shadow: 0 0 15px var(--action-neon);
    border: 3px solid #000;
    transition: transform 0.1s;
}

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

/* Shared Radar Styles */
.height-scanner, .weight-scanner, .goal-weight-scanner {
    position: relative;
    overflow: hidden;
    border-color: var(--action-neon);
    background-color: #050505;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    box-shadow: inset 0 0 30px rgba(34, 197, 94, 0.15);
}

.height-scanner::before, .weight-scanner::before, .goal-weight-scanner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 55%, transparent 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    animation: syncTargets 4s linear infinite;
    background-repeat: no-repeat;
    pointer-events: none; /* Allow clicking through the targets layer */
}

.height-scanner::after, .weight-scanner::after, .goal-weight-scanner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.4) 49%, var(--action-neon) 50%, rgba(34, 197, 94, 0.4) 51%, transparent 100%);
    background-size: 100% 200%;
    animation: scanRadar 4s linear infinite;
    pointer-events: none; /* Allow clicking through the scan line */
    z-index: 2;
}

/* Specific Target Positions and Tiny Labels */
.height-scanner::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Ccircle cx='80' cy='60' r='3' fill='%2322c55e'/%3E%3Ctext x='88' y='62' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EOBJ-ALT-01%3C/text%3E%3Ccircle cx='320' cy='40' r='3' fill='%2322c55e'/%3E%3Ctext x='328' y='42' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EOBJ-ALT-02%3C/text%3E%3Ccircle cx='160' cy='140' r='3' fill='%2322c55e'/%3E%3Ctext x='168' y='142' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EOBJ-ALT-03%3C/text%3E%3Ccircle cx='280' cy='120' r='3' fill='%2322c55e'/%3E%3Ctext x='288' y='122' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EOBJ-ALT-04%3C/text%3E%3C/svg%3E");
    background-size: contain;
}

.weight-scanner::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Ccircle cx='60' cy='80' r='3' fill='%2322c55e'/%3E%3Ctext x='68' y='82' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EACT-W-01%3C/text%3E%3Ccircle cx='340' cy='100' r='3' fill='%2322c55e'/%3E%3Ctext x='348' y='102' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EACT-W-02%3C/text%3E%3Ccircle cx='120' cy='170' r='3' fill='%2322c55e'/%3E%3Ctext x='128' y='172' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EACT-W-03%3C/text%3E%3Ccircle cx='240' cy='30' r='3' fill='%2322c55e'/%3E%3Ctext x='248' y='32' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EACT-W-04%3C/text%3E%3C/svg%3E");
    background-size: contain;
}

.goal-weight-scanner::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Ccircle cx='200' cy='40' r='3' fill='%2322c55e'/%3E%3Ctext x='208' y='42' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EMIS-G-01%3C/text%3E%3Ccircle cx='40' cy='120' r='3' fill='%2322c55e'/%3E%3Ctext x='48' y='122' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EMIS-G-02%3C/text%3E%3Ccircle cx='360' cy='160' r='3' fill='%2322c55e'/%3E%3Ctext x='368' y='162' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EMIS-G-03%3C/text%3E%3Ccircle cx='160' cy='80' r='3' fill='%2322c55e'/%3E%3Ctext x='168' y='82' font-family='monospace' font-size='5' fill='%2322c55e' opacity='0.5'%3EMIS-G-04%3C/text%3E%3C/svg%3E");
    background-size: contain;
}

@keyframes scanRadar {
    0% { background-position: 0 -100%; }
    100% { background-position: 0 100%; }
}

.pulse-neon {
    animation: pulseText 1.5s ease-in-out infinite alternate;
}

@keyframes pulseText {
    from { text-shadow: 0 0 10px rgba(34, 197, 94, 0.3); }
    to { text-shadow: 0 0 25px rgba(34, 197, 94, 0.8), 0 0 10px rgba(34, 197, 94, 0.4); }
}

/* Social Proof Carousel (Step 6) */
.social-proof-container {
    width: 100%;
    margin-bottom: 20px;
}

.transformation-carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--action-neon);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
}

.transformation-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px; /* Space for the green separator */
    background-color: var(--action-neon); /* This creates the green border effect between images */
}

.img-box {
    position: relative;
    background-color: var(--bg-black);
    height: 350px; /* Fixed height for consistency */
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(110%);
}

.label-day {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    z-index: 2;
}

.label-day.after {
    color: var(--action-neon);
    border-color: var(--action-neon);
}

.carousel-highlights {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.carousel-highlights span {
    color: var(--action-neon);
    margin: 0 5px;
}

/* Loader (Step Loader) */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.radar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.radar-spinner {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--action-neon);
    border-right: 3px solid var(--action-neon);
    border-radius: 50%;
    animation: spinRadar 1s linear infinite;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.2);
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-military);
}

.loading-bar-container {
    width: 100%;
    height: 6px;
    background: var(--card-border);
    border-radius: 10px;
    margin-top: 25px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--action-neon);
    transition: width 0.3s ease;
}

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

/* Result Screen (Step 10) */
.approved-badge {
    color: var(--action-neon);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefits-card {
    background-color: var(--card-bg);
    border: 1px solid var(--primary-military);
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--primary-military);
}

.benefits-card h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.15rem;
    text-align: center;
    font-weight: 800;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e5e7eb;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.li-icon {
    color: var(--action-neon);
    font-size: 1.2rem;
    min-width: 25px;
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.guarantee-text {
    text-align: center;
    margin-top: 18px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

/* Utilities */
.mt-4 { margin-top: 25px; }

/* --- FINAL ELITE RESULT SCREEN (STEP 10) --- */

.result-screen {
    background-color: #0a0f0c !important; /* Overriding for the specific request */
    padding: 0 !important;
    justify-content: center !important;
    min-height: 80vh;
}

.result-header-modern {
    text-align: center;
    margin-bottom: 25px;
}

.badge-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.approved-medal {
    font-size: 50px;
    color: #4aa759;
    z-index: 2;
    animation: pulseMedal 2s infinite ease-in-out;
}

.badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(74, 167, 89, 0.2);
    filter: blur(15px);
    border-radius: 50%;
    z-index: 1;
}

@keyframes pulseMedal {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(74, 167, 89, 0)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(74, 167, 89, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(74, 167, 89, 0)); }
}

.headline-condensed {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.white-text { color: #ffffff; }
.army-green-text { color: #4aa759; }

.subtitle-clean {
    font-family: 'DM Sans', sans-serif;
    color: #8fa394;
    font-size: 1rem;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.4;
}

.status-bar-pulsing {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 167, 89, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #4aa759;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(74, 167, 89, 0.7); }
    70% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 10px rgba(74, 167, 89, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(74, 167, 89, 0); }
}

.benefits-card-elite {
    background-color: #121814;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.benefit-icon {
    font-size: 1.2rem;
    color: #4aa759;
    min-width: 24px;
    text-align: center;
}

.benefit-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.benefit-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #8fa394;
}

.benefit-check {
    margin-left: auto;
    color: #4aa759;
    font-size: 0.9rem;
}

.btn-elite {
    width: 100%;
    background-color: #4aa759;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-elite:hover {
    transform: translateY(-3px);
    background-color: #5bbd6b;
    box-shadow: 0 15px 30px rgba(74, 167, 89, 0.2);
}

.micro-guarantees {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: #6a7a6f;
}

.micro-guarantees span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsividad para Step 10 */
@media (max-width: 400px) {
    .headline-condensed { font-size: 2.8rem; }
    .btn-elite { font-size: 1.3rem; padding: 18px; }
}
