/* Resetear el padding del body para las páginas legales */
body {
    padding-top: 0;
}

/* Estilos para las secciones legales */
.legal-content {
    padding-top: 180px; /* Espacio suficiente para el navbar */
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.legal-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.legal-content h1 {
    margin-bottom: 30px;
    color: #333;
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5em;
    text-align: center;
}

/* Asegurar que el navbar esté por encima */
.navbar {
    z-index: 2000;
}

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    color: #333;
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.legal-section h2 {
    color: #444;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5em;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-section h3 {
    color: #555;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2em;
    margin: 20px 0 10px;
}

.legal-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-style: italic;
    text-align: right;
}

.cookie-note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #007bff;
    margin: 20px 0;
}

/* Estilos para el footer */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9em;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0;
    }

    .legal-section {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}