*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #fff;
    background: #0a0a0a;
}

/* ── FONDO FIJO ── */
.bg-fixed {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('../fondo.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.nav-brand img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(255,75,92,0.4));
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-btn {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.3s;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.nav-btn.discord:hover {
    border-color: #5865F2;
    color: #5865F2;
    background: rgba(88,101,242,0.15);
}

.nav-btn.tienda-btn {
    background: linear-gradient(135deg, rgba(255,75,92,0.25), rgba(213,63,140,0.25));
    border-color: rgba(255,75,92,0.4);
    color: #ff8a9b;
}

.nav-btn.tienda-btn:hover {
    background: linear-gradient(135deg, rgba(255,75,92,0.4), rgba(213,63,140,0.4));
    border-color: #ff4b5c;
    color: #fff;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 14px;
}

.hero-logo {
    width: 100px;
    filter: drop-shadow(0 0 20px rgba(255,75,92,0.5));
    margin-bottom: 6px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}

.accent {
    background: linear-gradient(135deg, #ff4b5c, #d53f8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
}

.voice-badge {
    background: rgba(0,255,127,0.12);
    color: #00ff7f;
    border: 1px solid rgba(0,255,127,0.4);
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0,255,127,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.voice-badge iconify-icon { font-size: 1.2rem; }

.ip-box {
    background: linear-gradient(135deg, #ff4b5c, #d53f8c);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(213,63,140,0.4);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: #fff;
}

.ip-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(213,63,140,0.6);
    border-color: rgba(255,255,255,0.4);
}

.ip-box.copied {
    background: #22c55e !important;
    animation: pop 0.2s ease;
}

@keyframes pop { 50% { transform: scale(0.92); } }

.ip-box iconify-icon { font-size: 1.1rem; }

.hero-info {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.hero-info strong { color: rgba(255,255,255,0.7); }

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.tag {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ── SECCIONES ── */
section { padding: 80px 20px; }

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto 50px;
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.feature-icon {
    margin-bottom: 14px;
}

.feature-icon iconify-icon { font-size: 42px; }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ── TIENDA ── */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.store-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.store-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,75,92,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.store-icon iconify-icon { font-size: 56px; }

.store-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 16px;
}

.store-card .price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4b5c, #d53f8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-card .price small {
    font-size: 0.75rem;
    -webkit-text-fill-color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.badge-popular {
    position: absolute;
    top: 14px;
    right: -28px;
    background: linear-gradient(135deg, #ff4b5c, #d53f8c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 35px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #ff4b5c, #d53f8c);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,75,92,0.4);
}

/* ── COMO UNIRTE ── */
.steps {
    display: flex;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
}

.step-icon { margin-bottom: 10px; }
.step-icon iconify-icon { font-size: 40px; }

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4b5c, #d53f8c);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.footer a:hover { color: #ff4b5c; }

/* ── MOBILE ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 6px 10px;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .nav { padding: 12px 16px; }
    .mobile-menu-btn { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0,0,0,0.92);
        backdrop-filter: blur(16px);
        padding: 16px;
        gap: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.open { display: flex; }
    .nav-btn { text-align: center; justify-content: center; }

    .hero h1 { font-size: 2rem; }
    .hero-logo { width: 72px; }
    .hero-sub { font-size: 0.95rem; }
    .ip-box { font-size: 1rem; padding: 10px 22px; }

    .features-grid,
    .store-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .steps { flex-direction: column; align-items: center; }
    .step { max-width: 320px; }
}
