/* ==========================================================================
   --- ESTILOS EXCLUSIVOS PARA EL AVISO DE PRIVACIDAD ---
   ========================================================================== */

body {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 100px;
}

.legal-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
}

.legal-container {
    max-width: 800px; /* Hacemos el ancho más angosto para facilitar la lectura del texto largo */
    margin: 0 auto;
}

/* Título unificado con Rubik */
.legal-title {
    font-family: 'Rubik', sans-serif !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: -1px !important;
    margin-bottom: 5px !important;
}

.legal-date {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 40px;
}

/* Caja de lectura de los términos legales */
.legal-content-box {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
    text-align: left;
}

.legal-content-box p {
    margin-bottom: 25px;
}

/* Subtítulos de cada bloque legal */
.legal-content-box h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Estilos de las viñetas */
.legal-content-box ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-content-box li {
    margin-bottom: 10px;
    list-style-type: square;
    color: #b3b3b3;
}

.legal-content-box li strong, 
.legal-content-box p strong {
    color: #C6FF34; /* Resaltamos los correos y elementos clave con el verde lima */
}

/* ==========================================================================
   --- ESTILOS DEL FOOTER (IDÉNTICO A TU PORTAFOLIO) ---
   ========================================================================== */

.main-footer {
    background-color: #222222 !important;
    padding: 60px 5% 30px 5% !important;
    font-family: 'Host Grotesk', sans-serif !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
}

.footer-logo-container {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
}

.footer-logo-icon {
    height: 32px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

.footer-logo-container h3 {
    font-family: 'Rubik', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.6rem !important;
    color: #C6FF34 !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.footer-brand p {
    font-size: 0.95rem !important;
    color: #cccccc !important;
    margin: 0 !important;
}

.footer-contact h4 {
    font-family: 'Rubik', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
}

.footer-contact p {
    font-size: 1rem !important;
    color: #cccccc !important;
    margin: 0 0 20px 0 !important;
}

.footer-socials {
    display: flex !important;
    gap: 18px !important;
}

.footer-socials a {
    color: #ffffff !important;
    font-size: 28px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: color 0.3s ease, transform 0.2s ease !important;
}

.footer-socials a:hover {
    color: #C6FF34 !important;
    transform: translateY(-2px) !important;
}

.footer-bottom {
    max-width: 1200px !important;
    margin: 20px auto 0 auto !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-top: 20px !important;
    font-size: 0.85rem !important;
    color: #666666 !important;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2.3rem !important;
    }
    
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-logo-container {
        justify-content: center !important;
    }

    .footer-socials {
        justify-content: center !important;
    }
}