/* Términos y Condiciones - Estilos */

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.terms-header {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), rgba(var(--bs-primary-rgb), 0.05));
    border-left: 4px solid rgb(var(--bs-primary-rgb));
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: rgb(var(--bs-primary-rgb));
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(var(--bs-primary-rgb), 0.2);
}

.terms-section h3 {
    color: #495057;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-section p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.alert-importante {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.alert-importante strong {
    color: #856404;
}

.highlight-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.highlight-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.contact-box {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    border: 2px solid rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.btn-email {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem 0.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}

