/* 🚀 CLICKMENU PRO - PREMIUM LANDING STYLES */
:root {
    --primary: #f59e0b;
    --primary-glow: rgba(245, 158, 11, 0.4);
    --bg: #000;
    --surface: #0a0a0a;
    --text: #fff;
    --text-muted: #888;
    --border: rgba(255,255,255,0.08);
    --glass: rgba(255,255,255,0.03);
    --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height); /* Evita que el header tape el título */
}

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

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #fbbf24 100%);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes float-mini { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseGlow { 0% { box-shadow: 0 0 20px var(--primary-glow); } 50% { box-shadow: 0 0 50px var(--primary-glow); } 100% { box-shadow: 0 0 20px var(--primary-glow); } }
@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 0 0 40px rgba(37, 211, 102, 0); }
}

/* ─── NAVIGATION ─── */
.nav-marketing {
    height: var(--nav-height);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 3000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-marketing.scrolled {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; text-decoration: none; color: #fff; }
.nav-logo span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 35px; list-style: none; }
.nav-links a { text-decoration: none; color: #fff; font-weight: 600; font-size: 0.95rem; opacity: 0.7; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--primary); }
.nav-links a.active {
    color: var(--primary);
    opacity: 1;
    border-bottom: 2px solid var(--primary);
}

.btn-login-nav {
    border: 1px solid var(--primary);
    padding: 10px 22px;
    border-radius: 12px;
    color: var(--primary) !important;
    opacity: 1 !important;
}
.btn-login-nav:hover { background: var(--primary); color: #000 !important; }

/* ─── MENU TOGGLE (HAMBURGER) ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4000;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--primary); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--primary); }

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    z-index: 2500;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active { right: 0; }

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-link {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s 0.2s;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.btn-mobile-login {
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 15px 40px;
    border-radius: 20px;
    font-size: 1.5rem !important;
}

/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero .glow-blob {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    top: -200px; right: -200px;
    z-index: 0;
    opacity: 0.5;
}

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; animation: fadeIn 1s ease-out; }

.badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero-title { font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -3px; margin-bottom: 25px; }

.hero-desc { font-size: 1.4rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 45px; }

.btn-cta-main {
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    animation: pulseGlow 3s infinite;
}
.btn-cta-main:hover { transform: translateY(-5px) scale(1.02); }

/* ─── SHOWCASE MOCKUP PREMIUM ─── */
.hero-mockup-full {
    margin-top: 40px;
    position: relative;
    max-width: 480px; /* Tamaño equilibrado para iPhone */
    margin-left: auto;
    margin-right: auto;
    animation: float-mini 6s infinite ease-in-out;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
}

.hero-mockup-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── FEATURES ─── */
.section-padding { padding: 120px 0; }
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1.5px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { padding: 45px; transition: 0.3s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-10px); }
.feature-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 25px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.feature-card p { color: var(--text-muted); font-size: 1rem; }

/* ─── SHOWCASE (RLOPEZ) ─── */
.showcase-section {
    background: rgba(245, 158, 11, 0.01);
}

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

.showcase-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.showcase-title span {
    color: var(--primary);
}

.showcase-desc {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 550px;
}

.showcase-list {
    margin-bottom: 40px !important;
}

.btn-cta-showcase {
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    border: 1px solid var(--primary);
}

.btn-cta-showcase:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
}

.showcase-image-container {
    padding: 20px;
    overflow: hidden;
    border-radius: 40px;
}

.showcase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: block;
}

.showcase-mobile-img { display: none; }

/* ─── PRICING ─── */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

.price-val { font-size: 5rem; font-weight: 800; margin: 20px 0; color: var(--primary); }
.price-val span { font-size: 1.5rem; color: var(--text-muted); font-weight: 500; }

.price-list { list-style: none; margin: 40px 0; text-align: left; }
.price-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-weight: 500; }
.price-list i { color: #00c864; }

/* ─── FLOATING WHATSAPP CIRCULAR ─── */
.whatsapp-floating {
    position: fixed;
    bottom: 40px; right: 40px;
    z-index: 2000;
    background: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-mini 3s infinite ease-in-out, ripple 2s infinite;
}
.whatsapp-floating:hover { 
    transform: scale(1.15) rotate(15deg); 
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

/* ─── FOOTER ─── */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.copyright { color: var(--text-muted); font-size: 0.9rem; margin: 15px 0; }
.dev-link { color: var(--primary); text-decoration: none; font-weight: 700; transition: 0.3s; }
.dev-link:hover { filter: brightness(1.2); text-decoration: underline; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .hero-desc { font-size: 1.1rem; }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .showcase-desc {
        margin: 0 auto 30px;
    }
    
    .showcase-list {
        display: inline-block;
        text-align: left;
    }
    
    .showcase-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .showcase-desktop-img { display: none; }
    .showcase-mobile-img { display: block; margin: 30px 0; }
}
