:root {
  --bs-dark-custom: #333333;
}

/* TIPOGRAFÍAS CORPORATIVAS */
@font-face {
  font-family: 'ITC Franklin Gothic Std';
  src: url('/fonts/ITCFranklinGothicStd-Book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Miller';
  src: url('/fonts/Miller-Text.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'ITC Franklin Gothic Std', 'Franklin Gothic Medium', 'Arial', sans-serif;
  background-color: #f8f9fa;
}

.font-secondary {
  font-family: 'Miller', 'Arial', Helvetica, sans-serif;
}

/* Cabecera & Logo (Mobile First) */
.navbar {
  background-color: var(--bs-dark-custom) !important;
}

.navbar-brand {
  max-width: calc(100% - 100px);
}
.navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: height 0.3s ease;
}

.info-icon {
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}

/* Escalado a Escritorio */
@media (min-width: 992px) {
  .navbar-brand {
    max-width: 100%;
  }
  .navbar-brand img {
    height: 60px;
  }
  .info-icon {
    width: 24px;
    height: 24px;
  }
}

/* Animación Menú Hamburguesa */
.custom-toggler {
  border: none;
  background: transparent;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1050;
  outline: none;
}
.custom-toggler .line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  left: 0;
  transition: 0.25s ease-in-out;
}
.custom-toggler .line1 {
  top: 0px;
}
.custom-toggler .line2 {
  top: 8px;
}
.custom-toggler .line3 {
  top: 16px;
}

.custom-toggler.open .line1 {
  top: 8px;
  transform: rotate(135deg);
}
.custom-toggler.open .line2 {
  opacity: 0;
  left: 60px;
}
.custom-toggler.open .line3 {
  top: 8px;
  transform: rotate(-135deg);
}

/* Desplegable Idiomas (Escritorio) */
.dropdown-menu {
  background-color: #000;
  border: 1px solid #333;
  padding: 0.5rem 0;
}
.dropdown-item {
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #2b2b2b;
  color: #fff;
}
.dropdown-item.active {
  background-color: #fff !important;
  color: #000 !important;
  font-weight: bold;
}
.dropdown-toggle {
  text-decoration: none;
}
.dropdown-toggle::after {
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.dropdown-toggle[aria-expanded='true']::after {
  transform: rotate(180deg);
}

/* Desplegable Idiomas (Móvil) */
@media (max-width: 991.98px) {
  .dropdown-menu {
    display: block;
    background: transparent;
    border: none;
    box-shadow: none !important;
    padding-top: 0;
  }
  .dropdown-toggle::after {
    display: none;
  }
  .dropdown-toggle {
    pointer-events: none;
    color: #888 !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #444;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    width: 100%;
  }
  .dropdown-item {
    padding: 0.75rem 1rem;
  }
}
