/* === RESET GENERAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === BOTÓN HOME === */
.btn-home {
    background-color: #07144f !important;
    color: white !important;
}

.btn-home:hover {
    background-color: #102181 !important;
}

/* === TITULOS Y TEXTOS === */
.text-h2-span {
    display: block;
    margin-top: 0.6em;
    font-weight: 500;
}

h1 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
}

li {
    list-style: none;
}

/* === HEADER === */
.contenedor-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-header h1 {
    text-align: center;
}

/* === LOGO PRINCIPAL DE HEADER === */
.logo {
    height: 120px;
    width: auto;
    padding: 10px;
    display: inline-block;
}

/* === HEADER FIJO === */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #e8efff; /* azul clarito */
    border-bottom: 1px solid #d1d1d1;
    padding: 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

/* === BOTÓN PARA VOLVER ARRIBA === */
#btnTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #07144f;
    color: white;
    padding: 12px 14px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none; /* oculto por defecto */
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

#btnTop:hover {
    background-color: #102181;
}

/* === FOOTER === */
footer {
    background-color: #f8f9fa;
}

/* Logo principal (Baliarda) */
.img-footer {
    height: 90px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 576px) {
    .img-footer {
        height: 110px;
    }
}

/* Logos secundarios */
.img-grupo {
    height: 55px;
    width: auto;
    margin: 10px;
    object-fit: contain;
}

@media (min-width: 576px) {
    .img-grupo {
        height: 65px;
    }
}

/* Texto ubicación */
.footer-lugar p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Links sin subrayado */
.footer-info a,
a {
    color: inherit;
    text-decoration: none;
}

.footer-info a:hover,
a:hover {
    text-decoration: underline;
}

/* Títulos del footer */
footer h3 {
    font-size: 1.4rem;
    color: #333;
}

/* Centrado de listas */
.lista-centro {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
}
