/* ═══════════════════════════════════════════════════════════════════════════════
   PRECIOS FINAL - DISEÑO LIMPIO Y FUNCIONAL
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Reset - Ocultar TODOS los estilos viejos de precios */
.pricing-section,
.pricing-grid,
.pricing-card,
.pricing-badge,
.pricing-icon,
.pricing-description,
.pricing-price,
.pricing-features,
.btn-pricing,
.pack-especial,
.guarantee-section,
.guarantee-box,
.faq-pricing,
.faq-grid,
.faq-item {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TOGGLE - Mostrar/Ocultar secciones
   ═══════════════════════════════════════════════════════════════════════════════ */
.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTENEDOR PRINCIPAL
   ═══════════════════════════════════════════════════════════════════════════════ */
.pricing-new {
    padding: 2rem 5% 4rem;
    background: linear-gradient(180deg, #0a0f3a, #050a30);
}

.pricing-new-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GRID DE TARJETAS
   ═══════════════════════════════════════════════════════════════════════════════ */
.pricing-cards-new {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TARJETA - FONDO OSCURO ELEGANTE
   ═══════════════════════════════════════════════════════════════════════════════ */
.price-card-wrapper {
    display: flex !important;
    flex-direction: column;
}

.price-card-new {
    display: flex !important;
    flex-direction: column;
    background: rgba(10, 15, 58, 0.95) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 1.75rem !important;
    transition: all 0.3s ease;
    height: 100%;
}

.price-card-new:hover {
    border-color: rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

/* Tarjeta destacada */
.price-card-wrapper.featured {
    background: linear-gradient(135deg, #00d4ff, #7c3aed) !important;
    border-radius: 20px !important;
    padding: 2px !important;
}

.price-card-wrapper.featured .featured-label {
    display: block !important;
    text-align: center;
    color: #050a30;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 0;
    background: transparent;
}

.price-card-wrapper.featured .price-card-new {
    border: none !important;
    border-radius: 18px !important;
    background: #0a0f3a !important;
}

/* Nombre del plan */
.price-card-new .plan-name {
    display: block !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 1rem;
}

/* PRECIO - MUY VISIBLE */
.price-card-new .plan-price {
    display: flex !important;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card-new .plan-price .amount {
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    color: #00d4ff !important;
    line-height: 1;
}

.price-card-new .plan-price .period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Lista de características */
.price-card-new .plan-features {
    display: block !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem !important;
    flex-grow: 1;
}

.price-card-new .plan-features li {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85) !important;
}

.price-card-new .plan-features li svg {
    width: 17px;
    height: 17px;
    color: #00d4ff;
    flex-shrink: 0;
}

.price-card-new .plan-features li.disabled {
    color: rgba(255, 255, 255, 0.35) !important;
}

.price-card-new .plan-features li.disabled svg {
    color: rgba(255, 255, 255, 0.2);
}

/* Botón */
@keyframes shineBtn {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.price-card-new .plan-btn {
    display: block !important;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: conic-gradient(from 0deg, #00d4ff, #0a0f3a, #0a0f3a, #00d4ff, #0a0f3a, #0a0f3a, #0a0f3a, #00d4ff) !important;
    background-size: 300% 300%;
    animation: shineBtn 6s ease-out infinite;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.price-card-new .plan-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PACK ESPECIAL
   ═══════════════════════════════════════════════════════════════════════════════ */
.pack-nuevo {
    display: block !important;
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 20px;
    padding: 2px;
}

.pack-nuevo-inner {
    background: #0a0f3a;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
}

.pack-nuevo-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #050a30;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pack-nuevo h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pack-nuevo p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.pack-nuevo .price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

.pack-nuevo .price-new {
    font-size: 2.25rem;
    font-weight: 800;
    color: #00d4ff !important;
    margin-left: 0.5rem;
}

.pack-nuevo .plan-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.9rem 2rem;
    background: conic-gradient(from 0deg, #00d4ff, #0a0f3a, #0a0f3a, #00d4ff, #0a0f3a, #0a0f3a, #0a0f3a, #00d4ff) !important;
    background-size: 300% 300%;
    animation: shineBtn 6s ease-out infinite;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pack-nuevo .plan-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GARANTÍA
   ═══════════════════════════════════════════════════════════════════════════════ */
.garantia-nueva {
    display: block !important;
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    text-align: center;
}

.garantia-nueva .garantia-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #050a30;
}

.garantia-nueva h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.garantia-nueva p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .pricing-cards-new {
        grid-template-columns: 1fr !important;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .price-card-wrapper.featured {
        order: -1;
    }
}

@media (max-width: 480px) {
    .pricing-new {
        padding: 1.5rem 4%;
    }
    
    .price-card-new {
        padding: 1.25rem !important;
    }
    
    .price-card-new .plan-price .amount {
        font-size: 1.6rem !important;
    }
    
    .pack-nuevo-inner {
        padding: 1.5rem;
    }
    
    .pack-nuevo .price-new {
        font-size: 1.85rem;
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
