/* Estilos para la página de suscripciones */
.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Estilos para las tarjetas de plan */
.plan-card {
    background-color: #191919;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-card.active {
    border: 2px solid #6c5ce7;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: #6c5ce7;
    color: white;
    padding: 5px 40px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}

.plan-header {
    padding: 2rem;
    border-bottom: 1px solid #333;
    text-align: center;
}

.plan-header h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.plan-price .period {
    font-size: 1rem;
    color: #aaa;
}

.plan-description {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.plan-features {
    padding: 2rem;
    flex-grow: 1;
}

.plan-features ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: flex-start;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #6c5ce7;
    margin-right: 10px;
    margin-top: 4px;
}

.plan-action {
    padding: 2rem;
    border-top: 1px solid #333;
}

/* Sección de CTA */
.cta-section {
    padding: 4rem 2rem;
    background-color: #191919;
    border-radius: 12px;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Modal de suscripción */
.modal-content {
    background-color: #191919;
    border: 1px solid #333;
}

.modal-header {
    border-bottom: 1px solid #333;
}

.modal-footer {
    border-top: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .plan-card {
        margin-bottom: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn + .btn {
        margin-left: 0 !important;
    }
}

/* Featured Plan Styles */
.featured-plan {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
    border: 2px solid #007bff !important;
}

.featured-plan .ribbon {
    background-color: #007bff;
}

/* Executive Testimonial Styles */
.executive-testimonial {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
    border-left: 4px solid #007bff;
    padding-left: 2rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #888;
    font-weight: 600;
}

/* Stats Highlight */
.stats-highlight {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 0.5rem;
}

/* Enhanced Features List */
.plan-features ul li strong {
    color: #007bff;
}

.plan-features ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features ul li:last-child {
    border-bottom: none;
}

/* CTA Section Enhancements */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(108, 92, 231, 0.1)) !important;
    padding: 3rem 2rem !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cta-section h3 {
    font-size: 2.2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .featured-plan {
        transform: none;
        margin-top: 2rem;
    }
    
    .stats-highlight {
        flex-direction: column;
        gap: 1rem;
    }
    
    .executive-testimonial {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
}