/* Modificaciones del template*/

/* === FORCE STATIC HEADER COLOR === */

header,
header.transparent,
header.smaller,
header.scroll-light,
header.scroll-dark,
header.header-light,
header.header-dark {
  background: var(--tertiary-color) !important;
  backdrop-filter: none !important;
}


/* Hero spacing so the nav doesn't cover the video */
.hero-section {
  padding-top: clamp(120px, 12vh, 180px);
}

/* -------------------------Color de header--------------------- */

.menu_side_area  h5 {
  color: #ffffff;
}

/* Dropdown hover color (override coloring.css without changing variables) */
#mainmenu li li a.menu-item:hover,
#mainmenu ul li:hover > a.menu-item {
  background: #4fc3f7; /* celeste */
}

/* opcional: texto legible */
#mainmenu li li a.menu-item:hover,
#mainmenu ul li:hover > a.menu-item {
  color: #fff;
}

/* Mobile menu: remove yellow text and use the same blue as hover */
@media (max-width: 991px) {

  /* Links in the mobile dropdown/panel */
  #mainmenu a,
  #mainmenu a.menu-item,
  #mainmenu li a.menu-item {
    color: #ffffff !important;
  }

  /* Active/current link (often turns yellow via primary color) */
  #mainmenu li.active > a,
  #mainmenu li a.active,
  #mainmenu li a:active,
  #mainmenu li:hover > a {
    color: #4fc3f7 !important; /* your hover blue */
  }

  header.header-mobile #mainmenu {
    padding-left: 0;
    padding-right: 0;
  }

  /* Footer 3 columns */
footer .footer-title{
  margin-bottom: 14px;
}

footer .footer-links{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

footer .footer-links li{
  margin-bottom: 10px;
}

footer .footer-links a{
  text-decoration: none;
  opacity: .9;
}

footer .footer-links a:hover{
  opacity: 1;
  text-decoration: underline;
}
}



/* Contact Us – spacing & alignment */
.footer-links li{
  margin-bottom: 14px; /* espacio vertical entre filas */
  list-style: none;
}

.footer-links a{
  display: inline-flex;            /* alinea icono + texto */
  align-items: center;
  gap: 10px;                       /* espacio entre texto e icono */
  font-size: 15px;
  line-height: 1.6;
}

/* Iconos de Contact Us */
.footer-links i{
  font-size: 16px;
  opacity: 0.85;
}

/* Instagram brand icon */
.footer-links .fa-instagram{
  font-size: 17px;
}

/* Hover sutil y profesional */
.footer-links a:hover{
  opacity: 1;
}

/* Más espacio entre sección azul y cards (mobile) Index */ 
@media (max-width: 991px) {
  .section-dark.bg-color-3 {
    padding-bottom: 80px; 
  }
}

/* Desktop: hover azulito en el menú principal */
header:not(.header-mobile) #mainmenu > li > a.menu-item:hover,
header:not(.header-mobile) #mainmenu > li:hover > a.menu-item {
  color: #4fc3f7;
}