/* ═══════════════════════════════════════════
   PACKS PREVIEW GRID (estilo Apple)
   ═══════════════════════════════════════════ */

.packs-preview-section {
    padding: 100px 0;
    background: var(--bg-dark, #0a1628);
}

.packs-preview-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.packs-preview-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-bottom: 48px;
}

.packs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pack-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(79, 209, 197, 0.08);
    border-color: rgba(79, 209, 197, 0.25);
}

.pack-card-premium {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.06) 0%, rgba(14, 230, 104, 0.04) 100%);
    border-color: rgba(79, 209, 197, 0.2);
}

.pack-card-content {
    flex: 1;
}

.pack-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(79, 209, 197, 0.9);
    background: rgba(79, 209, 197, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.premium-tag {
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.15), rgba(14, 230, 104, 0.15));
    color: #0ee668;
}

.pack-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.pack-card-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.pack-card-price {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.price-setup,
.price-monthly {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.price-setup small,
.price-monthly small {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}

.pack-card-img {
    max-height: 160px;
    overflow: hidden;
    border-radius: 12px;
    margin: 12px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.pack-card-actions {
    display: flex;
    gap: 12px;
}

.btn-pack-info {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(79, 209, 197, 1);
    background: rgba(79, 209, 197, 0.08);
    border: 1px solid rgba(79, 209, 197, 0.2);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-pack-info:hover {
    background: rgba(79, 209, 197, 0.15);
    border-color: rgba(79, 209, 197, 0.4);
}

.btn-pack-buy {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1628;
    background: linear-gradient(135deg, #BAFF29, #00d4aa);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-pack-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(79, 209, 197, 0.3);
}

.packs-cta {
    text-align: center;
    margin-top: 40px;
}

/* ═══ PACKS HERO (packs.html) ═══ */

.packs-hero {
    padding: 100px 0;
    background: var(--bg-dark, #0a1628);
    text-align: center;
}

.packs-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.packs-hero .subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin: 0 auto;
    text-align: center;
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 768px) {
    .packs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pack-card {
        padding: 28px 24px 24px;
    }

    .pack-card h3 {
        font-size: 1.35rem;
    }

    .packs-hero h1 {
        font-size: 2rem;
    }

    .packs-preview-section .section-title {
        font-size: 2rem;
    }
}