/* ======================================================== */
/* === ESTILOS PARA PÁGINAS LEGALES (AVISO DE PRIVACIDAD, T&C) === */
/* ======================================================== */

:root {
    --color-Morado: #652D90;
    --color-Turquesa: #00B0B9;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #101820;
    /* Texto oscuro sobre fondo blanco */
    background-color: white;
}

/* --- Header --- */
.service-header {
    background-color: #101820;
    color: white;
    padding: 5rem 0;
}

.service-header-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-Turquesa);
    /* Usamos turquesa para consistencia */
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
}

.back-link:hover {
    color: white;
}

.back-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.service-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.service-header-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 42rem;
}

/* --- Contenido Legal --- */
.legal-content {
    padding: 80px 0;
}

.legal-container {
    max-width: 800px;
    /* Ancho optimizado para lectura */
    margin: 0 auto;
    padding: 0 20px;
}

.legal-container h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container p,
.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    /* Gris oscuro para el texto */
    margin-bottom: 1rem;
}

.legal-container .last-updated {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.legal-container ul {
    list-style-position: inside;
    padding-left: 0;
}

.legal-container a {
    color: var(--color-Turquesa);
    text-decoration: none;
    font-weight: 500;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container strong {
    font-weight: 600;
    color: #101820;
}

/* Estilos generales para el footer */
.footer {
    background-color: rgb(16 24 32);
    /* Negro corporativo */
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Contenedor de columnas */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Estilos para cada columna */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    height: 3rem;
    margin-bottom: 1rem;
    max-width: 100%;
    display: block;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #9ca3af;
    /* Gris claro */
}

.footer-title {
    font-size: 1.25rem;
    line-height: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
}

.footer-link {
    font-size: 1rem;
    color: #9ca3af;
    /* Gris claro */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00B0B9;
    /* Aqua corporativo */
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    background-color: rgba(255, 255, 255, 0.1);
    /* Fondo semi-transparente */
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-social-link:hover {
    background-color: #00B0B9;
    /* Aqua corporativo */
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    color: white;
}

/* Línea divisoria y derechos reservados */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Línea divisoria */
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
    /* Gris claro */
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    font-size: 0.875rem;
    color: #9ca3af;
    /* Gris claro */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #00B0B9;
    /* Aqua corporativo */
}

/* Responsividad */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}