/* --- ESTILOS GENERALES --- */
.legal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding-top: 50px;
}

.terms-wrapper {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

/* Títulos de sección */
.term-item h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a !important;
}

/* Bloque destacado */
.term-item.bg-white {
    background: #ffffff !important;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.legal-content{
	margin-top: 50px;
}

/* --- CAJA DE CONTACTO (EL "BLOQUE NEGRO") --- */
.contact-legal {
    background-color: #212529 !important; /* Gris oscuro/negro */
    border-radius: 20px !important;
    padding: 3rem !important;
    margin-top: 4rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	margin-bottom: 50px;
}

.contact-legal h4 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-legal p {
    color: #adb5bd !important;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contenedor de enlaces centrado */
.contact-legal .d-flex {
    display: flex;
    justify-content: center; /* Centra los elementos */
    align-items: center;
    gap: 2.5rem !important; /* Espacio entre mail y tel */
    flex-wrap: wrap;
}

.contact-legal a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Iconos */
.contact-legal a i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.contact-legal a:hover {
    color: #FF9900 !important; /* Naranja Arena */
    transform: translateY(-3px);
}

/* Colores específicos de iconos */
.text-primary { color: #FF9900 !important; } /* Icono Mail */
.text-success { color: #25D366 !important; } /* Icono WhatsApp */

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .contact-legal {
        padding: 2rem 1.5rem !important;
    }
    
    .contact-legal .d-flex {
        flex-direction: column; /* En móvil uno sobre otro */
        gap: 1.5rem !important;
    }

    .contact-legal a {
        font-size: 1rem;
    }
}