/* Estilos para la página de precios */

/* Banner promocional */
.pricing-banner {
    padding: 140px 20px 60px;
    background-color: #ffffff;
    text-align: center;
}

.banner-container {
    max-width: 800px;
    margin: 0 auto;
}

.banner-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.banner-offer {
    margin-bottom: 20px;
}

.banner-text {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.banner-discount {
    font-size: 48px;
    font-weight: 700;
    color: #20B2AA;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-period {
    font-size: 36px;
    font-weight: 400;
    color: #87CEEB;
    line-height: 1.2;
}

.banner-info {
    font-size: 16px;
    color: #666;
    margin-top: 30px;
    line-height: 1.6;
}

/* Sección de planes */
.pricing-section {
    padding: 60px 20px 100px;
    background-color: #f8f9fa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjetas de planes */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #ffc441;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffc441 0%, #ffb347 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 196, 65, 0.3);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.plan-pricing {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.price-period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
}

.price-discount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.discount-text {
    font-size: 13px;
    color: #20B2AA;
    font-weight: 500;
}

.plan-features {
    flex: 1;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

.feature-item i {
    color: #20B2AA;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
}

.plan-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ffc441 0%, #ffb347 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 196, 65, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.plan-button:hover {
    background: linear-gradient(135deg, #e6b03a 0%, #e6a03a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 196, 65, 0.4);
}

.plan-button.disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

.plan-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: #e9ecef;
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-banner {
        padding: 120px 20px 50px;
    }
    
    .banner-text {
        font-size: 28px;
    }
    
    .banner-discount {
        font-size: 40px;
    }
    
    .banner-period {
        font-size: 32px;
    }
    
    .banner-info {
        font-size: 14px;
    }
    
    .pricing-section {
        padding: 40px 20px 80px;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .price-currency {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-banner {
        padding: 100px 15px 40px;
    }
    
    .banner-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .banner-text {
        font-size: 24px;
    }
    
    .banner-discount {
        font-size: 36px;
    }
    
    .banner-period {
        font-size: 28px;
    }
    
    .banner-info {
        font-size: 13px;
        margin-top: 20px;
    }
    
    .pricing-section {
        padding: 30px 15px 60px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .plan-name {
        font-size: 22px;
    }
    
    .plan-description {
        font-size: 13px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-currency {
        font-size: 18px;
    }
    
    .price-period {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .plan-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

