body{
    font-family: Arial, Verdana, "Times new roman";
    color: white;
    background: #9b0005;
    margin: 0;
    padding-top: 100px;  /*Ajusta según altura del menú */
}

.menu {
    list-style: none;
    padding: 0;
    background: #ffffff;
}

/* ===== MENÚ FIJO =====*/
nav{
    position: fixed;  /* Lo fija */
    top:0;            /* pegado arriba */
    left:0;
    width:100%;
    background: #ffffff;
    z-index:1000;     /* Siempre encima */ 
}

/* Ajuste del contenedor */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background:#ffffff;
    display:flex;
    justify-content:center;
}

/* Elementos del menú */
.menu li {
    display: inline-block;
}

/* Enlaces */
.menu li a {
    text-decoration: none;
    color: black;
    padding:20px 30px;
    display: block;
    font-weight: bold;
    transition: 0.3s;
}
.menu li a:hover{
    background: #9b0005;
    color: white;
}

.header {
    text-align: center;
}

.contenedor {
    max-width: 900px;
    margin: auto;
}

.imagenes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.imagenes img {
    width: 450px;
    height: 250px;
    border-radius: 15px;
}

.galeria {
    text-align: justify;
}

/* SECCIÓN REVISTA */
.seccion-revista {
    background-color: #dbeeff;
    padding: 50px;
    border-radius: 15px;
    margin: 30px;
}

.seccion-revista h1 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

/* CONTENEDOR */
.contenedor-revistas {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* TARJETAS */
.revista-card {
    background-color: white;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.revista-card:hover {
    transform: scale(1.05);
}

/* BOTÓN */
.btn-revista {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background-color: #a7c7ff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    color: black;
    transition: 0.3s;
}

.btn-revista:hover {
    background-color: #7fb3ff;
}

/* FOOTER */

.footer{
    background:white;
    color:black;
    text-align:center;
    padding:30px 20px;
    margin-top:40px;
}

.footer h3{
    margin-top:0;
}

.footer p{
    margin:8px 0;
}

.copy{
    margin-top:15px;
    font-size:14px;
}

/* CARRUSEL DE INSTALACIONES */

.carousel{
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.slide{
    width:100%;
    display:none;
    border-radius:15px;
}

.slide.active{
    display:block;
}