/* ======= CONFIGURACIÓN GENERAL ======= */
body {
    background-color: #FFF7EC;
    color: #4E2A0A;
    font-family: 'Times New Roman', serif;
}
        /* ======= ENCABEZADO  ======= */
header {
    background-color: #E67E22;    /* Naranja del fondo */
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
.logo {
    height: 55px;
}
/* Enlaces del menú */
nav a {
    color: white;
    text-decoration: none;
    margin-left: 18px;
    font-weight: bold;
    font-size: 15px;
}
/* Efecto al pasar el mouse */
nav a:hover {
    text-decoration: underline;
}
       /* Imagen separadora */
.separador {
    width: 100%;
    height: 250px; /* ajusta el alto */
    background-image: url("../imagenes/ws.png"); /* tu imagen */
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}
/* Sección del texto */
.contenido {
    margin-left: 0;
    margin-right: auto;
}
.contenido h2 {
    font-size: 25px;
    font-weight: bold;
    color: #814425;
    text-align: left;
    margin-left: 122 px;
}
/* ======= PIE DE PÁGINA ======= */
footer {
    background-color: #4E2A0A;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 40px;
}
/* Enlace activo (la página actual) */
nav a.active {
    background-color: white;      /* fondo claro */
    color: #E67E22;               /* color de texto naranja */
    padding: 6px 12px;            /* un poco de espacio */
    border-radius: 6px;           /* bordes redondeados */
    text-decoration: none;
}
.logfijo {
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    text-align: center;
}
.logimg {
    width:80px; 
    cursor:pointer; 
    border-radius:50%; 
    border:2px solid #E67E22;
}
.logp {
     color:#080436; 
     font-weight:bold;"
}