/* HEADER */





.tabs-header {
  background: #FF383C;
  padding: 12px;
  color: white;
  border-bottom: 2px solid ;

}

/* MOBILE BAR */
.tabs-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTONS */
.tab-btn.tab-empa {
  font-size: 28px !important;
  font-family: 'PPRightGroteskNarrowVariable' !important;
  font-weight: 700;
}
.tab-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 0;
font-family: 'TitilliumWeb-SemiBold'}



.tab-btn.active {
  font-weight: 600;
}
.tab-btn:focus,
.tab-btn:active,
.tab-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.tabs-toggle:focus,
.tabs-toggle:active,
.tabs-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}

/* HAMBURGUER */
.tabs-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

/* MENU */
.tabs-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* CONTENT */
/* .tabs-content {
  padding: 40px;
} */

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* MOBILE */
@media (max-width: 991px) {
  .tabs-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }



  .tabs-mobile {
    display: flex;          /* 🔑 muestra EMPATRIADOS mobile */
    justify-content: space-between;
    align-items: center;
  }

  .desktop-only {
    display: none;          /* 🔑 oculta EMPATRIADOS desktop */
  }

  .tabs-menu {
    display: none;
    flex-direction: column;
  }

  .tabs-menu.open {
    display: flex;
  }
}

/* DESKTOP */
@media (min-width: 768px) {
    .tab-btn.tab-empa {
  font-size: 36px !important;

}
.tab-btn {
font-size: 18px;}}

@media (min-width: 992px) {
 .tabs-mobile {
    display: none;          /* 🔑 oculta EMPATRIADOS mobile */
  }

  .tabs-menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .desktop-only {
    display: block;         /* 🔑 muestra EMPATRIADOS desktop */
  }

  .tab-btn.tab-empa {
  font-size: 40px !important;

}
.tab-btn {
font-size: 20px;}

}


