/* ESTILOS DE PÁGINA LEGAL COMPLETA - POLÍTICA DE COOKIES */
:root {
    --primary-color: #0d2c54;
    --secondary-color: #c9a66b;
    --text-dark: #1e293b;
    --text-light: #f8f9fa;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-dark); background-color: var(--bg-light); line-height: 1.7; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.main-header { background-color: var(--primary-color); color: var(--text-light); padding: 15px 0; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; }
.logo-bold { font-size: 24px; font-weight: 800; color: var(--text-light); }
.logo-light { color: var(--secondary-color); font-weight: 300; }
.logo-tagline { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary-color); }
.main-nav ul { display: flex; list-style: none; gap: 25px; }
.main-nav a { color: var(--text-light); text-decoration: none; font-size: 15px; }
.main-nav a:hover { color: var(--secondary-color); }
.btn-small { padding: 8px 16px; font-size: 14px; background-color: var(--secondary-color); color: var(--primary-color); text-decoration: none; font-weight: bold; border-radius: 4px; }

/* LAYOUT LEGAL */
.legal-container { padding: 60px 0; }
.text-layout { background-color: var(--bg-white); padding: 50px; border-radius: 6px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid #e2e8f0; max-width: 900px !important; }
.text-layout h1 { color: var(--primary-color); font-size: 30px; margin-bottom: 5px; border-bottom: 3px solid var(--secondary-color); padding-bottom: 15px; }
.last-update { font-size: 13px; color: #64748b; margin-bottom: 35px; }
.legal-section { margin-bottom: 30px; }
.legal-section h3 { color: var(--primary-color); font-size: 18px; margin-bottom: 12px; }
.legal-section p { color: #334155; font-size: 14.5px; text-align: justify; }

/* FOOTER */
.main-footer { background-color: #081a33; color: #94a3b8; padding: 60px 0 20px 0; font-size: 14px; border-top: 5px solid var(--secondary-color); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-bold { font-size: 24px; color: white; }
.footer-links h5, .footer-legal-links h5 { color: var(--text-light); font-size: 16px; margin-bottom: 20px; border-bottom: 2px solid #1e293b; padding-bottom: 8px; }
.footer-links ul, .footer-legal-links ul { list-style: none; }
.footer-links li, .footer-legal-links li { margin-bottom: 10px; }
.footer-links a, .footer-legal-links a { color: #cbd5e1; text-decoration: none; }
.footer-links a:hover, .footer-legal-links a:hover { color: var(--secondary-color); }
.footer-divider { border: 0; height: 1px; background-color: #1e293b; margin-bottom: 30px; }
.footer-disclaimer-bottom { text-align: justify; font-size: 12px; line-height: 1.6; }
.footer-disclaimer-bottom p { margin-bottom: 15px; }
.copyright { text-align: center; color: #64748b; margin-top: 20px; }

@media (max-width: 768px) {
    .text-layout { padding: 25px; }
    .header-flex { flex-direction: column; gap: 15px; }
}