/* ================= HOME / TIENDA CSS ================= */
:root {
    --bg-dark: #050505;
    --primary: #ff0000;
    --primary-dark: #8c0000;
    --text-light: #ffffff;
    --text-muted: #a3a3a3;
    --glass-bg: rgba(15, 5, 5, 0.75);
    --glass-border: rgba(255, 0, 0, 0.25);
    --font-title: 'Orbitron', sans-serif;
    --font-text: 'Poppins', sans-serif;
    --whatsapp: #25D366;
    --discord: #5865F2;
}

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

.home-container {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-text);
    overflow-x: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.98)), url('https://r2.fivemanage.com/dcbYVjmY5Q1jA8Pg6iMK9/29ee0464-a17a-437b-a60e-70f5a7a2a7fa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* ================= HEADER & NAV ================= */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-title);
}

    .logo span {
        color: var(--primary);
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    }

    .logo i {
        font-size: 28px;
        color: var(--primary);
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

    nav ul li a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 13px;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        nav ul li a:hover {
            color: var(--text-light);
            text-shadow: 0 0 10px var(--primary);
        }

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .btn-header:hover {
        border-color: var(--primary);
        transform: translateY(-2px);
    }

.btn-cart-header {
    position: relative;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

    .btn-cart-header:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

.cart-badge {
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    .hero h1 {
        font-size: 85px;
        font-weight: 900;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-family: var(--font-title);
    }

        .hero h1 .highlight {
            color: var(--primary);
            text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
        }

    .hero p {
        font-size: 18px;
        color: var(--text-muted);
        max-width: 600px;
        margin-bottom: 40px;
    }

.btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    transition: 0.3s;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(255, 0, 0, 0.5);
    }

.btn-outline {
    background: var(--glass-bg);
    border: 1px solid var(--primary);
    box-shadow: none;
}

    .btn-outline:hover {
        background: rgba(255, 0, 0, 0.15);
    }

/* ================= SECCIONES Y CUADRÍCULAS ================= */
.section-wrapper {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 60px;
    text-transform: uppercase;
    font-family: var(--font-title);
}

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

/* Cuadrícula de 2x2 para módulos e interfaces */
.grid-features-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cuadrícula de 3 columnas exactas para la Tienda */
.store-category-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* ================= TARJETAS GLASSMORPHISM GENERALES ================= */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: left;
    transition: 0.4s;
    height: 100%;
}

    .glass-card:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }

    .glass-card h3 {
        font-family: var(--font-title);
        font-size: 20px;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 15px;
    }

        .glass-card h3 i {
            color: var(--primary);
            font-size: 24px;
        }

    /* Limpieza total de listas (Quita los puntos blancos) */
    .glass-card ul {
        list-style: none !important;
        padding-left: 0 !important;
        margin: 0 !important;
    }

        .glass-card ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

            .glass-card ul li strong {
                color: var(--text-light);
            }

            .glass-card ul li i {
                color: var(--primary);
                font-size: 18px;
                margin-top: 2px;
            }

/* ================= ESTILOS ESPECÍFICOS DE LA TIENDA ================= */
.price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;

    min-height: 430px;
    padding: 32px 28px 25px;
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(16, 5, 5, 0.86),
            rgba(7, 2, 2, 0.92)
        );

    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.42);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.48),
        0 0 22px rgba(255, 0, 0, 0.08);
}

    .price-card.featured {
        border-color: var(--primary);
        background: rgba(25, 5, 5, 0.9);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
    }

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-family: var(--font-title);
    font-size: 9px;
    font-weight: 700;
    padding: 6px 15px;
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.price-amount {
    font-size: 45px;
    font-weight: 900;
    color: var(--text-light);
    margin: 15px 0;
    font-family: var(--font-title);
}

    .price-amount span {
        font-size: 14px;
        color: var(--text-muted);
        font-family: var(--font-text);
    }

.btn-price-action {
    width: 100%;
    margin-top: auto;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--text-light);
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

    .price-card.featured .btn-price-action,
    .btn-price-action:hover {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
        border-color: transparent;
    }

/* ================= FOOTER ORIGINAL ================= */
footer {
    text-align: center;
    padding: 60px 20px 40px 20px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-family: var(--font-text);
}

.footer-content h3 {
    font-family: var(--font-title);
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

/* ================= BOTONES Y ETIQUETAS ESPECÍFICAS PARA COMBOS ================= */
.price-card.combo-card .btn-price-action {
    border-color: var(--primary);
}

    .price-card.combo-card.featured .btn-price-action,
    .price-card.combo-card .btn-price-action:hover {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    }

/* Etiqueta dorada/amarilla exclusiva para el combo más rentable */
.card-badge-gold {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    font-family: var(--font-title);
    font-size: 9px;
    font-weight: 900;
    padding: 6px 15px;
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 11px;
    color: rgba(163, 163, 163, 0.5);
    max-width: 600px;
    margin: 0 auto;
}



/* ================= CRÉDITO DISCRETO PUMPDEV ================= */
.pumpdev-credit {
    margin-top: 12px;
    font-size: 9px;
    opacity: 0.62;
}

.pumpdev-credit a {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.25s;
}

.pumpdev-credit a:hover {
    color: var(--text-light);
    opacity: 1;
}

.pumpdev-credit i {
    font-size: 11px;
    color: #5865F2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .store-category-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .grid-features-2x2, .store-category-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 50px;
    }
}


/* ============================================================
   REGALOS
   ============================================================ */

.gift-section-heading {
    margin: 70px auto 25px;
    max-width: 780px;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.24);
    background:
        linear-gradient(
            135deg,
            rgba(255, 0, 0, 0.08),
            rgba(35, 0, 0, 0.14)
        );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
}

.gift-section-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 29px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.20);
}

.gift-section-heading > div:last-child {
    display: flex;
    flex-direction: column;
}

.gift-section-heading span {
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.gift-section-heading h3 {
    margin: 4px 0 4px;
    color: var(--text-light);
    font-family: var(--font-title);
    font-size: 18px;
    text-transform: uppercase;
}

.gift-section-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.gift-category-container {
    margin-top: 10px;
}

.price-card.gift-card {
    border-color: rgba(255, 0, 0, 0.22);
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 0, 0, 0.12),
            transparent 38%
        ),
        var(--glass-bg);
}

.price-card.gift-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
    opacity: .65;
}

.gift-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border-bottom-left-radius: 12px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    font-family: var(--font-title);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gift-product-icon {
    width: 52px;
    height: 52px;
    margin: 12px auto 6px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(255, 0, 0, 0.07);
    border: 1px solid rgba(255, 0, 0, 0.18);
    font-size: 25px;
}

.gift-product-title {
    margin: 9px 0 0;
    color: var(--text-light);
    font-family: var(--font-title);
    font-size: 17px;
    text-align: center;
}

.gift-price {
    margin: 15px 0;
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 900;
}

.gift-price span {
    color: var(--text-muted);
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 500;
}

.gift-features {
    width: 100%;
    list-style: none;
    padding: 18px 0 0;
    margin: 0 0 24px;
    border-top: 1px solid var(--glass-border);
    text-align: left;
}

.gift-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.gift-features i {
    color: var(--primary);
    font-size: 16px;
}

.gift-action-button {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    ) !important;
    border-color: transparent !important;
}

.gift-claimed-button {
    opacity: .58;
    cursor: not-allowed !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

@media (max-width: 650px) {
    .gift-section-heading {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================
   FIX FINAL STORE / REGALOS / STOCK
   ============================================================ */

#tienda {
    overflow: hidden;
}

#tienda > .section-title {
    margin-bottom: 50px;
}

.gift-section-heading {
    max-width: 1160px;
    margin: 75px auto 30px;
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.20);

    background:
        radial-gradient(
            circle at left center,
            rgba(255, 0, 0, 0.12),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(15, 3, 3, 0.95),
            rgba(5, 2, 2, 0.96)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.gift-section-heading > div:last-child {
    min-width: 0;
}

.gift-section-heading h3 {
    margin: 5px 0 6px;
}

.gift-section-heading p {
    max-width: 760px;
}

.gift-category-container {
    align-items: stretch;
}

.price-card.gift-card {
    min-height: 430px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 0, 0, 0.11),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(16, 4, 4, 0.90),
            rgba(7, 2, 2, 0.94)
        );

    border: 1px solid rgba(255, 0, 0, 0.20);
}

.price-card.gift-card.featured {
    border-color: var(--primary);
    box-shadow:
        0 0 25px rgba(255, 0, 0, 0.18),
        0 18px 45px rgba(0, 0, 0, 0.38);
}

.gift-product-icon {
    margin-top: 20px;
}

.gift-features {
    flex-grow: 1;
}

.product-stock-status {
    width: 100%;
    min-height: 40px;
    margin: 0 0 18px;
    padding: 9px 12px;

    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    font-family: var(--font-text);
    font-size: 11px;
    font-weight: 600;
}

.product-stock-status i {
    font-size: 16px;
}

.product-stock-status strong {
    min-width: 28px;
    height: 22px;
    padding: 0 7px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-family: var(--font-title);
    font-size: 9px;
}

.product-stock-status.in-stock {
    color: #79f2ad;
    border: 1px solid rgba(0, 230, 118, 0.18);
    background: rgba(0, 230, 118, 0.055);
}

.product-stock-status.in-stock strong {
    color: #ffffff;
    background: rgba(0, 230, 118, 0.14);
    border: 1px solid rgba(0, 230, 118, 0.18);
}

.product-stock-status.out-of-stock {
    color: #ff6969;
    border: 1px solid rgba(255, 0, 0, 0.18);
    background: rgba(255, 0, 0, 0.055);
}

.product-stock-status.out-of-stock strong {
    color: #ffffff;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.18);
}

.stock-disabled-button,
.stock-disabled-button:hover {
    cursor: not-allowed !important;
    opacity: 0.48 !important;

    color: #9d9d9d !important;
    background: rgba(255, 255, 255, 0.025) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;

    box-shadow: none !important;
    transform: none !important;
}

@media (max-width: 900px) {
    .price-card,
    .price-card.gift-card {
        min-height: auto;
    }

    .gift-section-heading {
        margin-top: 55px;
    }
}

@media (max-width: 650px) {
    .gift-section-heading {
        margin-left: 20px;
        margin-right: 20px;
        padding: 22px 18px;
        flex-direction: column;
        text-align: center;
    }

    .gift-section-heading p {
        text-align: center;
    }
}


/* ============================================================
   PROGRAMADOR - MANTENIMIENTO / TEMA DINÁMICO
   ============================================================ */

.developer-maintenance-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background:
        radial-gradient(circle at center, rgba(255,0,0,.10), transparent 38%),
        rgba(0,0,0,.96);
    backdrop-filter: blur(12px);
}

.developer-maintenance-card {
    width: min(620px, 100%);
    padding: 42px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,0,0,.25);
    background:
        linear-gradient(180deg, rgba(15,3,3,.96), rgba(4,1,1,.98));
    box-shadow: 0 30px 90px rgba(0,0,0,.65);
    text-align: center;
}

.developer-maintenance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(255,0,0,.30);
    background: rgba(255,0,0,.06);
    font-size: 29px;
}

.developer-maintenance-card > span {
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.developer-maintenance-card h2 {
    margin: 8px 0 12px;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 24px;
}

.developer-maintenance-card h2 b {
    color: var(--primary);
}

.developer-maintenance-card p {
    max-width: 470px;
    margin: auto;
    color: #8c8c8c;
    font-size: 11px;
    line-height: 1.75;
}

.developer-maintenance-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,0,0,.28);
    background: rgba(255,0,0,.06);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}
