/* =========================================
   COMBOS CSS - DISEÑO CENTRADO Y LIMPIO
   ========================================= */

/* Solo el fondo, sin tocar márgenes que afecten al menú */
body {
    background: radial-gradient(circle at 50% 10%, #151515, #000000);
    color: white;
    min-height: 100vh;
}

/* TÍTULOS DE SECCIÓN */
.pricing-header {
    text-align: center;
    /* AJUSTE CLAVE: Bajamos a 50px porque tu menú 'sticky' ya ocupa espacio arriba */
    padding: 50px 20px 30px; 
}

.pricing-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #e50914);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-header p { 
    color: #aaa; 
    font-size: 1.2rem; 
}

/* --- AGRUPACIÓN INTELIGENTE (FLEXBOX CENTRADO) --- */

/* Contenedor General */
#combos-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* Título de Categoría (DEPORTES, CINE...) */
.category-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 50px 0 30px; 
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: table; 
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

/* GRUPO DE TARJETAS (FLEXBOX PARA CENTRAR) */
.combos-grid-group {
    display: flex;             /* FLEX: Permite centrado inteligente */
    flex-wrap: wrap;           /* Permite varias filas */
    justify-content: center;   /* CENTRA todo horizontalmente */
    gap: 30px;                 
    padding: 0 20px;
    margin-bottom: 40px;
    width: 100%;
}

/* TARJETA INDIVIDUAL */
.combo-card {
    /* Flexibilidad */
    flex: 0 1 320px;           /* Ancho base 320px */
    max-width: 350px;          /* Ancho máximo */
    width: 100%;               
    
    /* Estilo Visual */
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.combo-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* BADGE DE AHORRO */
.badge-save {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* LOGOS */
.combo-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    height: 70px;
}

.combo-logos img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.05);
    object-fit: cover;
}

.plus { font-size: 1.5rem; color: #555; font-weight: bold; }

/* TEXTOS */
.combo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    margin-left: 10px;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
}

.features li {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✔";
    color: #25d366; 
    margin-right: 10px;
    font-weight: bold;
}

/* PRECIOS */
.price-box {
    margin-bottom: 20px;
}

.old-price {
    display: block;
    color: #666;
    text-decoration: line-through;
    font-size: 1rem;
}

.new-price {
    display: block;
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
}

/* BOTÓN DE ACCIÓN */
.cta-button {
    background: white;
    color: black;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #e50914; 
    color: white;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}