/* --- Variables de Color --- */
:root {
    --blue-dark: #00264e;
    --orange-main: #d81b35;
    --text-gray: #4a4a4a;
}
.header-one {
    background-color: #fff;
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}
.header-one.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo-flex {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    max-width: 200px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}
.brand-sub {
    font-size: 0.8rem;
    color: var(--orange-main);
    font-weight: 700;
    letter-spacing: 1px;
}
.main-nav {
    display: block;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}
.nav-list a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.3s;
}
.nav-list a:hover, .nav-list a.active {
    color: var(--blue-dark);
}
.btn-cotizacion {
    background-color: var(--orange-main);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s, background 0.3s;
}
.btn-cotizacion:hover {
    background-color:  var(--orange-main);
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--blue-dark);
    cursor: pointer;
    margin-left: 15px;
}
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: inline-block; 
    }
    .brand-name { font-size: 1.1rem; }
}

/* CONTENEDOR GENERAL */
.contentMenu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

.contentMenu.active {
    transform: translateY(0);
}

/* HEADER DEL MENU */
.mobile-header {
    width: 100%;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.mobile-header img {
    max-height: 60px;
}

.icon-close {
    font-size: 1.6rem;
    color: var(--blue-dark);
}

/* BODY */
.contentMenuBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* LINKS */
.mobile-nav {
    list-style: none;
    padding: 30px 25px;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav li {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav a {
    display: block;
    padding: 18px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-dark);
    text-decoration: none;
}

/* CTA */
.mobile-cta {
    padding: 25px;
}

.mobile-cta a {
    display: block;
    text-align: center;
    background: var(--orange-main);
    color: #fff;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

/* SOLO MOVIL */
@media (min-width: 993px) {
    .contentMenu {
        display: none;
    }
}

/* --- Estilos Top Bar (Escritorio) --- */
.top-bar {
    background-color: var(--blue-dark);
    color: #ffffff;
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar a{
    color: #ffffff;
}
.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-social {
    display: flex;
    gap: 15px;
}
.top-social a {
    color: #ffffff;
    transition: 0.3s ease;
    font-size: 14px;
}
.top-social a:hover {
    color: #ffca28; /* Amarillo corporativo */
}

/* --- Estilos Redes en Móvil --- */
.mobile-footer-wrapper {
    padding-bottom: 30px;
}
.mobile-socials {
    margin-top: 20px;
}
.social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.social-links-mobile a {
    font-size: 22px;
    color: var(--blue-dark);
}

/* Ajuste para el Sticky Header */
.header-one.sticky {
    position: fixed;
    top: 0;
    /* Si usas Top Bar, el sticky debe estar en top: 0 cuando haces scroll */
}

/* Utilidad para ocultar en móvil si no usas Bootstrap */
@media (max-width: 992px) {
    .d-none.d-lg-block {
        display: none !important;
    }
}

/* --- BOTÓN FLOTANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3000; /* Por encima de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

/* Tooltip opcional (el texto que aparece al lado) */
.tooltip-wa {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .tooltip-wa {
    opacity: 1;
    visibility: visible;
}

/* Efecto de pulso suave */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-wa 2s infinite;
}

/* Ajuste para móviles */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
    .tooltip-wa {
        display: none; /* Ocultar tooltip en móviles para no tapar pantalla */
    }
}

/* ===== FOOTER ===== */
.sect_foot {
  background: radial-gradient(circle at top left, #00264e, #003b79);
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Columna Logo */
.footer-logo img {
  width: 180px;
  /*margin-bottom: 15px;*/
}
.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Links */
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffca28;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffca28;
}

/* Contacto */
.contact-info li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social .social-icon {
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s ease;
}
.footer-social .social-icon:hover {
  color: #ffca28;
}
/* Barra inferior */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 0px;
  padding-top: 15px;
  font-size: 13px;
}

/* Responsivo */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  /* Ajustes globales */
  body {
    font-size: 14px;
  }

  h1, h2, h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-header img {
    width: 150px;
  }
}

/*MENU PLEGABLE*/
.contentBusqueda.active {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    visibility: visible;
}
.contentBusqueda {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    visibility: hidden;
    -webkit-transition: 800ms all;
    -moz-transition: 800ms all;
    -o-transition: 800ms all;
    -ms-transition: 800ms all;
    transition: 800ms all;
    background-color: rgba(0, 0, 0, 0.7);
}
.contentBusquedaCerrar {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    z-index: 2;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 80px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -o-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 90px;
}
.contentBusquedaCerrar a {
    width: 52px;
    height: 52px;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 2px #242526;
    border-radius: 19px;
    margin: 0;
    color: #000;
    font-size: 24px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.contentBusquedaBody {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #ff455a;
    border-radius: 35px;
    position: relative;
}
.contentBusquedaBody:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.tamanow {
    width: 94%;
    max-width: 1200px;
    margin: auto;
}
.contentBusquedaWrap {
    max-width: 652px;
    position: relative;
    z-index: 1;
}
.contentBusquedaWrap h2 {
    font-size: calc(35px + (50 - 35) * ((100vw - 380px) / (1920 - 380)));
    color: #fff;
    font-family: 'EuclidCircularB-SemiBold', sans-serif;
    line-height: 1.3;
    margin-bottom: 32px;
}
.contentBusquedaWrap h3 {
    font-size: 15px;
    color: #fff;
    font-family: 'EuclidCircularB-SemiBold', sans-serif;
    margin-top: 35px;
    margin-bottom: 25px;
}
.contentBusquedaWrapInput {
    position: relative;
}
.inputBusqueda {
    position: relative;
}
.contentBusquedaWrapInput .inputBusqueda input {
    height: 62px;
    font-size: 20px;
}
.inputBusqueda input {
    height: 58px;
    width: 100%;
    background-color: #f3f6f8;
    border-radius: 29px;
    border: 0;
    padding: 0 55px 0 28px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 400ms all;
    -moz-transition: 400ms all;
    -o-transition: 400ms all;
    -ms-transition: 400ms all;
    transition: 400ms all;
}
.inputBusqueda button {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
}
.inputBusqueda button{
    width: 48px;
    height: 48px;
    background-color: #fff;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 18px;
    color: #242526;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 0;
    border-radius: 16px;
}
.contentBusquedaWrapTag {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -18px;
}
.contentBusquedaWrapTag a {
    height: 52px;
    min-width: 133px;
    padding: 0 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    background-color: #de4658;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -o-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
    margin-right: 18px;
    margin-bottom: 12px;
    border-radius: 15px;
    font-size: 15px;
    letter-spacing: -.2px;
}
/* BLOQUEAR SCROLL DE BODY */
body.no-scroll {
    overflow: hidden;
}

/* MENÚ OCULTO POR DEFECTO */
.contentMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: right 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

/* MENÚ ACTIVO: SE MUESTRA DESDE LA DERECHA */
.contentMenu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

/* CIERRE DEL MENÚ */
.contentMenu .contentMenuClose {
    top: 0;
}
.contentMenuClose {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 90px;
    box-sizing: border-box;
}
.contentMenuClose a {
    width: 52px;
    height: 52px;
    background-color: #fff;
    border: solid 2px #242526;
    border-radius: 19px;
    color: #000;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* CUERPO DEL MENÚ */
.contentMenuBody {
    display: flex;
    align-items: flex-start;
}
.contentMenuBodyLeft {
    width: 375px;
}
.contentMenuBodyLeft h2 {
    font-size: calc(35px + (65 - 35) * ((100vw - 380px) / (1920 - 380)));
    color: #242526;
    margin-bottom: 19px;
    line-height: 0.8;
}

/* BOTONES DE LA IZQUIERDA */
.contentMenuBodyLeftBtns {
    display: flex;
    padding-top: 24px;
    justify-content: space-between;
}
.contentMenuBodyLeftBtns a {
    border: solid 2px rgba(67, 77, 244, 0.5);
    color: #434df4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    max-width: 174px;
    width: 100%;
    border-radius: 10px;
    font-size: calc(13px + (15 - 13) * ((100vw - 380px) / (1920 - 380)));
    font-family: 'EuclidCircularB-SemiBold', sans-serif;
    transition: all 400ms ease;
    box-sizing: border-box;
    background: #fff;
    margin: 0;
}
.contentMenuBodyLeftBtns a:hover {
    background: #ff455a;
    color: #fff;
    border: 0;
}

.contentMenuBodyLeftBox .buscando{
  position: relative;
  margin-bottom: 10px;
}
.contentMenuBodyLeftBox .buscando input {
  height: 58px;
  width: 100%;
  background-color: #f3f6f8;
  border-radius: 29px;
  border: 0;
  font-size: 12px;
  padding: 0 55px 0 28px;
  box-sizing: border-box;
  transition: 400ms all;
  font-family: 'Inter', sans-serif;
}
.contentMenuBodyLeftBox .buscando:hover input {
    background-color: #ffffff;
    box-shadow: 0 5px 15px 0 rgba(91, 105, 122, 0.1);
}
.contentMenuBodyLeftBox .buscando button {
    display: flex;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #242526;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 0;
    border-radius: 16px;
    transition: 300ms all;
    cursor: pointer;
}
.contentMenuBodyLeftBox .buscando:hover button {
    background-color: #f5f8fb;
    color: red;
}
.contentMenuBodyLeftBox .buscando button i {
    font-size: 16px;
}

/* ÍTEMS DEL MENÚ DERECHO */
.contentMenuBodyItems {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
.contentMenuBodyRight {
    padding-left: 120px;
    flex: 1;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 16px;
    padding-top: 0;
    scrollbar-width: thin;          /* Para Firefox */
    scrollbar-color: #d5d5d5 #f1f1f1; /* thumb color + track color para Firefox */
}

/* Estilo para navegadores WebKit (Chrome, Safari, Edge) */
.contentMenuBodyRight::-webkit-scrollbar {
    width: 8px; /* Grosor de la barra */
}

.contentMenuBodyRight::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color del fondo del scroll */
    border-radius: 10px;
}

.contentMenuBodyRight::-webkit-scrollbar-thumb {
    background-color: #d5d5d5; /* Color de la "barra" (thumb) */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Opcional: borde para separar del track */
}

.contentMenuBodyRight::-webkit-scrollbar-thumb:hover {
    background-color: #d5d5d5 ; /* Color al hacer hover */
}

/* CAJAS DE ÍTEMS */
.contentMenuBodyRight .contentMenuBodyItemBox {
    max-width: 33.33333%;
    padding: 0 15px;
    box-sizing: border-box;
}
.contentMenuBodyItemBox {
    max-width: 110px;
    width: 100%;
    margin-top: 24px;
}
.contentMenuBodyItemBox:nth-child(1),
.contentMenuBodyItemBox:nth-child(2),
.contentMenuBodyItemBox:nth-child(3) {
    margin-top: 0;
}

/* IMÁGENES Y MÁSCARAS */
.contentMenuBodyImgs {
    position: relative;
    overflow: hidden;
    width: 140px;
    margin: auto;
}
.contentMenu .contentMenuBodyImgs .mascara {
    background-size: 145%;
}
.contentMenuBodyImgs .mascara {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-repeat: no-repeat;*/
    background-size: cover;
    background-position: center center;
    border-radius: 25px;
    pointer-events: none;
    z-index: 2;
}
.contentMenuBodyImgs img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

/* TEXTOS DE LOS ÍTEMS */
.contentMenuBodyRight .contentMenuBodyItemBox small {
    font-size: 14px;
    color: #777983;
}
.contentMenuBodyItemBox small {
    font-size: 13px;
    color: #242526;
    text-align: center;
    display: block;
    padding-top: 13px;
}
.contentMenuBodyLinks li {
  list-style: none;
}
.contentMenuBodyLinks a {
  font-size: 14px;
  line-height: 2.5;
  letter-spacing: -.19px;
  color: #777983;
}

/* ENLACES DE PIE DE MENÚ (OCULTOS) */
@media (max-width: 1200px) {
  .contentMenuBodyRight {
    padding-left: 50px;
  }
}
@media screen and (max-width: 991px) {
  .contentMenu.active {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .contentMenu {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    overflow-y: auto;
    -webkit-box-align: start;
    -moz-box-align: start;
    -o-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    width: 90%;
    left: initial;
    right: 0;
    -webkit-transition: 300ms all;
    -moz-transition: 300ms all;
    -o-transition: 300ms all;
    -ms-transition: 300ms all;
    transition: 300ms all;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 24px;
    z-index: 1000;
  }
  .contentMenuClose {
    height: 62px;
    padding: 0 3%;
  }
  .contentMenuClose a {
    width: 24px;
    height: 24px;
    font-size: 12px;
    border-radius: 8px;
  }
  .contentMenuBody {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -o-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 58px;
    width: 100%;
    padding-bottom: 50px;
  }
  .contentMenuBodyLeft {
    width: 100%;
  }
  .contentMenuBodyLeft h2 {
    font-size: 14px;
    color: #242526;
    letter-spacing: -.2px;
    line-height: 1.6;
  }
  .contentMenuBodyRight {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 35px;
    margin: 0;
    width: 100%;
    max-height: none;
    padding-right: 0px;
  }
  .contentMenuBodyRight .contentMenuBodyItemBox {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 12px;
    padding: 0;
    max-width: initial;
  }
  .contentMenuBodyRight .contentMenuBodyImgs {
    margin: 0;
    width: 44px;
    margin-right: 12px;
  }
  .contentMenuBodyRight .contentMenuBodyItemBox img {
    max-width: 44px;
    margin: 0;
    margin-right: 12px;
  }
  .contentMenuBodyRight .contentMenuBodyItemBox small {
    font-size: 16px;
    color: #242526;
    letter-spacing: -.2px;
    line-height: 1.6;
    font-family: 'EuclidCircularB-SemiBold', sans-serif;
    padding-top: 0;
    max-width: initial;
  }
  .contentMenuBodyLinks {
    display: block;
    padding-top: 10px;
  }
}

.sede-item {
  padding-right: 10px;
}

.sede-item h5 {
  font-weight: 700;
  letter-spacing: .2px;
  color: #ffca28;
}


.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}

.contact-info i {
  color: #38a169;
  min-width: 14px;
}

/* dots discretos */
.footer-sedes .owl-dots {
  margin-top: 8px;
  text-align: left;
}

.footer-sedes .owl-dot span {
  width: 6px;
  height: 6px;
  background: #4a5568;
}

.footer-sedes .owl-dot.active span {
  background: #38a169;
}
.footer-col {
  overflow: hidden;
}

.footer-sedes {
  max-width: 260px; /* 👈 controla ancho del carrusel */
}

/* Redes sociales en el footer */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1); /* Fondo sutil */
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-icon:hover {
  background: #ffca28; /* Color amarillo que ya usas en enlaces */
  color: #00264e; /* Color azul oscuro de tu fondo para contraste */
  transform: translateY(-3px);
}