/* Variables de color y fuentes */
:root {
    /* Modo Claro (Por defecto) */
    --bg-gradient: linear-gradient(135deg, #e8d5ff 0%, #d4e0ff 100%);
    --primary-dark: #1e0a3c;
    --primary-magenta: #d926a9;
    --magenta-glow: 0 0 15px rgba(217, 38, 169, 0.5);
    --blue-glow: 0 0 15px rgba(79, 172, 254, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --wa-green: #25d366;
    --card-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    --text-muted: #555;
    --menu-bg: #ffffff;
}

/* Modo Oscuro */
body.dark-mode {
    --bg-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --primary-dark: #ffffff;
    --glass-bg: rgba(20, 20, 40, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --text-muted: #bbb;
    --menu-bg: #1a153a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.5s ease, color 0.5s ease;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); }
::-webkit-scrollbar-thumb { background: var(--primary-magenta); border-radius: 10px; }

a { text-decoration: none; transition: all 0.3s ease; }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: background 0.5s ease, border 0.5s ease, box-shadow 0.5s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    margin: 20px auto;
    max-width: 1100px;
    border-radius: 50px;
    z-index: 1000;
    position: relative;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links { display: flex; align-items: center; }
.nav-links a { color: var(--primary-dark); margin: 0 15px; font-weight: 600; }
.nav-links a:hover { color: var(--primary-magenta); text-shadow: var(--magenta-glow); }
.btn-nav-wa {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}
.btn-nav-wa:hover { box-shadow: var(--blue-glow); transform: translateY(-2px); }

#theme-toggle {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--primary-dark);
    transition: transform 0.3s ease;
}
#theme-toggle:hover {
    transform: rotate(20deg) scale(1.1);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 30px auto 10px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 300px; }
.hero-title { font-size: 3.5em; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-title span { color: var(--primary-magenta); text-shadow: var(--magenta-glow); }

.benefits-list { list-style: none; padding: 0; margin-bottom: 40px; font-weight: 600; font-size: 1.1em; }
.benefits-list li { margin-bottom: 15px; display: flex; align-items: center; }
.benefits-list span { margin-right: 15px; font-size: 1.3em; }

.hero-image { flex: 1; text-align: center; min-width: 300px; }
.hero-image img { max-width: 100%; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.bcv-banner {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    display: block; 
}
.bcv-title { font-size: 1.1em; font-weight: 600; margin-bottom: 15px; color: var(--primary-dark); display: flex; align-items: center; justify-content: center; gap: 10px; }

.trust-badges { display: flex; justify-content: center; align-items: center; gap: 25px; flex-wrap: wrap; margin-top: 10px; }
.trust-badges img { height: 35px; width: auto; opacity: 0.8; transition: all 0.3s ease; }
body:not(.dark-mode) .trust-badges img { filter: grayscale(100%); }
body.dark-mode .trust-badges img { filter: grayscale(50%) brightness(1.5); }
.trust-badges img:hover { filter: grayscale(0%) brightness(1) !important; opacity: 1; transform: scale(1.1); }

.section-title { text-align: center; font-size: 2.8em; font-weight: 800; margin: 60px auto 20px auto; color: var(--primary-dark); }
.section-title span { color: var(--primary-magenta); text-shadow: var(--magenta-glow); }

.btn-wa-main, .btn-product {
    background: white;
    color: var(--wa-green) !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    border: 2px solid var(--wa-green);
}
body.dark-mode .btn-wa-main, body.dark-mode .btn-product {
    background: #111;
}
.btn-wa-main:hover, .btn-product:hover {
    background: var(--wa-green) !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); 
}

.btn-disabled { pointer-events: none; opacity: 0.5; }

/* Clases utilitarias reemplazando estilos en línea */
.logo-img { height: 90px; }
.hero-logo { width: 400px; filter: drop-shadow(0 15px 25px rgba(217, 38, 169, 0.4)); }
.text-magenta { color: var(--primary-magenta); }
.btn-small { font-size: 1em; padding: 10px 25px; }
.btn-xsmall { font-size: 0.85em; padding: 5px 15px; margin-left: 10px; }
.btn-full-width { width: 100%; justify-content: center; margin-top: 10px; }
.payment-logo { height: 25px; filter: grayscale(0%); }
.text-bold-purple { font-weight: 800; color: #8A2BE2; }
.text-bold-yellow { font-weight: 800; color: #F3BA2F; }
.text-bold-violet { font-weight: 800; color: #741bdf; }
.price-tag-large { font-size: 1.1em; }
.price-subtext { font-size: 0.8em; opacity: 0.8; }
.mb-25 { margin-bottom: 25px; }
.mt-0 { margin-top: 0; }
.modal-subtitle { font-size: 0.9em; margin-bottom: 20px; }

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap;
}
.product-showcase.reverse { flex-direction: row-reverse; }
.product-text { flex: 1; min-width: 300px; }
.product-text h2 { font-size: 2.5em; margin: 0 0 15px 0; color: var(--primary-dark); }
.product-text p { color: var(--text-muted); }

.duration-selector { display: flex; gap: 10px; margin: 15px 0; flex-wrap: wrap; }
.duration-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--glass-border);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all 0.3s ease;
}
body.dark-mode .duration-btn { background: rgba(0,0,0,0.3); }
.duration-btn:hover { background: rgba(255,255,255,0.6); }
body.dark-mode .duration-btn:hover { background: rgba(255,255,255,0.2); }
.duration-btn.active { background: var(--primary-magenta); color: white; border-color: var(--primary-magenta); box-shadow: var(--magenta-glow); }

.badge-offer {
    position: absolute;
    top: -12px;
    right: -10px;
    background: #ff3366;
    color: white;
    font-size: 0.6em;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 800;
    animation: pulse-neon 1.5s infinite;
}

@keyframes pulse-neon {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 51, 102, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(255, 51, 102, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 51, 102, 0.5); }
}

.price-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-magenta) 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(217, 38, 169, 0.3);
    transition: all 0.3s ease;
}
.price-tag:hover { box-shadow: var(--magenta-glow); transform: translateY(-2px); }

.urgency-note { color: #d00000; font-weight: 600; font-size: 0.9em; margin-bottom: 15px; display: none; animation: blink 2s infinite; }
body.dark-mode .urgency-note { color: #ff6b6b; }
@keyframes blink { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.product-text ul { list-style: none; padding: 0; margin-bottom: 30px; }
.product-text li { margin-bottom: 10px; font-size: 1.1em; display: flex; align-items: center; }
.product-text li::before { content: "✓"; color: var(--primary-magenta); font-weight: bold; margin-right: 15px; font-size: 1.2em; }

.product-image { flex: 1; min-width: 300px; text-align: center; }
.product-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: transform 0.5s ease; }

/* Efecto Reveal en Scroll */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Creador de Combos */
.combo-builder {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
}
.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.combo-item {
    padding: 15px;
    border-radius: 15px;
    border: 2px solid var(--glass-border);
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
body.dark-mode .combo-item { background: rgba(0,0,0,0.2); }
.combo-item.selected {
    border-color: var(--primary-magenta);
    background: rgba(217, 38, 169, 0.1);
    box-shadow: var(--magenta-glow);
}
.combo-item img { height: 40px; border-radius: 8px; }
.combo-item input[type="checkbox"] { display: none; }
.combo-item strong { font-size: 1.1em; }
.combo-item span { color: var(--primary-magenta); font-weight: 800; }

.combo-summary {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(217,38,169,0.1), rgba(79,172,254,0.1));
    border: 1px solid var(--primary-magenta);
}
.combo-summary h3 { margin-top: 0; }
.combo-total { font-size: 2em; font-weight: 800; color: var(--primary-magenta); text-shadow: var(--magenta-glow); margin: 10px 0;}
.discount-badge {
    background: #25d366;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}
#btn-combo-wa { margin-top: 15px; }


.other-services { max-width: 1000px; margin: 80px auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 30px; padding: 0 20px; }
.service-card { padding: 30px 20px; text-align: center; transition: all 0.3s ease; }
.service-card:hover { box-shadow: var(--magenta-glow); border-color: var(--primary-magenta); }

.reviews-section { max-width: 1100px; margin: 80px auto; text-align: center; overflow: hidden; padding: 20px 0; }
.swiper-container { width: 100%; padding-bottom: 40px; }
.swiper-slide { display: flex; justify-content: center; align-items: center; }
.plan-card { transition: all 0.3s ease; width: 100%; max-width: 350px; }
.plan-card img { width: 100%; border-radius: 15px; box-shadow: var(--card-shadow); }

/* Swiper Pagination Overrides */
.swiper-pagination-bullet { background: var(--primary-dark) !important; opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--primary-magenta) !important; opacity: 1; box-shadow: var(--magenta-glow); }

.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: -400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    max-width: 320px;
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
body.dark-mode .purchase-notification { background: rgba(20, 20, 40, 0.9); }
.purchase-notification.show { left: 30px; box-shadow: var(--magenta-glow); }
.notification-avatar { background: var(--primary-magenta); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3em; box-shadow: var(--magenta-glow); }
.notification-text { font-size: 0.85em; color: var(--primary-dark); line-height: 1.3; }

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--wa-green);
    color: white !important;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }

#back-to-top {
    position: fixed;
    bottom: 100px; 
    right: 35px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-magenta);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0; 
    visibility: hidden;
    transition: all 0.3s ease;
}
body.dark-mode #back-to-top { background: rgba(0, 0, 0, 0.5); }
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--primary-magenta); color: white; box-shadow: var(--magenta-glow); transform: translateY(-5px); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.hamburger span { width: 32px; height: 3px; background: var(--primary-magenta); border-radius: 5px; transition: 0.3s; }
.mobile-only { display: none !important; }

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

@media (max-width: 768px) {
    /* Global Base Reset for Mobile */
    body { font-size: 14px; }
    
    /* Navbar */
    .navbar { padding: 15px 20px; border-radius: 25px; margin: 10px; flex-direction: row; justify-content: space-between; align-items: center; position: relative; }
    .nav-left { flex-direction: row; gap: 15px; }
    .logo-img { height: 45px; }
    .desktop-only { display: none !important; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--menu-bg);
        padding: 10px 0 20px 0;
        border-radius: 0 0 25px 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        z-index: 1001;
    }
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    .nav-links a { font-size: 1.1em; padding: 15px; margin: 0; border-bottom: 1px solid var(--glass-border); text-align: center; }
    .nav-links a:last-child { border-bottom: none; }
    .mobile-only { display: inline-flex !important; margin: 15px auto !important; width: 80%; justify-content: center; }
    
    /* Hero */
    .hero { margin: 15px auto; padding: 0 5px; text-align: center; justify-content: center; }
    .hero-title { font-size: 1.8em; margin-bottom: 10px; }
    .hero-logo { width: 80%; max-width: 220px; }
    .benefits-list { font-size: 0.85em; margin-bottom: 15px; }
    .benefits-list li { justify-content: center; }
    .benefits-list span { font-size: 1.1em; margin-right: 8px; }
    .btn-wa-main { font-size: 0.9em; padding: 10px 15px; width: 100%; border-radius: 30px; box-sizing: border-box; justify-content: center; }
    
    /* Showcases */
    .product-showcase { padding: 15px 10px; gap: 15px; margin: 15px 5px; border-radius: 15px; text-align: center; }
    .product-text h2 { font-size: 1.5em; margin-bottom: 10px; }
    .product-text ul { font-size: 0.85em; margin-bottom: 15px; display: inline-block; text-align: left; }
    .product-text li { margin-bottom: 5px; }
    .price-tag { font-size: 1.1em; padding: 5px 15px; }
    .duration-selector { justify-content: center; gap: 5px; }
    .duration-btn { font-size: 0.85em; padding: 6px 12px; border-radius: 15px; }
    .btn-product { font-size: 0.9em; padding: 8px 15px; border-radius: 20px; }
    .ia-image img, .product-image img { max-width: 65%; margin: 0 auto; border-radius: 10px; }
    
    /* BCV Banner */
    .bcv-banner { padding: 10px; border-radius: 15px; margin: 0 10px 20px 10px; }
    .bcv-title { font-size: 0.85em; flex-direction: column; gap: 5px; }
    .trust-badges { gap: 10px; font-size: 0.9em; }
    
    /* Combo Builder */
    .combo-builder { padding: 15px 10px; margin: 20px 5px; border-radius: 15px; }
    .combo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 15px; }
    .combo-item { padding: 8px; border-radius: 10px; }
    .combo-item img { height: 25px; }
    .combo-item strong { font-size: 0.8em; }
    .combo-total { font-size: 1.3em; }
    .combo-summary { padding: 15px; margin-top: 20px; }
    
    /* Sections */
    .section-title { font-size: 1.5em; margin: 30px auto 10px auto; }
    .other-services { margin: 40px auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 5px; }
    .service-card { padding: 15px 10px; }
    .service-card h3 { font-size: 1em; }
    .service-card p { font-size: 0.75em; }
    
    /* How It Works */
    .how-it-works { margin: 30px auto; }
    .steps-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
    .step-card { padding: 20px 10px; border-radius: 15px; }
    .step-icon { font-size: 2.5em; margin-bottom: 10px; }
    .step-card h3 { font-size: 1.1em; margin-bottom: 5px; }
    .step-card p { font-size: 0.85em; }
    
    /* Footer */
    .footer { padding: 20px 15px; margin: 30px 5px 10px 5px; border-radius: 15px; text-align: center; }
    .footer-content { gap: 15px; text-align: center; }
    .footer-logo img { height: 60px; }
    .footer-bottom { margin-top: 20px; padding-top: 15px; }
    
    /* Floating Elements */
    .purchase-notification { bottom: 80px; left: 10px; max-width: 260px; padding: 8px 12px; border-radius: 10px; }
    .notification-avatar { width: 30px; height: 30px; font-size: 1em; }
    .notification-text { font-size: 0.75em; }
    .wa-float { bottom: 10px; right: 10px; padding: 8px 15px; font-size: 0.8em; border-radius: 30px; gap: 5px; }
    #back-to-top { bottom: 70px; right: 15px; width: 35px; height: 35px; font-size: 1.1em; border-radius: 50%; }
}

/* Modal de Inicio de Sesión */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--primary-magenta);
    transition: transform 0.3s;
}
.close-modal:hover { transform: rotate(90deg); }

.form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-dark);
}
.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
    color: var(--primary-dark);
}
body.dark-mode .form-group input {
    background: rgba(0, 0, 0, 0.3);
}
.form-group input:focus {
    border-color: var(--primary-magenta);
    box-shadow: var(--magenta-glow);
}

/* Reviews Carousel HTML */
.review-card {
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.stars { font-size: 1.2em; letter-spacing: 2px; }
.review-text { font-style: italic; font-size: 0.95em; line-height: 1.5; color: var(--primary-dark); flex-grow: 1; }
.review-author { font-weight: 800; color: var(--primary-magenta); text-align: right; }

/* Footer */
.footer {
    max-width: 1100px;
    margin: 80px auto 20px auto;
    padding: 40px;
    border-radius: 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}
.footer-logo p { margin-top: 10px; font-size: 0.9em; opacity: 0.8; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { color: var(--primary-dark); font-size: 0.9em; }
.footer-links a:hover, .footer-contact a:hover { color: var(--primary-magenta); }
.footer-contact h3, .footer-links h3 { margin-top: 0; color: var(--primary-magenta); }
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    font-size: 0.85em;
    opacity: 0.7;
}

/* --- CÓMO FUNCIONA --- */
.how-it-works {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.step-card {
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.step-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(217, 38, 169, 0.3));
}
.step-card h3 {
    color: var(--primary-magenta);
    margin-bottom: 15px;
    font-size: 1.3em;
}
.step-card p {
    color: var(--primary-dark);
    font-size: 0.95em;
    opacity: 0.9;
}
