/*
 * ============================================================================
 * AIFA - Estilos Globales Consolidados
 * ============================================================================
 * Este archivo consolida los estilos de:
 * - cust077csstextos.blade.php (Tipografía y textos)
 * - cust002nuevoestilos.blade.php (Layout y responsive)
 * - cust011nuevoestilos.blade.php (Navegación y menús)
 * - cust050pruebaswitchbanner.blade.php (Toggle switch)
 * - cust052titulos.blade.php (Animación de títulos)
 * - cust018nuevoestilos.blade.php (Footer responsive)
 * - cust055terminoyaviso.blade.php (Modales términos/privacidad)
 *
 * Fecha de creación: 2024-12-11
 * Última actualización: 2024-12-11
 * ============================================================================
 */

/* ==========================================================================
   1. VARIABLES CSS (Colores y Breakpoints)
   ========================================================================== */

:root {
  /* Colores primarios */
  --color-primary: #017a61;
  --color-primary-hover: #00a651;
  --color-secondary: #23536b;
  --color-accent: #00ab87;

  /* Colores neutros */
  --color-text: #6f6f6f;
  --color-text-dark: #222222;
  --color-text-menu: #666666;
  --color-white: #ffffff;
  --color-border: #dddddd;
  --color-bg-light: #fafafa;

  /* Sombras */
  --shadow-menu: 0 3px 4px rgba(0, 0, 0, 0.07);
  --shadow-floating: 2px 1px 5px black;
  --shadow-color-primary: #01886d;

  /* Transiciones */
  --transition-default: 0.3s ease;

  /* Tipografía */
  --body-font-size: 15px;
  --font-size-heading: 2rem;
  --font-size-heading-mobile: 1.3333rem;
  --line-height-heading: 1.1;

  /* Alturas */
  --header-height: 100px;
  --header-height-line: 90px;
}

/* ==========================================================================
   2. ESTILOS BASE (Body, Enlaces, Tipografía)
   ========================================================================== */
html {
  font-size: var(--body-font-size);
}


body {
  color: var(--color-text);
}

p,
li,
.divider__line + .heading__desc {
  text-align: justify;
}

.accordion-item .accordion__item-body p {
  text-align: justify;
}

.custom-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: transparent;
}

.accordion-button::after {
  content: '+';
  background-image: none !important;
  font-size: 24px;
  font-weight: bold;
  transform: none;
  transition: none;
  width: auto;
  height: auto;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: none;
}

.custom-accordion .accordion-button,
.custom-accordion .accordion-button.collapsed {
  color: var(--color-primary);
}

.custom-accordion .accordion-button:focus,
.custom-accordion .accordion-button:active,
.custom-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-color: inherit;
  outline: none;
  background-color: transparent;
  color: var(--color-primary);
}

.accordion.custom-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion.custom-accordion .accordion-item:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.accordion.custom-accordion .accordion-item:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.accordion.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.footer-top p {
  text-align: left;
}

/* ==========================================================================
   3. TIPOGRAFÍA - Títulos y Encabezados
   ========================================================================== */

.heading__title,
.heading__desc,
.heading-2 .heading__title,
.heading-2 .heading__desc,
.locations-panel .locations__panel-title h4,
.text__block-title,
.noticia-titulo,
.about .heading,
h4 {
  font-size: var(--font-size-heading);
  line-height: var(--line-height-heading);
}

.heading.heading-2 p {
    font-size: 1rem;
}

.descripcionTL {
  font-size: 1.4rem;
}

.pagetitle__heading {
  text-shadow: 2px 2px 7px #000;
}

/* ==========================================================================
   4. COLORES DE INTERACCIÓN (Hover, Active, Focus)
   ========================================================================== */

/* Solo aplica color primary a títulos de proyectos y globo */
.custom-project-title,
#divGlobo a {
  color: var(--color-primary);
}

/* Acordeón abierto: verde */
.accordion-item .accordion__item-header.opened .accordion__item-title {
  color: var(--color-primary);
}

/* Hover solo para proyectos y globo (NO acordeón) */
#divGlobo a:hover,
.custom-project-title:hover,
.custom-project-content:hover,
.custom-project-content:hover .custom-project-title a {
  color: var(--color-primary);
}

  /* Hover del acordeón: verde también
   NOTA: Ya no necesita !important porque se eliminó el
   a:hover { color: #fff !important; } tóxico de style.css (línea 7685) */
.accordion__item-title:hover,
.custom-accordion .accordion-button:hover {
  color: var(--color-primary);
}

.project__title a:hover,
.project__title a:active {
  color: var(--color-text-dark);
}

/* ==========================================================================
   5. NAVEGACIÓN PRINCIPAL
   ========================================================================== */

.nav.flex-column .nav__item {
  text-align: left;
}

.nav__item-link {
  color: var(--color-white);
  position: relative;
  text-decoration: none;
}

.nav__item.with-dropdown > .nav__item-link {
  color: aliceblue;
  padding: 12px 0;
}

/* Línea blanca para encabezados padres en hover */
.nav__item.with-dropdown > .nav__item-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  transition: width var(--transition-default);
}

.nav__item.with-dropdown > .nav__item-link:hover::before {
  width: 100%;
}

.navbar .navbar-nav,
.module__btn {
  margin-top: 0px;
}

.navbar-brand {
  line-height: var(--header-height-line);
}

/* ==========================================================================
   6. MENÚ DROPDOWN / SUBMENÚ
   ========================================================================== */

.dropdown-menu {
  padding: 20px 0;
}

.dropdown-menu .nav__item {
  margin-bottom: 25px;
}

.dropdown-menu .nav__item:last-child {
  margin-bottom: 0;
}

.dropdown-menu .nav__item a {
  color: #666666;
  position: relative;
  text-decoration: none;
  padding: 12px 0;
  transition: color var(--transition-default);
  display: block;
}

/* Línea base debajo de elementos del submenú */
.dropdown-menu .nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

/* Línea de hover con efecto de transición */
.dropdown-menu .nav__item a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-hover);
  transition: width var(--transition-default);
}

.navbar .dropdown-menu .nav__item a:hover {
  color: #000 !important;
}

.dropdown-menu .nav__item a:hover::before {
  width: 100%;
}

.dropdown img {
  width: 30px;
  max-width: 30px;
}

/* Ancho de columnas en dropdown */
.wide-dropdown-menu .dropdown-menu-col {
  width: 33%;
}

.wide-dropdown-menu2 .dropdown-menu-col {
  width: 50%;
}

/* ==========================================================================
   7. GLOBO DE IDIOMA
   ========================================================================== */

#divGlobo {
  width: 100px;
  background: var(--color-white);
  padding: 10px 10px 0 10px;
  position: absolute;
  right: 0px;
}

#divGlobo a {
  display: block;
  margin-bottom: 10px;
}

/* ==========================================================================
   8. HEADER Y NAVBAR FIJO
   ========================================================================== */

.header__top-right {
  display: block;
}

.fixed-navbar .header__top-right {
  display: block;
}

.header__top-right .list-unstyled a {
  color: var(--color-white);
}

.fixed-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0;
  height: var(--header-height);
  max-height: var(--header-height);
  background-color: transparent;
  box-shadow: var(--shadow-menu);
  animation: translateHeader 0.8s;
}

/* ==========================================================================
   9. PAGE TITLE / BANNER
   ========================================================================== */

section#page-title {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}

/* ==========================================================================
   10. MENÚ FLOTANTE
   ========================================================================== */

.fm-icon {
  background-color: var(--color-accent);
}

.hvr-floating-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-floating);
  border-radius: 50%;
}

/* ==========================================================================
   11. ACORDEONES / FAQ
   ========================================================================== */

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 15px;
  background: var(--color-bg-light);
}

.accordion-item .accordion__item-body {
  padding-top: 0px;
}

/* ==========================================================================
   12. CONTROLES DE TAMAÑO DE FUENTE
   ========================================================================== */

.font-controls {
  float: right;
}

.font-btn {
  background: var(--color-secondary);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all var(--transition-default);
}

.font-btn:hover {
  background: #1e3c72;
  transform: scale(1.05);
}

.font-btn:focus {
  background-color: #2a5298;
}

.font-size-indicator {
  color: #333;
  margin: 0 10px;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

a.aifafoot {
  color: white;
  text-decoration: none;
}

a.aifafoot:visited,
a.aifafoot:hover,
a.aifafoot:active,
a.aifafoot:focus {
  color: white;
}

/* ==========================================================================
   14. IFRAME Y CHAT
   ========================================================================== */

iframe {
  pointer-events: all;
}

#ifrChat a,
#ifrChat a:hover,
#ifrChat a:active {
  color: black;
}

/* ==========================================================================
   15. MEDIA QUERIES - Ordenadas por breakpoint ascendente
   ========================================================================== */

/* --------------------------------------------------------------------------
   15.3 Móvil: max-width 480px (Estilos generales móvil)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .accordion__item-title:hover,
  .custom-project-title:hover,
  .custom-project-title,
  .accordion__item-title {
    color: var(--color-primary);
  }

  .accordion-item .accordion__item-body p,
  p,
  li,
  .divider__line + .heading__desc {
    text-align: justify;
  }

  .heading__title,
  .heading-2 .heading__title,
  .heading-2 .heading__desc,
  .locations-panel .locations__panel-title,
  h4,
  .text__block-title,
  .noticia-titulo,
  .about .heading {
    font-size: var(--font-size-heading-mobile);
    line-height: var(--line-height-heading);
  }

  .d-none {
    display: block;
  }

  .dropdown-menu .row {
    display: grid;
    gap: 20px;
  }

  .dropdown-menu-col {
    padding: 10px;
  }

  .wide-dropdown-menu .dropdown-menu-col,
  .wide-dropdown-menu2 .dropdown-menu-col {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   15.6 Tablet: 481px - 1000px
   -------------------------------------------------------------------------- */
@media (min-width: 481px) and (max-width: 1000px) {
  .navbar .navbar-collapse {
    background-color: var(--color-white);
    box-shadow: var(--shadow-menu);
    z-index: 50;
    padding: 15px 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-default);
    transform: translateY(30px);
  }

  .vuelo-banner {
    top: -135px;
  }

  #services {
    margin-top: 120px;
  }

  .dropdown-menu .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }

  .wide-dropdown-menu .dropdown-menu-col,
  .wide-dropdown-menu2 .dropdown-menu-col {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   15.9 Tablet/Desktop intermedio: max-width 1035px
   -------------------------------------------------------------------------- */
@media (max-width: 1035px) {
  .vuelo-banner {
    top: -250px;
  }

  #services {
    margin-top: 120px;
  }
}

/* ==========================================================================
   16. TOGGLE SWITCH (de cust050pruebaswitchbanner)
   ========================================================================== */

.toggle-container {
  display: flex;
  align-items: center;
  margin: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

:not(#HomeSlider) > .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

:not(#HomeSlider) .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.toggle-text {
  margin-left: 10px;
}

.grayscale.bg-img {
  filter: grayscale(100%);
  transition: filter var(--transition-default);
}

.grayscale .bg-overlay-inter:before {
  filter: none;
}

/* ==========================================================================
   17. ANIMACIÓN DE TÍTULOS (de cust052titulos)
   ========================================================================== */

.pagetitle__heading {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  display: inline-block;
}

.pagetitle__heading.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   18. FOOTER RESPONSIVE (de cust018nuevoestilos)
   ========================================================================== */

.footer__copyright p {
  text-align: justify;
}

.footer__copyright .copyright-text {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .social__icons {
    padding-left: 14px;
  }

  .footer-top {
    padding-top: 1px;
  }

  .footer__widget {
    margin-bottom: 0px;
  }

  .footer-bottom {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .footer__copyright p {
    font-size: 10px;
  }

  .footer__copyright {
    margin-bottom: 55px;
  }
}

/* ==========================================================================
   19. MODALES - TÉRMINOS Y AVISO DE PRIVACIDAD (de cust055terminoyaviso)
   ========================================================================== */

/* Modal de Términos de Uso */
.modal-contenedor {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-contenido {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  text-align: justify;
  color: #000;
  position: relative;
  max-height: 60vh;
  overflow-y: auto;
}

.cerrar-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Modal de Aviso de Privacidad */
.modal-contenedor2 {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-contenido2 {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  text-align: justify;
  color: #000;
  position: relative;
  max-height: 60vh;
  overflow-y: auto;
}

/* Scrollbar personalizado para modal */
.modal-contenido2::-webkit-scrollbar {
  width: 8px;
}

.modal-contenido2::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.modal-contenido2::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  transition: background var(--transition-default);
}

.modal-contenido2::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-contenido2 a,
.modal-contenido2 a:hover,
.modal-contenido2 a:active {
  color: var(--color-primary);
}

.cerrar-modal2 {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color var(--transition-default);
}

.cerrar-modal2:hover {
  color: #f00;
}

/* Media queries para modales */
@media (max-width: 768px) {
  .modal-contenido,
  .modal-contenido2 {
    max-width: 90%;
  }

  .footer-top .col-6 {
    flex: 100%;
    max-width: 100%;
  }

  .footer__widget-nav {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .modal-contenido2 {
    max-width: 95%;
  }

  .cerrar-modal2 {
    font-size: 22px;
  }

  .footer-top .col-6 {
    flex: 100%;
    max-width: 100%;
  }

  .footer__widget-nav {
    margin-top: 10px;
  }
}

/* ==========================================================================
   20. OVERRIDE DE BOTONES DEL TEMPLATE
   ========================================================================== */
/* [FLAG:BOTONES] - Candidato a globalización futura
   Estos estilos de botones podrían consolidarse en un sistema de botones
   unificado para evitar duplicación y mantener consistencia.
   ========================================================================== */

/* Fix para el comportamiento correcto de hover/active/focus en botones
   Problema original: Los pseudo-selectores agrupados causaban conflictos
   cuando hover y focus estaban activos simultáneamente */

/* Estado normal: verde con letras blancas */
.btn__secondary {
  background-color: #017a61;
  color: #ffffff;
  border: 2px solid #017a61;
  border-radius: 7px;
}

/* Hover: blanco con letras verdes y borde verde */
.btn__secondary:hover {
  background-color: #ffffff;
  color: #017a61;
  border: 2px solid #017a61;
}

.btn__secondary:active,
.btn__secondary:focus {
  background-color: #ffffff;
  color: #017a61;
  border: 2px solid #017a61;
}

/* Variante btn__hover2: Inversión de colores
   Normal: verde con letras blancas
   Hover: blanco con letras negras */
.btn__secondary.btn__hover2:hover {
  background-color: #ffffff;
  color: #017a61;
  border: 2px solid #017a61;
}

.btn__secondary.btn__hover2:active,
.btn__secondary.btn__hover2:focus {
  background-color: #ffffff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}



/* ==========================================================================
   21. BOTONES ESPECÍFICOS (Reemplaza archivos con !important)
   ========================================================================== */
/* [FLAG:BOTONES] - Candidato a globalización futura
   Botones específicos por página/componente. Evaluar unificar en clases
   genéricas: .btn-map, .btn-web, .btn-transport, etc.
   -------------------------------------------------------------------------- */

/* De cust005servicios.blade.php - Botones de página de servicios */
.btnmapaservicio:hover,
.btnmapaservicio:active {
  background-color: #017a61;
}

.btnmapaservicio:focus,
.btnmapaservicio.focus {
  background-color: #017a61;
  color: #fff;
}

.btnwebservicio:hover,
.btnwebservicio:active {
  background-color: #0e2c3b;
}

.btnwebservicio:focus,
.btnwebservicio.focus {
  background-color: #0e2c3b;
  color: #fff;
}

.btnmapaautobus:focus,
.btnmapaautobus.focus {
  background-color: #017a61;
  color: #fff;
}

.btnbuscar:hover,
.btnbuscar:focus {
    background-color: var(--shadow-color-primary);
    border-color: var(--shadow-color-primary);
    color: #fff;
}


/* [FLAG:BOTONES] - Botón de éxito en banners */
/* De cust057estilosbanner.blade.php - Botones de éxito en banners */
.btn-success {
  color: #fff;
  background-color: #017a61;
  border-color: #017a61;
}

/* De cust010filtrovuelos.blade.php - Selector de transporte */
.vuelo-transport-option:checked + .vuelo-transport-label {
  background-color: #017a61;
}

/* ==========================================================================
   22. WIDGETS Y CATEGORÍAS (Reemplaza archivos con !important)
   ========================================================================== */

/* Widgets de categorías - Usado en múltiples páginas:
   - cust094menuarrendamiento.blade.php
   - cust070nuevoestilos.blade.php
   - cust069nuevoestilos.blade.php
   - cust066csscorporativo.blade.php
   - cust041tecnologia.blade.php */
.widget-categories ul {
  background-color: #017a61;
  color: #fff;
}

/* DB class problem http://127.0.0.1:8000/tecnologia/cargadores-electricos
Título de widget: convierte texto en mayúsculas a formato capitalize (primera letra mayúscula, resto minúsculas) */
.widget__title {
  text-transform: lowercase;
}

.widget__title::first-letter {
  text-transform: uppercase;
}

/* ==========================================================================
   23. MODALES Y HEADERS (Reemplaza archivos con !important)
   ========================================================================== */

/* De cust097nuevoestilos.blade.php - Headers de modales */
.modal-header {
  background-color: #017a61;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.modal-header .close {
  color: #ffffff;
  text-shadow: none;
  opacity: 1;
}

/* DB class problem */
/* Título del modal en blanco http://127.0.0.1:8000/conectividad/cdmx*/
.modal-header .modal-title,
.modal-header h5.modal-title {
  color: #ffffff;
}

/* ==========================================================================
   24. ESTILOS DE NAVEGACIÓN (Reemplaza archivos con !important)
   ========================================================================== */

/* De cust095csswaykiosco.blade.php y cust015filtrowayfinding.blade.php */
/*.inter-destinos .fixed-navbar {*/
/*  overflow-y: hidden;*/
/*}*/

.inter-destinos .fixed-navbar {
  background-color: #ffffff;

}

/* [FLAG:BOTONES] - Botones de control de tamaño de fuente */
/* De cust002nuevoestilos.blade.php - Botones de font */
.font-btn {
  background: #23536b;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.font-btn:focus {
  background-color: #2a5298;
}

/* ==========================================================================
   25. ESTILOS DE ENLACES (Reemplaza archivos con !important)
   ========================================================================== */

/* De cust089qrtransportelocal.blade.php - Enlaces de contacto en QR */
.contact-info a:hover {
  color: #017a61;
}

/* De cust087nuevoestilos.blade.php - Enlaces en cards personalizadas */
.customCard__desc a:hover,
.customCard__desc a:active {
  color: #017a61;
}

/* Especificado - SVG dentro de customCard__desc */
.customCard__desc a .svg-icon {
  width: 2.5em;
}

.customCard__icon a:hover {
    color: var(--color-white) !important;
}

/* De cust072nuevoestilos.blade.php - Enlaces en lista de contacto */
.contact__list a:hover,
.contact__list a:active {
  color: #017a61;
}

/* De cust058taxis.blade.php - Enlaces en descripción de proyectos (taxis) */
.project__desc a,
.project__desc a:hover,
.project__desc a:active {
  color: #017a61;
}

/* De cust038rentaauto.blade.php - Enlaces en descripción de proyectos (renta auto) */
/* Nota: Mismo estilo que taxis, ya cubierto arriba */

/* De cust033cssfaq.blade.php - Enlaces en FAQ */
.faq a:hover,
.faq a:active {
  color: #017a61;
}

/* De cust025cssmodalnoticiaaifa.blade.php - Enlaces en modal de noticias */
.noticia-contenido a,
.noticia-contenido a:hover,
.noticia-contenido a:active {
  color: #017a61;
}

/* ==========================================================================
   26. ESTILOS DE TRANSPARENCIA (Reemplaza archivos con colores específicos)
   ========================================================================== */

/* De cust006transparencia.blade.php - Estilos de página de transparencia */

.navbar .list-unstyled {
  background-color: transparent;
}

.eje3btn:hover {
  background-color: #822566;
}

/* De cust016cssnoticastranspariencia.blade.php - Navbar en transparencia */
/* Ya cubierto arriba: .navbar .list-unstyled */

/* ==========================================================================
   27. ESTILOS ESPECIALES (Cards y componentes con transparencias)
   ========================================================================== */

/* De cust040cardsestacionamiento.blade.php - Cards de estacionamiento */
.infoUnica table th {
  background: transparent;
}

.fancybox-layout2-panel {
  background-color: transparent;
  margin-bottom: 0px;
}

/* ==========================================================================
   28. ESTILOS DE PÁGINAS ESPECÍFICAS
   ========================================================================== */

/* De cust089qrtransportelocal.blade.php - QR Transporte Local */
.qrtransportelocal,
.qrtransportelocal p {
  text-align: center;
}

.qrtransportelocal img:hover {
  cursor: pointer;
}

.CATALOGO a{
  font-weight: 700;
}

.accordion-item .accordion__item-header .accordion__item-title {
  color: var(--color-primary);
}

/* Especificado */
.accordion-item .accordion__item-body a:hover,
.accordion-item .accordion__item-body a:hover p {
  color: #000;
}

@media (max-width: 675px) {
  #form009BuscarSitio .row .row {
    margin-right: -3px;
    margin-left: -2px;
  }
  #butt001BuscarForm009BuscarSitio {
    width: 68px;
  }
}

/* De cust058taxis.blade.php - Página de Taxis */
.projects-carousel-3 .owl-dots {
  display: none;
}

#carouselTabs .heading {
  display: none;
}

.project__desc a:hover {
  cursor: pointer;
}

.project__desc {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* De cust033cssfaq.blade.php - FAQ */
.heading-2 .heading__desc {
  font-size: 40px;
  line-height: 1;
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(40, 40, 40, 0.15);
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-search {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-question {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017a61;
}

.faq-answer {
  margin: 0;
  color: #555;
}

.contfaq .heading__title {
  margin-bottom: 0px;
}

@media (max-width: 576px) {
  .btn-index span {
    font-size: 15px;
    line-height: 1;
  }
  .heading-2 .heading__desc {
    font-size: 20px;
    line-height: 1;
  }
  .heading__title {
    font-size: 15px;
  }
}

/* De cust025cssmodalnoticiaaifa.blade.php - Modal de Noticias */
.noticia-principal {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.noticia-contenido a,
.noticia-contenido a:hover,
.noticia-contenido a:active {
  color: #017a61;
}

.noticia-img img {
  max-width: 1024px;
  height: auto;
  border-radius: 8px;
}

.noticia-titulo {
  font-size: 28px;
  margin: 20px 0;
  color: #333;
  text-align: center;
  text-transform: capitalize;
}

.noticia-desc {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
}

.noticia-fecha {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.noticia-vecina {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.noticia-vecina-item {
  width: 48%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s;
}

.noticia-vecina-item img {
  max-width: 100px;
  height: auto;
  border-radius: 5px;
}

.noticia-vecina-titulo {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.noticia-vecina-desc {
  font-size: 14px;
  color: #666;
}

.noticia-vecina-item:hover {
  background-color: #e0e0e0;
}

@media (max-width: 992px) {
  .noticia-principal {
    padding: 15px;
    margin: 15px 0;
  }
  .noticia-img img {
    max-width: 768px;
  }
  .noticia-titulo {
    font-size: 24px;
  }
  .noticia-desc {
    font-size: 16px;
  }
  .noticia-vecina-item {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .noticia-titulo {
    font-size: 20px;
  }
  .noticia-desc {
    font-size: 14px;
  }
  .noticia-fecha {
    font-size: 12px;
  }
  .noticia-vecina {
    flex-direction: column;
    align-items: center;
  }
  .noticia-vecina-item {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .noticia-principal {
    padding: 10px;
  }
  .noticia-img img {
    max-width: 100%;
  }
  .noticia-titulo {
    font-size: 18px;
  }
  .noticia-desc {
    font-size: 14px;
  }
  .noticia-vecina {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .noticia-vecina-item {
    width: 48%;
    margin-bottom: 0;
  }
  .noticia-vecina-item img {
    max-width: 80px;
  }
}

/* ==========================================================================
   29. ESTILOS DE TRANSPARENCIA (Página específica con colores morados)
   ========================================================================== */

/* De cust006transparencia.blade.php - Página de transparencia con tema morado */
.case-single-item a {
  color: var(--color-primary);
}

.case-single-item a:hover {
  color: #9d146f;
}

.list-unstyled {
  background-color: #ffffff00;
}

.list-unstyled a {
  color: var(--color-primary);
}

.eje_a a {
  color: #b5348e;
}

.eje_a a:hover {
  color: #b5348e;
}

.eje_a a:active {
  color: #b5348e;
}

.widget-categories ul li a:after {
  width: 0;
  background-color: #fff;
}

.quote {
  border-left: #b5348e;
}

/* [FLAG:BOTONES] - Botones de transparencia (tema morado) */
.eje3btn {
  background-color: #b5348e;
  width: 100%;
}

.eje3btn:hover {
  background-color: #822566;
}

.eje_a .eje3btn:hover {
  color: white;
}

/* De cust016cssnoticastranspariencia.blade.php - Swiper de noticias transparencia */
swiper-container {
  width: 100%;
  height: 500px;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  swiper-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  swiper-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  swiper-container {
    height: 200px;
  }
}

@media (max-width: 400px) {
  swiper-container {
    height: 150px;
  }
}


filtrowayfinding {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   30. ESTILOS DE ESTACIONAMIENTO (Cards con grid dinámico)
   ========================================================================== */

/* De cust040cardsestacionamiento.blade.php - Sistema de cards de estacionamiento */
.contenedorUnico {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.contenedorCardsUnico {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
}

.cardUnica.full {
  grid-column: span 6;
}

.cardUnica.span-3 {
  grid-column: span 3;
}

.cardUnica.span-2 {
  grid-column: span 2;
}

.cardUnica {
  color: white;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cardUnica:hover {
  transform: scale(1.01);
}

.cardUnica a,
.cardUnica a:hover,
.cardUnica:active {
  color: #fff;
}

.plecaUnica {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: url(/Rm1wZXpOSWJaVkRBOXlOeDc0N0VEdz09/HTMLs/modulos/assets/images/pleca-gris-v.png) repeat center;
  background-size: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.infoUnica {
  display: none;
  color: white;
  border-radius: 5px;
  padding: 15px;
  margin: 10px 50px 10px 70px;
  box-sizing: border-box;
  text-align: justify;
  width: 100%;
}

#about1 .heading {
  margin-bottom: 0px;
}

.heading .elegant-text {
  padding: 0px;
}

#about1 {
  padding-bottom: 0px;
}

.fancybox-item .fancybox__icon {
  color: var(--color-primary);
}

.fancybox-layout2 .fancybox-item .fancybox__icon {
  font-size: 28px;
}

.fancybox__title {
  color: var(--color-text-dark);
  font-size: 10px;
  font-weight: bold;
}

svg.svg-icon {
  width: 5%;
}

.project__desc svg {
  width: 1em;
}

.fancybox-item {
  margin-bottom: 0px;
}

.cardUnica .titulocardu {
  font-size: 21px;
  color: #fff;
}

.elegant-text {
  font-size: 30px;
  line-height: 1.1;
}

.cardUnica ul {
  list-style-type: disc;
}

@media (max-width: 768px) {
  .contenedorCardsUnico {
    display: flex;
    flex-direction: column;
  }
  .cardUnica {
    grid-column: span 1;
    max-width: 100%;
  }
  .infoUnica {
    margin-top: 0;
    font-size: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .infoUnica table {
    width: 90%;
    min-width: fit-content;
    margin: 0 auto;
    margin-top: 15px;
  }
  .tb2 {
    width: 100%;
  }
  .infoUnica p,
  .infoUnica li,
  .infoUnica span {
    font-size: 10px;
  }
  .cardUnica p {
    margin-bottom: 0px;
  }
  .fancybox-item {
    margin-bottom: 0px;
  }
}

@media (max-width: 480px) {
  .elegant-text {
    font-size: 20px;
  }
  .titulocardu {
    text-align: left;
    width: 100%;
    padding-left: 15px;
  }
}

/* ==========================================================================
   31. ESTILOS DE MEXIBUS (Migrado de cust059mexibus.blade.php)
   ========================================================================== */

.abordaje-desc {
  text-align: justify;
}

.tabsmexi {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* Estilos generales para el modal */
.modal-mexibus {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  border-radius: 10px !important;
}

.modal-dialog-mexibus {
  width: 100%;
  max-width: 700px;
  height: 450px;
  margin: 0;
}

.modal-content-mexibus {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.modal-header-mexibus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.modal-title-mexibus {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.btn-close-mexibus {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
}

.modal-body-mexibus {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 60px);
  overflow: hidden;
}

.video-mexibus {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* [FLAG:BOTONES] - Botón Mexibus - Candidato a globalización */
/* Estilos para el botón mexibus */
.btnmexibus {
  background-color: #017a61;
  color: #fff;
  font-weight: bold;
  width: fit-content;
  padding: 5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover: Agrandar el botón */
.btnmexibus:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #fff;
  background-color: #017a61;
}

/* Clic: Mantiene el agrandado */
.btnmexibus:active {
  transform: scale(1.1);
  background-color: #017a61;
}

/* Focus: Mantiene el color de fondo para que no desaparezca */
.btnmexibus:focus,
.btnmexibus.focus {
  background-color: #017a61;
  color: #fff;
}

/* Ajustes para dispositivos de tamaño medio (tabletas, etc.) */
@media (max-width: 768px) {
  .modal-dialog-mexibus {
    height: 70%;
  }
  .video-mexibus {
    width: 100%;
    height: auto;
  }
  .btnmexibus {
    margin-bottom: 28px;
  }
  .tabsmexi {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-direction: column;
  }
}

/* Ajustes para dispositivos pequeños (móviles) */
@media (max-width: 480px) {
  .modal-dialog-mexibus {
    height: 60%;
  }
  .video-mexibus {
    max-width: 100%;
    height: auto;
  }
  .btnmexibus {
    margin-bottom: 28px;
  }
  .tabsmexi {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-direction: column;
  }
}

/* ==========================================================================
   32. ESTILOS DE DIRECCIONES (Migrado de cust071direcciones.blade.php)
   ========================================================================== */

.banner_int {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 3em;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.banner_int::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.banner_text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}

.direccionresponsable {
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

/* Grid de contenedor para direcciones */
.container-direcciones {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.full-width {
  grid-column: span 2;
}

.section {
  padding: 20px;
  border-radius: 8px;
}

.section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  margin: 0 0 10px;
}

.icon {
  font-size: 1.2em;
}

.highlight {
  background-color: #000;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.main-content svg {
  width: 20px;
  max-width: 20px;
}

/* Slider Modal (sldm) */
.sldm-container {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.sldm-slider {
  display: flex;
  transition: transform 1s ease-in-out;
}

.sldm-slide {
  min-width: 33.33%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.sldm-title {
  margin-bottom: 10px;
  font-size: 20px;
}

.sldm-description {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.sldm-link {
  display: inline-block;
  color: #007bff;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

/* [FLAG:BOTONES] - Botones de navegación del slider modal */
.sldm-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.sldm-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.sldm-prev {
  left: 10px;
}

.sldm-next {
  right: 10px;
}

.sldm-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.sldm-modal.sldm-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sldm-modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.sldm-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: white;
  color: red;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.accesosExt_int {
  margin-bottom: 35px;
}

#form099AccesosDireccionArchivosInt {
  text-align: center;
}

.accesosExt_int svg {
  width: 60px !important;
  max-width: 60px !important;
}

.comint a,
.lineint a {
  color: #212529;
}

.comint:hover,
.lineint:hover,
.comint:active,
.lineint:active,
.comint a,
.lineint a {
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.5rem;
  color: #212529;
}

/* Organigrama de Direcciones */
.organigramaDir {
  margin: auto;
  width: 60%;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 70px;
}

.orgDirInt {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

/* [FLAG:BOTONES] - Botones de control de zoom (organigrama) */
.controls button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #007BFF;
  color: white;
  transition: background-color 0.3s ease;
}

.controls button:hover {
  background-color: #0056b3;
}

/* [FLAG:BOTONES] - Botón Ver Más Direcciones */
#butt012VerMasForm115VerMasDirecciones {
  background-color: #1e3d59;
  color: white;
}

#form115VerMasDirecciones {
  margin-top: 20px;
  padding: 30px;
}

/* Media queries para direcciones */
@media (max-width: 768px) {
  .sldm-slide {
    min-width: 50%;
  }
  .sldm-modal-content {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .sldm-slide {
    min-width: 100%;
  }
  .sldm-modal-content {
    width: 90%;
  }
}

/* ==========================================================================
   33. ENLACES SIN CAMBIO DE COLOR (clase .htra)
   ========================================================================== */

/* Enlaces que no cambian de color en ningún estado */

a.htra:active,
a.htra:focus,
a.htra:visited {
  color: inherit;
  text-decoration: none;
}


a.htra:hover {
  color: var(--color-primary);
}

/* Header */
.nav.flex-column .nav__item {
    text-align: left !important;
}

#divGlobo a{
    color: #017a61 !important;
}

.header__top-right .list-unstyled a{
    color: #fff !important;
}

.fixed-navbar .header__top-right {
    display: block !important;
}

.header__top-right {
    display: block !important;
}

@media screen and (max-width: 480px) {
    .header__top-right {
        position: absolute;
        top: 70px;
        right: 15px;
        margin-bottom: 20px;
    }

    .d-none {
        display: block !important;
    }
}

@media screen and (min-width: 993px) and (max-width: 1250px)  {
    .header__top-right {
        position: absolute;
        top: 70px;
        right: 15px;
        margin-bottom: 20px;
        z-index: 1000;
    }

    .d-none {
        display: block !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }

    .navbar .navbar-collapse {
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
        z-index: 50;
        padding: 15px 0;
        position: absolute;
        left: 0;
        width: 100%;
        top: 100%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
    }
    .navbar .menu-opened.navbar-collapse {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .navbar .collapse:not(.show) {
        display: block !important;
    }
    .navbar .navbar-nav {
        margin: 0 !important;
    }
    .navbar .dropdown-menu {
        background-color: #ffffff54;
    }
    .navbar .dropdown-menu .nav__item {
        padding: 0 15px 0 30px;
    }
    .navbar .nav__item .nav__item-link:hover {
        color: #017a61;
    }
    .nav__item {
        list-style: none;
        width: 100%;
    }

    .nav__item::before {
        content: none;
    }
    .nav__item .menu-trigger::before {
        content: none;
    }
    .navbar-nav .ml-auto{
        color: black !important;
    }
    .header .navbar, .header .navbar>.container, .header .navbar>.container-fluid, .header-transparent .navbar, .header-transparent .navbar>.container, .header-transparent .navbar>.container-fluid {
        height: 100px;
    }
    .menu-trigger.active {
        color: #017a61;
    }
    .navbar .nav__item.with-dropdown>.dropdown-menu,
    .navbar .nav__item.dropdown-submenu>.mega-menu,
    .navbar .nav__item.with-dropdown>.mega-menu,
    .navbar .nav__item.with-dropdown>.dropdown-menu>.nav__item.dropdown-submenu>.dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }
    .navbar .nav__item.with-dropdown > .dropdown-menu.show,
    .navbar .nav__item.dropdown-submenu > .mega-menu.show,
    .navbar .nav__item.with-dropdown > .mega-menu.show,
    .navbar .nav__item.with-dropdown > .dropdown-menu > .nav__item.dropdown-submenu > .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
    }
    .fixed-navbar {
        position: absolute;
    }
    .navbar .nav__item .nav__item-link:hover {
        color: #017a61 !important;
    }
}

.navbar-brand{
    line-height:90px !important;
}

@media (min-width: 1250px) {
    .header__top-right {
        position: static !important;
        margin-bottom: 0 !important;
    }

}

@media only screen and (max-width: 1250px) {
    .navbar .navbar-toggler {
        position: absolute;
        right: 50px;
        height: 13px;
    }

    .navbar .navbar-modules {
        position: absolute;
        top: 25px;
        right: 0px;
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        padding: 5px;
        line-height: 40px;
        text-align: center;
    }
}

@media (max-width: 1250px) {
    .navbar .navbar-collapse {
        background-color: #ffffff;
    }

    .navbar .dropdown-menu {
        background-color: #ffffff54;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 50px !important;
        height: 13px !important;
    }

    .nav__item.with-dropdown > .nav__item-link {
        color: black !important;
        padding: 12px 0;
    }
}

@media (min-width: 300px) and (max-width: 450px) {
    .header__top-right {
        position: absolute !important;
        top: 43px !important;
        right: 20px !important;
        margin-bottom: 20px !important;
    }

    .navbar .navbar-modules {
        top: 30px !important;
        right: 45px !important;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 100px !important;
        height: 5px !important;
    }

    .module__btn .fa {
        font-size: 20px !important;
    }

    .pagetitle__heading {
        font-size: 19px !important;
    }

    .header-transparent .logo-dark {
        width: 180px !important;
    }

    .container {
        max-width: none;
    }
}

/* Para dispositivos entre 451px y 675px */
@media (min-width: 451px) and (max-width: 675px) {
    .header__top-right {
        position: absolute !important;
        top: 30px !important;
        right: 10px !important;
        margin-bottom: 20px !important;
    }

    .navbar .navbar-modules {
        top: 25px !important;
        right: 45px !important;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 100px !important;
        height: 13px !important;
    }

    .module__btn .fa {
        font-size: 30px !important;
    }

    .fa-solid, .fas {
        font-size: 30px !important;
    }

    .container {
        max-width: none;
    }

    .pagetitle__heading {
        font-size: 28px !important;
    }

    .header-transparent .logo-dark {
        width: 270px !important;
    }
}

@media (min-width: 676px) and (max-width: 1013px) {
    .header__top-right {
        position: absolute !important;
        top: 30px !important;
        right: 15px !important;
        margin-bottom: 20px !important;
    }

    .navbar .navbar-modules {
        top: 25px !important;
        right: 65px !important;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 120px !important;
        height: 13px !important;
    }

    .module__btn .fa {
        font-size: 35px !important;
    }

    .fa-solid, .fas {
        font-size: 35px !important;
    }

    .container {
        max-width: none;
    }

    .pagetitle__heading {
        font-size: 42px !important;
    }

    .header-transparent .logo-dark {
        width: 280px !important;
    }
}

@media (min-width: 1014px) and (max-width: 1250px) {
    .header__top-right {
        position: absolute !important;
        top: 30px !important;
        right: 10px !important;
        margin-bottom: 20px !important;
    }

    .navbar .navbar-modules {
        top: 25px !important;
        right: 95px !important;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 120px !important;
        height: 13px !important;
    }

    .module__btn .fa {
        font-size: 40px !important;
    }

    .fa-solid, .fas {
        font-size: 40px !important;
    }

    .container {
        max-width: none;
    }

    .pagetitle__heading {
        font-size: 63px !important;
    }

    .header-transparent .logo-dark,
    .header-transparent .logo-light {
        width: 280px !important;
    }
}

.navbar-toggler {
    z-index: 1;
}

.module__btn.module__btn-search:hover {
    color: #fff;
}

#font-size {
    padding: 15px;
}

#carouselTabs .container {
    padding-left: 30px;
    padding-right: 30px;
}

.about .about__img:before,
.animate-img.about__img:after {
    background: transparent;
}

section .container {
    padding-left: 30px;
    padding-right: 30px;
}
