:root {
    --bg-dark: #05070a;
    --bg-alt: #0a0d14;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --gradient-main: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-padding {
    padding: 8rem 0;
}

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

/* Typography Helpers */
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h2.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.brand-name span {
    color: var(--accent-blue);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link:hover {
    color: var(--accent-blue);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    background: var(--glass);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    padding-top: 12rem;
    padding-bottom: 6rem;
    position: relative;
}

.hero .grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Image Wrapper & Effects */
.image-wrapper {
    position: relative;
    padding: 2rem;
}

.main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.card-icon { font-size: 1.5rem; }
.glass-card h4 { font-size: 1.1rem; margin-bottom: -2px; }
.glass-card p { font-size: 0.8rem; color: var(--text-secondary); }

.floating-1 { top: 10%; left: -10%; animation: float 6s infinite ease-in-out; }
.floating-2 { bottom: 15%; right: -5%; animation: float 6s infinite ease-in-out reverse; }

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

/* Stats Section */
.stats {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.flex-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

/* Feature Cards */
.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* Method Section */
.method .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.visual-stack {
    position: relative;
    display: flex;
    justify-content: center;
}

.method-img {
    max-width: 80%;
    z-index: 2;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

.benefit-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 800;
}

/* Module Cards */
.module-card {
    padding: 2.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.module-number {
    font-size: 5rem;
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -10px;
    opacity: 0.05;
}

.module-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

/* CTA Section */
.cta-card {
    background: var(--gradient-main);
    border-radius: 32px;
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.cta-info h2 { font-size: 3rem; margin-bottom: 1rem; }
.cta-info p { font-size: 1.5rem; opacity: 0.9; margin-bottom: 2rem; }

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    width: fit-content;
}

.cta-price {
    background: white;
    color: var(--bg-dark);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.price-old { text-decoration: line-through; color: #666; margin-bottom: 0.5rem; }
.price-now { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--bg-dark); }
.small-text { font-size: 0.8rem; color: #888; margin-top: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .hero .grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { align-items: center; }
    .cta-card { flex-direction: column; text-align: center; gap: 3rem; padding: 3rem 2rem; }
}

/* Story Section */
.story .grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.visual-card {
    background: var(--gradient-main);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.quote {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    display: block;
}

/* Modal / Pop-up */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-alt);
    margin: 5% auto;
    padding: 4rem;
    border: 1px solid var(--glass-border);
    width: 90%;
    max-width: 600px;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.2);
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.modal-price {
    margin: 2rem 0;
}

.modal-price .old { text-decoration: line-through; color: var(--text-secondary); font-size: 1.5rem; }
.modal-price .new { font-size: 4rem; font-weight: 800; color: var(--accent-cyan); margin-left: 1rem; }

.modal-footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Avatar & Story Styles */
.avatar-wrapper {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.avatar-badge {
    position: absolute;
    bottom: -10px;
    background: var(--gradient-main);
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.quote-box {
    border-left: 4px solid var(--accent-blue);
    padding-left: 2rem;
    background: rgba(59, 130, 246, 0.05);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-radius: 0 16px 16px 0;
}

.quote-box .quote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.reveal { transform: translateX(-30px); }
.hero-image.reveal { transform: translateX(30px); }

.hero-content.visible, .hero-image.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .hero-content.reveal, .hero-image.reveal { transform: translateY(30px); }
}

/* ===== NUEVAS SECCIONES: MOCKUPS, BONOS Y WHATSAPP ===== */

/* Product Showcase */
.product-showcase { margin-top: 2rem; }
.product-main-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
}
.product-img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.product-tag {
    display: inline-block;
    background: var(--gradient-main);
    padding: 0.3rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.product-details h3 { font-size: 2rem; margin-bottom: 1rem; }
.product-bullets { margin: 1.5rem 0; }
.product-bullets li { margin-bottom: 0.75rem; font-size: 1.05rem; }
.product-value { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.val-old { text-decoration: line-through; color: var(--text-secondary); font-size: 1.1rem; }
.val-new { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.5rem; font-weight: 800; }

/* Grid 2 */
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Bonus Cards */
.bonus-badge { background: rgba(251, 191, 36, 0.15); color: #f59e0b; border-color: rgba(251, 191, 36, 0.3); }
.bonus-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-8px); border-color: var(--accent-blue); }
.bonus-img-wrap { flex-shrink: 0; width: 140px; }
.bonus-img { width: 100%; border-radius: 16px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.bonus-tag { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; color: var(--accent-cyan); text-transform: uppercase; }
.bonus-info h3 { font-size: 1.3rem; margin: 0.5rem 0; }
.bonus-price { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.b-old { text-decoration: line-through; color: var(--text-secondary); font-size: 0.9rem; }
.b-new { font-weight: 800; color: #f59e0b; font-size: 1.1rem; }

/* WhatsApp Capture */
.wa-capture {}
.wa-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 0 80px rgba(37, 211, 102, 0.08);
}
.wa-icon { font-size: 4rem; margin-bottom: 1rem; }
.wa-card h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.wa-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}
.wa-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.wa-form input:focus { outline: none; border-color: #25D366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.2); }
.wa-form button { background: #25D366; color: white; border: none; cursor: pointer; font-size: 1.1rem; font-family: 'Outfit', sans-serif; font-weight: 700; }
.wa-form button:hover { background: #1fb855; transform: translateY(-3px); }
.wa-privacy { font-size: 0.85rem; color: var(--text-secondary); }

/* Value Stack */
.value-stack { margin: 1.5rem 0; background: rgba(0,0,0,0.3); border-radius: 16px; padding: 1.5rem; }
.vs-item { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--text-secondary); }
.vs-val { color: white; font-weight: 600; }
.vs-total { display: flex; justify-content: space-between; padding-top: 1rem; margin-top: 0.5rem; font-weight: 800; font-size: 1.1rem; color: white; }

/* Responsive nuevas secciones */
@media (max-width: 768px) {
    .product-main-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .bonus-card { flex-direction: column; }
    .bonus-img-wrap { width: 120px; margin: 0 auto; }
    .wa-card { padding: 2rem; }
    .wa-card h2 { font-size: 1.8rem; }
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #7c3aed, #2563eb, #7c3aed);
    background-size: 200% auto;
    animation: gradientShift 4s linear infinite;
    z-index: 2000;
    padding: 0.6rem 0;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.ub-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}
.ub-fire { font-size: 1.1rem; }
.ub-divider { opacity: 0.4; }
.ub-price s { opacity: 0.6; }
.ub-price strong { font-size: 1rem; color: #fbbf24; }
.ub-spots strong { color: #34d399; }
.ub-cta {
    background: #fbbf24;
    color: #1a1a1a;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.ub-cta:hover { background: white; transform: scale(1.05); }

/* Push navbar down for bar */
.navbar { top: 35px; }
.hero { padding-top: 14rem; }

/* Urgency micro text */
.urgency-micro {
    font-size: 0.85rem;
    color: #f87171;
    margin-top: 0.4rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ===== SOCIAL PROOF TOAST ===== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.toast {
    background: rgba(15, 20, 30, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-left: 4px solid #25D366;
    border-radius: 14px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 290px;
    max-width: 340px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideInToast 0.5s ease-out;
    backdrop-filter: blur(20px);
}
@keyframes slideInToast {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.toast-avatar {
    width: 38px;
    height: 38px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.toast-body { flex: 1; }
.toast-name { font-weight: 700; font-size: 0.9rem; color: white; }
.toast-action { font-size: 0.78rem; color: #94a3b8; margin-top: 0.1rem; }
.toast-time { font-size: 0.7rem; color: #64748b; margin-top: 0.15rem; }
.toast-flag { font-size: 1.4rem; }

@media (max-width: 768px) {
    .urgency-bar .ub-divider, .urgency-bar .ub-spots { display: none; }
    .ub-content { gap: 0.5rem; font-size: 0.75rem; }
    .toast-container { left: 1rem; bottom: 1rem; }
    .toast { min-width: 260px; }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== URGENCY BAR — FIX MOBILE OVERLAP ===== */
.urgency-bar { z-index: 1200; }
.navbar { z-index: 1100; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials { background-color: var(--bg-alt); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--accent-blue);
    opacity: 0.08;
    line-height: 1;
}
.testi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59,130,246,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.testi-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== DEVICE MOCKUP SHOWCASE ===== */
.device-mockup-wrap {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.device-mockup-img { width: 100%; display: block; border-radius: 24px; }

/* ===== GUARANTEE SECTION ===== */
.guarantee-section { background: var(--bg-dark); }

.guarantee-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--glass);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 0 80px rgba(245,158,11,0.06);
}

.guarantee-left { display: flex; justify-content: center; }
.guarantee-badge-img { width: 220px; filter: drop-shadow(0 10px 30px rgba(245,158,11,0.3)); }

/* Fallback CSS badge if image fails */
.g-badge-circle {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #1a1a1a 60%, #f59e0b);
    border: 6px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(245,158,11,0.3);
}
.g-days { font-family: 'Outfit'; font-size: 3.5rem; font-weight: 900; color: #f59e0b; line-height: 1; }
.g-label { font-family: 'Outfit'; font-size: 1rem; font-weight: 800; color: white; }
.g-sub { font-size: 0.7rem; color: #f59e0b; font-weight: 700; letter-spacing: 3px; margin-top: 2px; }

.g-tag {
    display: inline-block;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    color: #f59e0b;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.guarantee-right h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.guarantee-right p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.guarantee-right strong { color: white; }

.guarantee-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.g-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.g-point i { color: #22c55e; font-size: 0.8rem; flex-shrink: 0; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg-alt); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(59,130,246,0.3); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.faq-q:hover { color: var(--accent-blue); }
.faq-q.open { color: var(--accent-blue); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--accent-blue);
}
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.8rem;
}
.faq-a.open {
    max-height: 300px;
    padding: 0 1.8rem 1.4rem;
}
.faq-a p { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }
.faq-a strong { color: white; }


/* ===== MOBILE RESPONSIVE (all fixes) ===== */
@media (max-width: 768px) {

    /* ---- TIPOGRAFÍA REDUCIDA ---- */
    h1 { font-size: 2rem !important; }
    h2.section-title { font-size: 1.6rem !important; }
    h3 { font-size: 1.2rem !important; }
    h4 { font-size: 1rem !important; }
    .lead { font-size: 1rem !important; }
    p { font-size: 0.92rem; }
    .cta-info h2 { font-size: 1.5rem !important; }
    .cta-info p { font-size: 1rem !important; }
    .wa-card h2 { font-size: 1.5rem !important; }
    .product-details h3 { font-size: 1.4rem !important; }
    .quote-box .quote { font-size: 1rem !important; }

    /* ---- HAMBURGER VISIBLE ---- */
    .hamburger { display: flex; }

    #main-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 1050;
        align-items: flex-start;
        border-right: 1px solid var(--glass-border);
    }
    #main-nav.open { display: flex; }
    #main-nav .nav-link {
        font-size: 1.4rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--glass-border);
        width: 100%;
    }
    #main-nav .btn { margin-top: 1rem; width: 100%; text-align: center; }

    /* ---- URGENCY BAR: no tapa el logo ---- */
    .urgency-bar { position: relative; }
    .navbar { top: 0; position: sticky; }
    .hero { padding-top: 2rem; }

    /* ---- HERO: texto arriba, imagen abajo ---- */
    .hero .grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-image   { order: 2; }
    .hero-actions { align-items: center; }

    /* ---- HISTORIA (sobre-mi): texto arriba, avatar abajo ---- */
    .story .grid { grid-template-columns: 1fr; }
    .story-text   { order: 1; }
    .story-visual { order: 2; }

    /* ---- MÉTODO: texto arriba, imagen abajo ---- */
    .method .grid { grid-template-columns: 1fr; }
    .method-text   { order: 1; }
    .method-visual { order: 2; }

    /* ---- PRODUCTO: texto arriba, imagen abajo ---- */
    .product-main-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .product-details { order: 1; }
    .product-img-wrap,
    .product-main-card > img,
    .product-main-card > .product-img { order: 2; }

    /* ---- BONOS: 1 columna ---- */
    .grid-2 { grid-template-columns: 1fr; }
    .bonus-card { flex-direction: column; }
    .bonus-img-wrap { width: 120px; margin: 0 auto; }

    /* ---- WHATSAPP ---- */
    .wa-card { padding: 2rem; }

    /* ---- TESTIMONIOS: 1 columna ---- */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* ---- CTA: apilado ---- */
    .cta-card { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem 1.5rem; }

    /* ---- TOASTS ---- */
    .toast-container { left: 1rem; bottom: 1rem; }
    .toast { min-width: 260px; }
    .urgency-bar .ub-divider, .urgency-bar .ub-spots { display: none; }
    .ub-content { gap: 0.5rem; font-size: 0.75rem; }

    /* ---- GARANTÍA: apilado en móvil ---- */
    .guarantee-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; text-align: center; }
    .guarantee-points { grid-template-columns: 1fr; }
    .guarantee-badge-img { width: 160px; }

    /* ---- FAQ ---- */
    .faq-q { font-size: 0.92rem; padding: 1.2rem 1.2rem; }
    .faq-a { padding: 0 1.2rem; }
    .faq-a.open { padding: 0 1.2rem 1.2rem; }

    /* ---- SECCIÓN PADDING ---- */
    .section-padding { padding: 4rem 0; }
    .container { padding: 0 1.2rem; }
}


