.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
  opacity: 9; 
  visibility: visible; 
  pointer-events: auto; 
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out; 
}

.dropdown-menu {
  padding: 10px; 
  display: block; 
  opacity: 0; 
  visibility: hidden; 
  pointer-events: none; 
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out; 
}

  .navbar {
    background-color: #0f1e30 !important;;
    padding: 10px 0; 
}
  
  .navbar .nav-link {
    color: white !important;
    font-size: 11px; 
}

.navbar-nav {
    margin-left: auto; 
    gap: 1rem; 
}

.nav-item {
    flex-shrink: 0; 
}

.nav-link {
    text-align: left; 
    padding: 30px 30px; 
}

.navbar-toggler {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.navbar-light .navbar-toggler-icon {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  .nav-item.dropdown .dropdown-menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
}


/* ------------------------------------------ FOOTER ------------------------------------------ */

.footer {
    background-color: #000000;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
    text-align: center;
}

.footer-column img {
    max-width: 200px;
    margin-bottom: 20px;
}

.text-highlighter {
    font-size: 18px;
    font-family: 'Molde Semi Condensed', sans-serif;
    font-weight: bold;
    color: #fafafa;
    margin-bottom: 20px;
    position: relative;
    display: block;        /* Se cambia a block para ocupar todo el ancho del contenedor */
    text-align: center;     /* Se centra el texto */
}


.text-highlighter::before {
    content: none;
}

.footer-list {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    font-size: 12px;
}

.footer-list li {
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.footer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
}

.footer-list li a {
    color: #fff;
    text-decoration: none;
}

.footer-list li a:hover {
    color: #e09900;
}

.text-contact {
    list-style-type: none;
    padding-left: 20px; /* Si notas que los puntos no quedan centrados, podrías usar: list-style-position: inside; */
    text-align: center;
}


.social-links-footer {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links-footer li {
    display: inline-block;
}

.social-links-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.social-links-footer a:hover {
    color: #e09900;
}

.footer-bottom .office-info {
    text-align: center;
    margin: 5px 0;
    font-size: 13px;
}

.footer-email {
    color: #ff6600;
}

.footer-highlight {
    color: #ff6600;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}
  