/* css/navegation.css */

/* HEADER GENERAL */
.main-header {
    background: #154965 !important;
    padding: 15px 0;
    width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

/* LOGOS EN FILA HORIZONTAL */
.logo-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important; /* Espacio entre logos */
}

.logo-img {
    height: 90px !important;
    background: white !important;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    object-fit: contain;
}

/* NAVEGACIÓN CON ICONOS */
.main-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: #dff3ff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio icono-texto */
    font-size: 15px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* COLORES DE BOTONES PARA TODO EL SITIO */
.btn-blue { background-color: #154965; color: white; }
.btn-red { background-color: #c0392b; color: white; }
.btn-green { background-color: #27ae60; color: white; }

.btn-custom {
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn-custom:hover { opacity: 0.9; transform: translateY(-1px); }

