/* ====== ESTILOS GENERALES ====== */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* ====== HEADER ====== */
.header {
    text-align: center;
    background: linear-gradient(135deg, #0057b8, #00a6ff);
    color: white;
    padding: 40px 20px;
}

.header .logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo {
    width: 90px;
    height: 90px;
    background: #ffffff55;
    border-radius: 15px;
    object-fit: contain;
}

/* ====== MENÚ ====== */
.menu {
    background: #003b72;
    padding: 10px;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

/* ====== SECCIONES ====== */
.seccion {
    padding: 40px 20px;
    text-align: center;
}

.gris {
    background: #e9e9e9;
}

.lista {
    text-align: left;
    width: fit-content;
    margin: auto;
    font-size: 18px;
}

/* ====== CARRUSEL DE GALERÍA ====== */
.carousel {
    margin: 30px auto 10px;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.carousel-window {
    overflow: hidden;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: #000;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    height: 320px;
    object-fit: cover;
}

/* BOTONES DEL CARRUSEL */
.carousel-btn {
    background: #003b72;
    border: none;
    color: #fff;
    font-size: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
    background: #0057b8;
    transform: scale(1.05);
}

/* PUNTOS DEL CARRUSEL */
.carousel-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #aaa;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dot.active {
    background: #003b72;
    transform: scale(1.2);
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    background: #003b72;
    color: white;
    padding: 15px 0;
    margin-top: 20px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
    .menu ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .carousel-item {
        height: 220px;
    }
}
