/* =========================================
   PÁGINA: AVISO DE PRIVACIDAD (VERSIÓN CLARA/PREMIUM)
   ========================================= */

.privacidad-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 5%;
}

/* Panel principal (Fondo blanco limpio) */
.legal-glass-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 4rem;
    box-shadow: var(--shadow-soft); /* Usa la sombra del root de tu style.css */
}

/* Caja de actualización (Top) */
.update-badge {
    background: rgba(37, 99, 235, 0.05); /* Fondo azul muy sutil */
    border-left: 4px solid var(--accent-premium);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 3rem;
}

.update-badge p {
    margin: 0 !important;
    font-size: 0.95rem;
    color: #000000; /* Texto negro */
    font-weight: 500;
}

/* Títulos de sección con Iconos (Gris y Azul) */
.legal-section-title {
    font-family: var(--montserrat);
    color: #475569; /* Gris oscuro/azulado */
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    font-weight: 600;
}

.legal-section-title i {
    font-size: 1.5rem;
    color: var(--accent-premium); /* Ícono Azul */
}

/* Textos generales (Negro puro para lectura legal) */
.legal-glass-panel p,
.legal-glass-panel ul,
.legal-glass-panel ol {
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.legal-glass-panel ul,
.legal-glass-panel ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.legal-glass-panel ul li,
.legal-glass-panel ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Caja de Nota Importante */
.nota-importante {
    background: #fffbeb; /* Fondo amarillo muy suave */
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.nota-importante p {
    margin: 0;
    color: #000000;
}

.nota-importante strong {
    color: var(--accent-premium);
}

/* =========================================
   TARJETAS DE DATOS (GRID)
   ========================================= */
.datos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.dato-card {
    background: #f8fafc; /* Gris extra claro */
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--accent-premium);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.dato-card h4 {
    color: #475569; /* Gris azulado para títulos de tarjetas */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.dato-card ul {
    margin-left: 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #000000;
}

/* =========================================
   TABLA PREMIUM PARA TRANSFERENCIAS
   ========================================= */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.premium-table th {
    background: #f1f5f9;
    color: var(--accent-premium);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid var(--accent-premium);
}

.premium-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #000000;
    font-size: 0.95rem;
}

.premium-table tr:hover td {
    background: #f8fafc;
}

/* --- Responsividad --- */
@media (max-width: 768px) {
    .legal-glass-panel {
        padding: 2rem 1.5rem;
    }
    .legal-section-title {
        font-size: 1.4rem;
    }
}

/* =========================================
   TARJETAS DE CONTACTO Y DUDAS (SECCIÓN 8)
   ========================================= */
.contacto-dudas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contacto-dudas-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacto-dudas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--accent-premium);
}

.contacto-dudas-card i {
    font-size: 2rem;
    color: var(--accent-premium);
    margin-bottom: 1rem;
    display: block;
}

.contacto-dudas-card h4 {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contacto-dudas-card p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
    color: #000000 !important;
    text-align: center !important;
}

.fade-in {
    opacity: 1;
    transform: none;
}