/* ---------------------------------------------------
   Estilos para la página de Términos y Condiciones
--------------------------------------------------- */

body.terminos {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f4f6; /* fondo gris suave */
    color: #111827; /* color de texto principal */
    margin: 0;
    padding: 0;
}

.terminos .container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

.terminos h1 {
    text-align: center;
    color: #111827;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.terminos h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.3rem;
}

.terminos p {
    color: #374151;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.terminos a {
    color: #38bdf8; /* azul llamativo */
    text-decoration: none;
    transition: all 0.3s ease;
}

.terminos a:hover {
    text-decoration: underline;
}

.terminos a:focus {
    outline: 2px dashed #38bdf8;
    outline-offset: 2px;
}




