/*
 * Estilos comunes para documentos legales y landing de Calendario Turnos de Trabajo
 * Incluye variables, layout, header, footer, responsive, colores y tipografía
 */
:root {
    --primary-color: #3498db;
    --primary-hover: #2980b9;
    --secondary-color: #2ecc71;
    --secondary-hover: #27ae60;
    --text-color: #34495e;
    --bg-color-start: #f4f7f6;
    --bg-color-end: #e9f0f3;
    --card-bg: #ffffff;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-image: linear-gradient(to bottom, var(--bg-color-start), var(--bg-color-end));
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    text-align: center;
}
.container {
    max-width: 600px;
    width: 100%;
    padding: 2.5rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.logo {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h1 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
}
h2 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-top: 2rem;
}
p, li {
    font-size: 1rem;
    text-align: justify;
}
a {
    color: var(--primary-color);
}
footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}
footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    .container {
        padding: 2rem 1.5rem;
    }
    .logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    footer {
        font-size: 0.85rem;
    }
    footer a {
        display: block;
        margin: 10px 0;
    }
}
