

/* Fondo del navbar */
.bg-custom {
    background-color: #0d3c55 !important;
}

    /* Enlaces del navbar */
    .bg-custom .navbar-nav .nav-link,
    .bg-custom .navbar-brand,
    .bg-custom .dropdown-toggle {
        color: #ffffff !important;
    }

        .bg-custom .navbar-nav .nav-link:hover,
        .bg-custom .navbar-brand:hover,
        .bg-custom .dropdown-toggle:hover {
            color: #d9d9d9 !important; /* gris claro al pasar el mouse */
        }

    /* Dropdown */
    .bg-custom .dropdown-menu {
        background-color: #0d3c55; /* mismo color de header */
        border: none;
    }

        .bg-custom .dropdown-menu .nav-link {
            color: #ffffff !important;
        }

            .bg-custom .dropdown-menu .nav-link:hover {
                background-color: #09415f; /* tono más oscuro para hover */
                color: #ffffff !important;
            }

/* Navbar más compacta */
.navbar.bg-custom {
    padding-top: 0.25rem; /* reduce padding arriba */
    padding-bottom: 0.25rem; /* reduce padding abajo */
}

/* Logo más pequeño */
.navbar .navbar-brand img {
    height: 40px; /* antes 74px */
    width: auto;
}

/* Links más compactos */
.navbar .nav-link {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Footer personalizado */
.footer-custom {
    background-color: #0d3c55 !important;
    color: #ffffff !important;
    padding: 15px 0;
}

    /* Enlaces dentro del footer */
    .footer-custom a {
        color: #ffffff !important;
        text-decoration: underline;
    }

        .footer-custom a:hover {
            color: #d9d9d9 !important; /* gris claro en hover */
        }
