/* paginas-legales.css - Estilos comunes para páginas legales */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    max-width: 820px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.7;
    color: #1e2a3a;
    background-color: #f9fafc;
}

h1 {
    color: #0b2b40;
    border-bottom: 3px solid #2c7a7a;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.fecha {
    color: #4a6a7a;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

h2 {
    color: #1a4a5a;
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.3rem;
    border-left: 4px solid #2c7a7a;
    padding-left: 12px;
}

ul {
    padding-left: 25px;
    margin: 10px 0 15px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: #0b3b4a;
}

.config-link {
    display: inline-block;
    background: #2c7a7a;
    color: white !important;
    padding: 6px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.2s;
    margin-left: 5px;
}

.config-link:hover {
    background: #1a5a5a;
    text-decoration: none;
}

.volver {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 24px;
    background: #1e2a3a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.2s;
}

.volver:hover {
    background: #0b1a2a;
}

.footer-nota {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #5a6a7a;
    border-top: 1px solid #d0d8e0;
    padding-top: 20px;
}

a {
    color: #2c7a7a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}