/**
 * Estilos para la página de suscripción de Stripe
 */

/* Estilos generales */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.subscription-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Estilos para planes */
.plans-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: white;
}

.plan-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.plan-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.02);
}

.plan-card.selected h6,
.plan-card.selected .price-display {
    color: white !important;
}

.plan-card.selected li {
    color: white !important;
}

.plan-card.selected li .bi-check {
    color: #28a745 !important;
    background-color: white;
    border-radius: 50%;
    padding: 2px;
    font-weight: bold;
}

.plan-card input[type="radio"] {
    position: absolute;
    top: 15px;
    right: 15px;
    transform: scale(1.2);
}

/* Estilos para listas de características */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 5px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #f8f9fa;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Estilos para FAQ */
.accordion-button {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #e3f2fd;
    color: #1976d2;
}

.accordion-body {
    font-size: 0.9rem;
    line-height: 1.5;
}

.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
}

/* Estilos para precios */
.price-display {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
}

/* Estilos para botones */
.btn-subscribe {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Estilos para formularios */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

/* Estilos para loading */
.loading {
    display: none !important;
}

.loading.show {
    display: flex !important;
}

/* Estilos para idiomas */
.language-label {
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-label:hover {
    background-color: #f8f9fa;
}

.language-label.included {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    font-weight: bold;
}

.language-label.additional {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
}

.language-price-badge {
    font-size: 0.75rem;
    padding: 2px 6px;
}

.included-language {
    color: #28a745;
    font-weight: bold;
}

.additional-languages {
    color: #FCAE3A;
    font-weight: bold;
}

.language-description {
    font-size: 0.9rem;
    opacity: 0.9;
}
