/* <!--

	Author:     Lumba
	Developer:  @lisandrojm (GitHub)    
	URL:        https://pluralconsultores.com.ar/
--> */

/* /////////////////////////////////////////////////////////////////// */
/* <!-- Generales --> */
/* /////////////////////////////////////////////////////////////////// */

:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-ui: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  max-width: 100%;
  /* overflow-x en html rompe a menudo el scroll con inercia en Safari/macOS; clip en body */
  scroll-behavior: auto;
  scroll-padding-top: 5.5rem;
}

@media (min-width: 1200px) {
  html {
    scroll-padding-top: 6rem;
  }
}

/* scroll-behavior: smooth compite con la inercia del trackpad en macOS — dejamos auto */

ul {
  list-style: none;
  text-decoration: none;
}

a {
  list-style: none;
  text-decoration: none;
}
li {
  list-style: none;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }

  nav li:hover {
    opacity: 0.9;
  }

  a img:hover {
    opacity: 0.9;
  }
}

nav li {
  transition: opacity 200ms var(--ease-out);
}

a {
  color: #ffffff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #f21d2f;
  outline-offset: 2px;
}

body {
  background-color: #727f8e;
  max-width: 100%;
  width: 100%;
  margin: 0;
  /* overflow-x en body bloquea el scroll del viewport en Safari — se maneja en html */
  font-family: 'Poppins', sans-serif;
  color: white;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Prevenir scroll horizontal sin romper el scroll vertical en Safari/macOS */
html {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

/* Custom Styles globales */

.parrafo {
  font-size: 16px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .parrafo {
    font-size: 19px;
    line-height: 24px;
  }
  .parrafo_custom_intervenciones {
    font-size: 16px;
    line-height: 24px;
  }
}
.parrafo_encabezado {
  font-size: 16px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .parrafo_encabezado {
    font-size: 22px;
    line-height: 24px;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- Módulos --> */
/* /////////////////////////////////////////////////////////////////// */

/* //////////////////////////////////////////////////////////////////*/
/* <!-- Módulo | header --> */

#site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-image: linear-gradient(to bottom, rgb(28, 28, 28), rgba(0, 0, 0, 0));
  padding: 0px;
  transition: background-color 320ms var(--ease-out), height 400ms var(--ease-in-out-ui);
}

#site-header.scrolled {
  background-color: #222222;
}

#site-header.navbar-open {
  height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header_open_black-background {
  background-color: #222222 !important;
}
/* //////////////////////////////////////////////////////////////////*/
/* <!-- Módulo | navbar --> */

/* Listas anidadas del menú (HTML válido: solo <li> bajo <ul>) */
#navbarSupportedContent .navbar-nav .navbar-nav {
  padding-left: 0;
  margin-bottom: 0;
}

.navbar {
  z-index: 100;
  padding-top: 25px;
  padding-bottom: 25px;
}

.nav-link {
  padding-bottom: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 160ms var(--ease-out);
  color: white !important;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    opacity: 0.92;
  }
}

.nav-link:active {
  transform: scale(0.98);
}

.nav-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .navbar-brand:hover {
    opacity: 0.9;
  }
}

.navbar-toggler {
  border: 0;
  position: relative;
  z-index: 1300;
  transition: transform 160ms var(--ease-out);
}

.navbar-toggler:active {
  transform: scale(0.97);
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

.navbar-toggler:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9) !important;
  outline-offset: 4px;
  border-radius: 4px;
}

.toggler-icon {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  display: block;
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

.middle-bar {
  margin: 5px auto;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .toggler-icon {
  background-color: #ffffff;
}

.navbar-collapse {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1200px) {
  .navbar-collapse {
    max-height: none;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .nav-item.border-bottom {
    border-bottom: none !important;
  }
  .nav-link:hover {
    border-bottom: 4px solid #f21d2f;
    display: inline-block;
  }
  .nav-link_state {
    border-bottom: 4px solid #f21d2f;
    display: inline-block;
  }
}

/* ///////////////////////////////////////////// */
/* <!--  Módulo | Cabecera Carousel --> */

.modulo_cabecera_carousel {
  position: relative;
  align-items: center;
  position: relative;
}

.modulo_cabecera_carousel-title {
  background-color: #77d6d8bd;
  width: 100%;
  height: 250px;
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-size: 2rem;
  left: 0;
  top: 45%;
  transform: translateY(-35%);
}
.modulo_cabecera_carousel-title h1,
.modulo_cabecera_carousel-title .modulo_cabecera_carousel-heading {
  font-size: 48px;
}

@media (max-width: 768px) {
  .modulo_cabecera_carousel-title {
    height: 180px;
    padding: 20px !important;
    font-size: 1rem !important;
    top: 50%;
  }

  .modulo_cabecera_carousel-title h1,
  .modulo_cabecera_carousel-title .modulo_cabecera_carousel-heading {
    font-size: 26px;
    line-height: 28px;
  }
}

/* Estilos para las imágenes dentro del carrusel */

.modulo_cabecera_carousel_carousel-img {
  width: 100%;
  min-height: 260px;
  height: min(88dvh, 880px);
  max-height: 100dvh;
  object-fit: cover;
  object-position: left;
}

.modulo_cabecera_carousel_carousel-img3 {
  object-position: right;
}

@media (max-width: 576px) {
  .modulo_cabecera_carousel_carousel-img {
    height: min(78dvh, 640px);
    min-height: 240px;
  }
}

@supports not (height: min(1dvh, 1px)) {
  .modulo_cabecera_carousel_carousel-img {
    height: min(88vh, 880px);
    max-height: 100vh;
  }
  @media (max-width: 576px) {
    .modulo_cabecera_carousel_carousel-img {
      height: min(78vh, 640px);
    }
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 380ms var(--ease-out);
}
.carousel-fade .carousel-item.active {
  opacity: 1;
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .carousel-item,
  .carousel-fade .carousel-item.active {
    transition-duration: 0.12s;
    transition-delay: 0ms !important;
  }
}

/* ///////////////////////////////////////////// */
/* <!--  Módulo | Cabecera Background --> */

.modulo_cabecera_background-wrap {
  position: relative;
  overflow: hidden;
}

.modulo_cabecera_background {
  width: 100%;
  min-height: 260px;
  height: min(88dvh, 880px);
  max-height: 100dvh;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.modulo_cabecera_background-title {
  background-color: #77d6d8bd;
  width: 100%;
  height: 250px;
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-size: 2rem;
  left: 0;
  top: 40%;
  transform: translateY(-35%);
}
.modulo_cabecera_background-title h1 {
  font-size: 48px;
}

@media (max-width: 768px) {
  .modulo_cabecera_background-title {
    height: 180px;
    padding: 20px !important;
    font-size: 1rem !important;
    top: 37%;
  }

  .modulo_cabecera_background-title h1 {
    font-size: 32px;
    line-height: 28px;
  }
  .modulo_cabecera_background {
    height: min(78dvh, 640px);
  }
}

@supports not (height: min(1dvh, 1px)) {
  .modulo_cabecera_background {
    height: min(88vh, 880px);
    max-height: 100vh;
  }
  @media (max-width: 768px) {
    .modulo_cabecera_background {
      height: min(78vh, 640px);
    }
  }
}

/* ///////////////////////////////////////////// */
/* <!--  Módulo | Scrolling-text | Diversidad --> */

#scroll-container {
  color: #ffffff;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  #scroll-container {
    overflow-x: hidden;
  }
}

.tt-scrolling-text {
  display: flex;
  position: relative;
  pointer-events: none;
}
.tt-scrolling-text-bold {
  font-weight: bold;
}
.tt-scrolling-text-inner {
  padding-left: 2vw;
  font-size: calc(15px + 2vw);
  white-space: nowrap;
  animation-name: tt_scrolling_text;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.tt-scrolling-text-inner:after {
  content: attr(data-text);
}

@keyframes tt_scrolling_text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 576px) {
  .tt-scrolling-text-inner {
    font-size: calc(3px + 2vw);
  }
}
/* /////////////////////////////////////////////////// */
/* <!--  Módulo Owl Carousel | General --> */

.owl-nav button.owl-prev {
  margin-right: 20px !important;
}
.owl-nav button.owl-next {
  margin-left: 20px !important;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  transition: transform 160ms var(--ease-out), background-color 200ms var(--ease-out);
}

.owl-nav button.owl-prev:active,
.owl-nav button.owl-next:active {
  transform: scale(0.96);
}

@media (hover: hover) and (pointer: fine) {
  .owl-nav button.owl-prev:hover,
  .owl-nav button.owl-next:hover {
    background-color: rgba(0, 0, 0, 0.179) !important;
  }
}

/* /////////////////////////////////////////////////// */
/* <!--  Módulo Owl Carousel | Marcas --> */

.owl-marcas .owl-stage {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * Owl Carousel: .owl-carousel { display: none } hasta .owl-loaded.
 * El ticker reemplaza el nodo al cargar; si el CSS viejo falla o el JS va tarde,
 * esta fila evita cinta invisible o logos apilados en vertical.
 */
.owl-carousel.owl-marcas:not(.owl-loaded),
.owl-carousel.owl-marcas-doble:not(.owl-loaded) {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(1rem, 3vw, 1.875rem);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
}

.owl-carousel.owl-marcas:not(.owl-loaded) > .marca {
  flex: 0 0 auto;
}

.owl-carousel.owl-marcas-doble:not(.owl-loaded) > .marcas_doble {
  flex: 0 0 auto;
}

section.modulo_owl_carousel {
  width: 100%;
  max-width: 100%;
}

section.modulo_owl_carousel > div {
  width: 100%;
  max-width: 100%;
}

/* /////////////////////////////////////////////////// */
/* <!--  Ticker marcas “Confiaron en Plural” (JS reemplaza .owl-marcas*) --> */
/* /////////////////////////////////////////////////// */

.plural-marcas-ticker {
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  --plural-ticker-fade: clamp(28px, 6vw, 64px);
  -webkit-user-select: none;
  user-select: none;
}

.plural-marcas-ticker::before,
.plural-marcas-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--plural-ticker-fade);
  z-index: 2;
  pointer-events: none;
}

.plural-marcas-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.plural-marcas-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.plural-marcas-ticker__viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
}

.plural-marcas-ticker.is-dragging .plural-marcas-ticker__viewport {
  cursor: grabbing;
  user-select: none;
}

.plural-marcas-ticker__viewport:focus-visible {
  outline: 2px solid #f21d2f;
  outline-offset: 2px;
}

.plural-marcas-ticker__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.plural-marcas-ticker__sequence {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.875rem);
  padding: 0.65rem 0;
}

.plural-marcas-ticker__cell {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cajas iguales por logo: el asset escala dentro del slot (object-fit) para peso visual más parejo */
.plural-marcas-ticker__cell .marca {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  width: clamp(7rem, 22vw, 10.5rem);
  height: 3.5rem;
  box-sizing: border-box;
}

.plural-marcas-ticker__cell .marca img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -webkit-user-drag: none;
  pointer-events: none;
  object-fit: contain;
  object-position: center;
}

.plural-marcas-ticker--doble .plural-marcas-ticker__viewport {
  min-height: 220px;
}

.plural-marcas-ticker--doble .plural-marcas-ticker__sequence {
  align-items: stretch;
}

.plural-marcas-ticker--doble .plural-marcas-ticker__cell .marcas_doble {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.4rem;
  min-height: 200px;
  padding: 0.25rem 0;
  width: clamp(7.5rem, 24vw, 11.25rem);
  box-sizing: border-box;
}

.plural-marcas-ticker--doble .plural-marcas-ticker__cell .marcas_doble img {
  width: 100%;
  height: 4rem;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  -webkit-user-drag: none;
  pointer-events: none;
}

.plural-marcas-ticker--reduced .plural-marcas-ticker__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: default;
}

.plural-marcas-ticker--reduced .plural-marcas-ticker__track {
  transform: none !important;
  will-change: auto;
}

.plural-marcas-ticker--reduced.is-dragging .plural-marcas-ticker__viewport {
  cursor: default;
  user-select: auto;
}

/* /////////////////////////////////////////////////// */
/* <!--  Módulo Owl Carousel | Actividades --> */

.modulo_owl_carousel-actividades {
  background-color: #f21d2f;
}

.modulo_owl_carousel_03-image-container {
  position: relative;
  background-color: #f21d2f;
}

.modulo_owl_carousel_03-image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 220ms var(--ease-out);
}

.modulo_owl_carousel_03-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(255, 0, 0, 0.522);
  width: 100%;
  height: 100%;
  transition: opacity 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .modulo_owl_carousel_03-image-container:hover img {
    opacity: 0.7;
  }

  .modulo_owl_carousel_03-image-container:hover .modulo_owl_carousel_03-hover-img {
    opacity: 1;
  }
}

.modulo_owl_carousel_03-hover-img h2 {
  margin: 0;
}
.modulo_owl_carousel-actividades_texto {
  font-size: 25px !important;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
}

/* En inglés: mostrar SIEMPRE la capa traducida dentro de cada imagen */
.modulo_owl_carousel-actividades.programs-en-visible .modulo_owl_carousel_03-hover-img {
  opacity: 1 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.58) 68%, rgba(0, 0, 0, 0.74) 100%);
  align-items: flex-end !important;
}

.modulo_owl_carousel-actividades.programs-en-visible .modulo_owl_carousel-actividades_texto {
  width: 100%;
}

.modulo_owl_carousel-actividades.programs-en-visible .modulo_owl_carousel-actividades_texto p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.02rem, 0.84rem + 0.4vw, 1.24rem);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.42);
}

/* /////////////////////////////////////////////////// */
/* <!--  Módulo Owl Carousel | Confiaron en plural --> */

.owl-marcas-doble .owl-stage {
  background-color: #ffffff;
}
.owl-carousel .marcas_doble {
  background-color: #ffffff;
  height: 250px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.owl-marcas-doble .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* /////////////////////////////////////////////////// */
/* <!--  Módulo | Testimonios (Confiaron en Plural) --> */

.modulo_testimonios {
  background: linear-gradient(180deg, #f5f2f3 0%, #ebe8ea 100%);
  color: #1a1a1a;
  border-top: 4px solid #f21d2f;
}

.modulo_testimonios_title {
  color: #1a1a1a;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
}

.modulo_testimonios_subtitle {
  color: #4a4a4a;
  font-size: clamp(0.9rem, 0.85rem + 0.35vw, 1.05rem);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* Altura igualada: stage e ítems en flex, firma al pie de la tarjeta */
.modulo_testimonios .owl-testimonios .owl-stage-outer {
  padding-bottom: 0;
}

.modulo_testimonios .owl-testimonios .owl-stage {
  display: flex;
  align-items: stretch;
}

.modulo_testimonios .owl-testimonios .owl-item {
  display: flex;
}

.modulo_testimonios .owl-testimonios .testimonios {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.modulo_testimonios .owl-testimonios .testimonios > p {
  flex: 1 1 auto;
  margin-bottom: 0;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  line-height: 1.55;
}

.modulo_testimonios .owl-testimonios_firm {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(242, 29, 47, 0.2);
  color: #f21d2f;
}

.modulo_testimonios .owl-testimonios_firm-text {
  flex: 1;
  min-width: 0;
}

/* Logo de marca debajo del nombre del testimonio */
.testimonio-org-brand {
  margin-top: 0.45rem;
}

.testimonio-org-logo {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  object-position: left center;
}

.modulo_testimonios .owl-testimonios_firm p.fw-bold {
  color: #c91828;
}

/* Controles: área táctil ≥ 44px, foco visible de marca */
.modulo_testimonios .owl-testimonios .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 0.65rem;
  margin-bottom: 0;
}

.modulo_testimonios .owl-testimonios .owl-nav.disabled {
  display: none;
}

.modulo_testimonios .owl-testimonios .owl-nav button.owl-prev,
.modulo_testimonios .owl-testimonios .owl-nav button.owl-next {
  position: relative;
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  border-radius: 50%;
  background: #ffffff !important;
  border: 2px solid #f21d2f !important;
  color: #f21d2f !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modulo_testimonios .owl-testimonios .owl-nav button.owl-prev:focus,
.modulo_testimonios .owl-testimonios .owl-nav button.owl-next:focus {
  outline: none;
}

.modulo_testimonios .owl-testimonios .owl-nav button.owl-prev:focus-visible,
.modulo_testimonios .owl-testimonios .owl-nav button.owl-next:focus-visible {
  outline: 3px solid #f21d2f;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .modulo_testimonios .owl-testimonios .owl-nav button.owl-prev:hover,
  .modulo_testimonios .owl-testimonios .owl-nav button.owl-next:hover {
    background-color: #f21d2f !important;
    color: #ffffff !important;
  }
}

.modulo_testimonios .owl-testimonios .owl-nav button.owl-prev:active,
.modulo_testimonios .owl-testimonios .owl-nav button.owl-next:active {
  transform: scale(0.96);
}

/* Puntos de paginación */
.modulo_testimonios .owl-testimonios .owl-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 0.45rem;
  margin-bottom: 0;
}

.modulo_testimonios .owl-testimonios .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: #b8b3b5 !important;
  transition: background-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.modulo_testimonios .owl-testimonios .owl-dot.active span,
.modulo_testimonios .owl-testimonios .owl-dot:hover span {
  background: #f21d2f !important;
}

.modulo_testimonios .owl-testimonios .owl-dot.active span {
  transform: scale(1.15);
}

.modulo_testimonios .owl-testimonios .owl-dot:focus-visible {
  outline: 2px solid #f21d2f;
  outline-offset: 4px;
  border-radius: 4px;
}

/* //////////////////////////////////////////////////////////////////*/
/* <!-- Módulo | footer --> */

.footer {
  background-color: #222222;
}

.footer_text_underline {
  text-decoration: underline;
}

.footer_bottom {
  font-size: 0.9rem;
  bottom: 0;
}

.footer_bottom .container > .d-flex.align-items-end,
.footer_bottom .container > .footer-bottom-row {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-bottom-legal-line {
  flex: 1 1 min(100%, 36rem);
  min-width: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  align-self: center;
}

.footer-bottom-copyright {
  flex: 0 1 auto;
}
/* ///////////////////////////////////////////// */
/* <!-- Módulo | intervenciones --> */

/* Clases_variable_colores */

/* //////////////////////// */

/* left */
.intervenciones_article_1_parrafo_left_transparencia-servicios-celeste {
  background-color: #4ac4f0b5;
}
.intervenciones_article_1_parrafo_left_transparencia-celeste {
  background-color: #4ac4f0b5;
}
.intervenciones_article_1_parrafo_left_transparencia-verde {
  background-color: #77d6d89a;
}
.intervenciones_article_1_parrafo_left_transparencia-magenta {
  background-color: #ed11f9a2;
}
.intervenciones_article_1_parrafo_left_transparencia-azul {
  background-color: #4791e6a4;
}
.intervenciones_article_1_parrafo_left_transparencia-rojo {
  background-color: #f21d2fad;
}

/* //////////////////////// */
/* right */

.intervenciones_article_1_parrafo_right_transparencia-celeste {
  background-color: #4ac4f0b5;
}
.intervenciones_article_1_parrafo_right_transparencia-verde {
  background-color: #77d6d89a;
}
.intervenciones_article_1_parrafo_right_transparencia-magenta {
  background-color: #ed11f9a2;
}
.intervenciones_article_1_parrafo_right_transparencia-azul {
  background-color: #4791e6a4;
}
.intervenciones_article_1_parrafo_right_transparencia-rojo {
  background-color: #f21d2fad;
}

/* intervenciones_article_1 | general */

.intervenciones_article_1 h2 {
  font-size: 16px !important;
}

.intervenciones_article_1 h3 {
  font-size: 22px;
  font-weight: bold;
}

@media (min-width: 380px) and (max-width: 992px) {
  .intervenciones_article_1 h2 {
    font-size: 18px !important;
  }
}

@media (min-width: 992px) {
  .intervenciones_article_1 h2 {
    font-size: 22px !important;
  }
  .intervenciones_article_1 h3 {
    font-size: 35px;
  }
}

/* parrafo_left */

.intervenciones_article_1_parrafo_left_foto_container {
  position: relative;
}

.intervenciones_article_1_parrafo_left_transparencia {
  position: absolute;
  width: 100%;
  top: 165px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 130px;
}

@media (min-width: 1200px) {
  .intervenciones_article_1_parrafo_left_foto_container .container-foto {
    margin-left: 44.6%;
    width: 50%;
  }
  .intervenciones_article_1_parrafo_left_transparencia {
    top: 160px;
    height: 170px;
  }
  .intervenciones_article_1_parrafo_left_foto_container p {
    line-height: 24px;
    margin-left: 62px;
    margin-top: 270px;
  }
  .intervenciones_article_1_parrafo_left_foto_container-servicios-celeste p {
    margin-top: 390px;
  }

  .intervenciones_article_1_parrafo_left_foto_container-verde p {
    margin-top: 390px;
  }

  .intervenciones_article_1_parrafo_left_foto_container-azul p {
    margin-top: 390px;
  }
  .intervenciones_article_1_parrafo_left_transparencia-servicios-celeste {
    top: 280px;
    height: 170px;
  }
  .intervenciones_article_1_parrafo_left_transparencia-verde {
    top: 280px;
    height: 170px;
  }
  .intervenciones_article_1_parrafo_left_transparencia-azul {
    top: 280px;
    height: 170px !important;
  }
}
@media (min-width: 1600px) {
  .intervenciones_article_1-left {
    margin: 0 !important;
  }
}

/* parrafo_right */

.intervenciones_article_1_parrafo_right_foto_container {
  position: relative;
}

.intervenciones_article_1_parrafo_right_transparencia {
  position: absolute;
  width: 100%;
  top: 165px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 130px;
}

@media (min-width: 1200px) {
  .intervenciones_article_1_parrafo_right_foto_container p {
    line-height: 24px;
    margin-top: 355px;
  }

  .intervenciones_article_1_parrafo_right_transparencia {
    top: 220px;
    height: 170px;
  }
  .intervenciones_article_1_parrafo_right_foto_container-rojo p {
    margin-top: 390px;
  }
  .intervenciones_article_1_parrafo_right_foto_container-magenta p {
    margin-top: 390px;
  }
  .intervenciones_article_1_parrafo_right_transparencia-rojo {
    top: 280px;
    height: 170px;
  }
  .intervenciones_article_1_parrafo_right_transparencia-magenta {
    top: 280px;
    height: 170px !important;
  }
}

@media (min-width: 1600px) {
  .intervenciones_article_1 h3 {
    font-size: 35px;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- index.hmtl--> */
/* /////////////////////////////////////////////////////////////////// */

/* ///////////////////////////////////////////// */
/* <!-- index_article_1 --> */

.index_article_1 {
  color: #ffffff;
}

/* parrafo_1 */

.index_article_1_parrafo_1_foto_container {
  position: relative;
}
.index_article_1_parrafo_1_foto_container .container-foto {
  margin-right: 609px;
}
.index_article_1_parrafo_2_foto_container .container-foto {
  margin-left: 609px;
}

.index_article_1_parrafo_1_transparencia {
  background-color: #f21d2fad;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
}

/* parrafo_2 */

.index_article_1_parrafo_2_foto_container {
  position: relative;
}

.index_article_1_parrafo_2_transparencia {
  background-color: #f21d2fad;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
}

@media (max-width: 1200px) {
  .index_article_1_parrafo_1_transparencia {
    height: 60%;
  }
}

@media (max-width: 992px) {
  .index_article_1 p {
    font-size: 0.9rem;
  }
  .index_article_1_parrafo_1_transparencia {
    height: 40%;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- servicios.html --> */
/* /////////////////////////////////////////////////////////////////// */

/* ///////////////////////////////////////////// */
/* <!-- servicios_article_1 --> */

.servicios_article_1 {
  color: #ffffff;
}
.servicios_article_1 h2 {
  font-size: 22px;
}
.servicios_article_1 h3 {
  line-height: 44px;
  font-size: 44px;
}

/* Intro + listado semántico de servicios (UX / a11y) */
.servicios_article_1_intro_wrap {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 42rem;
}

.servicios_article_1_lead {
  line-height: 1.58;
  letter-spacing: 0.015em;
  opacity: 0.97;
}

/* Tarjetas: jerarquía visual, foco teclado, hover con puntero fino */
.servicios_article_1_card {
  transition:
    transform 0.4s var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)),
    box-shadow 0.4s var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
  box-shadow:
    0 20px 48px -22px rgba(15, 18, 28, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

@media (hover: hover) and (pointer: fine) {
  .servicios_article_1_card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 32px 56px -20px rgba(15, 18, 28, 0.62),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }
}

.servicios_article_1_card:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

.servicios_article_1_card_cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(242, 29, 47, 0.4);
}

@supports (backdrop-filter: blur(6px)) {
  .servicios_article_1_parrafo_1_transparencia,
  .servicios_article_1_parrafo_2_transparencia,
  .servicios_article_1_parrafo_3_transparencia {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (pointer: fine) {
  .servicios_article_1_grid_cell {
    animation: servicios-plural-card-enter 0.72s var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)) both;
  }

  .servicios_article_1_grid_cell:nth-child(1) {
    animation-delay: 0.06s;
  }

  .servicios_article_1_grid_cell:nth-child(2) {
    animation-delay: 0.14s;
  }

  .servicios_article_1_grid_cell:nth-child(3) {
    animation-delay: 0.22s;
  }
}

/* Solo transform: evita tarjetas “fantasma” (opacity 0) si la animación no termina bien en algún navegador */
@keyframes servicios-plural-card-enter {
  from {
    transform: translateY(16px);
  }

  to {
    transform: translateY(0);
  }
}

/* Servicios: flex (más predecible que grid en <ul>); una columna <992; tres columnas iguales ≥992 */
.servicios_article_1_grid {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  padding-left: clamp(0.5rem, 2vw, 0.75rem);
  padding-right: clamp(0.5rem, 2vw, 0.75rem);
  box-sizing: border-box;
  align-items: stretch;
  list-style: none;
}

.servicios_article_1_grid_cell {
  min-width: 0;
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  opacity: 1;
}

.servicios_article_1_grid_cell > .servicios_article_1_card {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

/* La banda con título y CTA debe quedar SIEMPRE por encima de la foto (evita “solo imágenes” en desktop) */
.servicios_article_1_parrafo_1_transparencia,
.servicios_article_1_parrafo_2_transparencia,
.servicios_article_1_parrafo_3_transparencia {
  z-index: 3;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}

/* Títulos alineados arriba; CTA pegado al borde inferior de la banda (misma línea en las 3 tarjetas) */
.servicios_article_1_card .container-foto {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex !important;
  flex-direction: column;
}

.servicios_article_1_card .container-foto > .d-flex.flex-column {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  justify-content: flex-start !important;
}

.servicios_article_1_card .container-foto > .d-flex.flex-column > .d-block.col-12 {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  align-self: stretch;
}

.servicios_article_1_card .container-foto > .d-flex.flex-column > .d-block.col-12 > div.mt-2 {
  margin-top: auto !important;
}

/* Móvil: títulos más legibles; en ≥992px se reduce para las 3 columnas */
/* +2pt sobre el tamaño original (pedido: agrandar títulos de las 3 tarjetas) */
.servicios_article_1_card .container-foto h3 {
  font-size: clamp(1.45rem, 1.2rem + 2.5vw, 1.8rem);
  line-height: 1.18;
}

.servicios_article_1_card_subtitle {
  font-size: clamp(0.85rem, 0.78rem + 0.4vw, 0.95rem);
  font-weight: 700;
  line-height: 1.3;
  opacity: 0.92;
}

@media (max-width: 991.98px) {
  .servicios_article_1_card .servicios_article_1_card_cta {
    font-size: 1.0625rem;
    padding: 0.55rem 1.05rem;
  }

  .servicios_article_1_lead {
    font-size: clamp(1.05rem, 0.97rem + 0.45vw, 1.15rem);
  }
}

.servicios_article_1_card_img_wrap {
  width: 100%;
  position: relative;
  z-index: 0;
}

/* Contenedor de cada tarjeta (orden: antes del media desktop para que 24px no lo pise el bloque base) */
.servicios_article_1_parrafo_1_foto_container,
.servicios_article_1_parrafo_2_foto_container,
.servicios_article_1_parrafo_3_foto_container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 992px) {
  .servicios_article_1_grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }

  .servicios_article_1_grid_cell {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .servicios_article_1_parrafo_1_transparencia,
  .servicios_article_1_parrafo_2_transparencia,
  .servicios_article_1_parrafo_3_transparencia {
    height: 42%;
  }

  .servicios_article_1_parrafo_1_foto_container,
  .servicios_article_1_parrafo_2_foto_container,
  .servicios_article_1_parrafo_3_foto_container {
    border-radius: 24px;
  }

  .servicios_article_1_card .container-foto h3 {
    font-size: clamp(1.2125rem, 1.03rem + 0.55vw, 1.4625rem);
    line-height: 1.22;
  }
}

/* parrafo_1 */

.servicios_article_1_parrafo_1_transparencia {
  background-color: #f21d2fad;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  height: 35%;
  z-index: 3;
}

/* parrafo_2 */

.servicios_article_1_parrafo_2_transparencia {
  background-color: #77d6d8bd;
  position: absolute;
  width: 100%;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  height: 35%;
  z-index: 3;
}

/* parrafo_3 Trama vital — verde salvia (complementa #77d6d8 y #f21d2f sin competir con el cyan de consultoría) */

.servicios_article_1_parrafo_3_transparencia {
  background-color: #5d8f7fc9;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  height: 35%;
  z-index: 3;
}

/* Misma proporción y recorte en las tres tarjetas (línea desktop homogénea) */
.servicios_article_1_card_img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 370px) {
  .servicios_article_1_parrafo_1_transparencia {
    height: 50% !important;
  }
  .servicios_article_1_parrafo_3_transparencia {
    height: 50% !important;
  }
}

@media (max-width: 1200px) {
  .servicios_article_1_parrafo_1_transparencia {
    width: 100%;
  }
  .servicios_article_1_parrafo_2_transparencia {
    width: 100%;
  }
  .servicios_article_1_parrafo_3_transparencia {
    width: 100%;
  }
  .servicios_article_1 h2 {
    font-size: 16px;
    line-height: 20px;
  }
  .servicios_article_1 h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

@media (max-width: 991.98px) {
  .servicios_article_1_parrafo_1_transparencia {
    height: 40%;
  }
  .servicios_article_1_parrafo_2_transparencia {
    height: 40%;
  }
  .servicios_article_1_parrafo_3_transparencia {
    height: 40%;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- confiaron_en_.html --> */
/* /////////////////////////////////////////////////////////////////// */

/* ///////////////////////////////////////////// */
/* <!-- confiaron_en_plural_article_1 --> */

.confiaron_en_plural_article_1 {
  color: #ffffff;
}
.confiaron_en_plural_article_1 h2 {
  font-size: 22px;
}

@media (max-width: 1200px) {
  .confiaron_en_plural_article_1 h2 {
    font-size: 16px;
    line-height: 20px;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- equipo.html --> */
/* /////////////////////////////////////////////////////////////////// */

/* ///////////////////////////////////////////// */
/* <!-- equipo_article_1 | general */

.equipo_article_1 {
  color: #ffffff;
}
.equipo_article_1 h2 {
  font-size: 16px !important;
}
.equipo_article_1 h3 {
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .equipo_article_1 h2 {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 380px) and (max-width: 992px) {
  .equipo_article_1 h2 {
    font-size: 18px !important;
  }
}

@media (min-width: 992px) {
  .equipo_article_1 h2 {
    font-size: 22px !important;
  }
  .equipo_article_1 h3 {
    font-size: 35px;
  }
}

@media (min-width: 1600px) {
  .equipo_article_1 h3 {
    font-size: 35px;
  }
}

/* left */

.equipo_article_1_parrafo_left_transparencia-rojo {
  background-color: #f21d2fad;
}

.equipo_article_1_parrafo_left_foto_container p {
  line-height: 20px;
}

/* right */

.equipo_article_1_parrafo_right_transparencia-rojo {
  background-color: #f21d2fad;
}

.equipo_article_1_parrafo_right_foto_container p {
  line-height: 20px;
}

.equipo_article_1_parrafo_left_foto_container {
  position: relative;
}

.equipo_article_1_parrafo_left_transparencia {
  position: absolute;
  width: 100%;
  top: 260px;
  left: 50%;
  transform: translate(-50%, -65%);
  height: 130px;
}

@media (min-width: 1200px) {
  .equipo_article_1_parrafo_left_foto_container .container-foto {
    margin-left: 45%;
    width: 50%;
  }
  .equipo_article_1_parrafo_left_foto_container p {
    margin-left: 62px;
    margin-bottom: 180px;
  }

  .equipo_article_1_parrafo_left_transparencia-rojo {
    top: 550px;
    height: 136px;
  }
  .equipo_article_1_parrafo_left_foto_container h3 {
    font-size: 40px;
  }
  .equipo_article_1_parrafo_left_foto_container h6 {
    font-size: 22px;
  }
}

.equipo_article_1_parrafo_right_foto_container {
  position: relative;
}

.equipo_article_1_parrafo_right_transparencia {
  position: absolute;
  width: 100%;
  top: 260px;
  left: 50%;
  transform: translate(-50%, -65%);
  height: 130px;
}

@media (min-width: 1600px) {
  .equipo_article_1-left {
    margin: 0 !important;
  }
}

@media (min-width: 1200px) {
  .equipo_article_1_parrafo_right_transparencia-rojo {
    top: 550px;
    height: 136px;
  }
  .equipo_article_1_parrafo_right_foto_container p {
    margin-left: 62px;
  }

  .equipo_article_1_parrafo_right_foto_container h3 {
    font-size: 40px;
    line-height: 24px;
  }
  .equipo_article_1_parrafo_right_foto_container h6 {
    font-size: 22px;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- contactanos.html --> */
/* /////////////////////////////////////////////////////////////////// */

.contacto_article_1 {
  color: #ffffff;
}
.contacto_article_1 h2 {
  font-size: 22px;
}
/* Estilo personalizado para el marcador de posición */
.contactanos_form {
  color: #ffffff;
  background-color: transparent;
}

.contactanos_form::placeholder {
  color: #ffffff;
}

.contactanos_form:focus {
  color: #ffffff;
  box-shadow: none !important;
  border: #ffffff 1px solid !important;
  background-color: #727f8e !important;
  z-index: 1;
}

.contactanos_form + label:after {
  content: ' *';
  color: red;
}

@media (max-width: 1200px) {
  .contacto_article_1 h2 {
    font-size: 16px;
    line-height: 20px;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- Stats counter --> */
/* /////////////////////////////////////////////////////////////////// */

.seo-depth-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1.5rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(242, 29, 47, 0.10), rgba(242, 29, 47, 0.04));
  border: 1px solid rgba(242, 29, 47, 0.22);
}

@media (min-width: 768px) {
  .seo-depth-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.85rem 2rem;
    margin-bottom: 2.5rem;
  }
}

.seo-depth-stat {
  text-align: center;
}

@media (min-width: 768px) {
  .seo-depth-stat {
    text-align: left;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.25rem;
  }
  .seo-depth-stat:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

.seo-depth-stat-number {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

.seo-depth-stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- whatsapp --> */
/* /////////////////////////////////////////////////////////////////// */

/* //////////////////////////////////////////////////////////////////*/
/* Whatsapp-floating-button//////////////////////////////////////////*/

.float {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px) + 1rem);
  right: max(1.5rem, env(safe-area-inset-right, 0px) + 1rem);
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 12px #00000040;
  z-index: 100;
  transition: transform 180ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.float:active {
  transform: scale(0.95);
}

.my-float {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .float:hover {
    color: #fff;
    box-shadow: 2px 4px 12px #00000040;
    transform: translateY(-2px);
  }
}
.oculto{
  display: none;
}

/* Anti-spam: campo trampa fuera de foco visual (no usar display:none en el input) */
.plural-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accesibilidad: ir al contenido (teclado) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 0.65rem 1rem;
  background: #fff;
  color: #1a1a1a !important;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  outline: 2px solid #f21d2f;
  outline-offset: 2px;
}

.a11y-footer-tools {
  margin-left: auto;
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  align-self: center;
}

.a11y-wcag-note {
  margin: 0;
  max-width: none;
  font-size: inherit;
  line-height: 1.35;
  font-weight: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  white-space: normal;
}

.a11y-wcag-note::before {
  content: '\267F';
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  color: #2f86ff;
  margin: 0;
  transform: translateY(0.03em);
}

.a11y-motion-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.48rem 0.85rem;
  min-height: 36px;
  transition: background-color 0.18s var(--ease-out), border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.a11y-motion-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.a11y-motion-toggle:active {
  transform: scale(0.98);
}

.a11y-motion-toggle:focus-visible {
  outline: 2px solid #f21d2f;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .footer_bottom .container > .d-flex.align-items-end,
  .footer_bottom .container > .footer-bottom-row {
    justify-content: center;
    align-items: center !important;
    text-align: center;
    flex-wrap: wrap;
  }

  .footer-bottom-legal-line {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .footer-bottom-legal-line .a11y-wcag-note {
    justify-content: center;
    max-width: 32rem;
  }

  .a11y-footer-tools {
    margin-left: 0;
    margin-top: 0.5rem;
    align-items: center;
    width: 100%;
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- Revelado al scroll (sutil) + accesibilidad --> */
/* /////////////////////////////////////////////////////////////////// */

/* Solo móvil/tablet táctil: en pointer fine no se añade la clase desde JS */
@media (pointer: coarse) {
  main > section.reveal-on-scroll,
  main > article.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  }

  main > section.reveal-on-scroll.is-inview,
  main > article.reveal-on-scroll.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- SEO depth blocks: cobertura, autoridad, alcance regional --> */
/* /////////////////////////////////////////////////////////////////// */

.seo-depth-section {
  position: relative;
}

.seo-depth-panel {
  padding: 1.4rem 1.15rem 1.45rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

@media (min-width: 768px) {
  .seo-depth-panel {
    padding: 1.8rem 1.6rem 1.85rem;
  }
}

.seo-depth-kicker {
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 29, 47, 0.92);
  font-weight: 700;
}

.seo-depth-title {
  color: #ffffff;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  letter-spacing: -0.03em;
}

.seo-depth-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 0.92rem + 0.25vw, 1.08rem);
  line-height: 1.65;
  max-width: 58rem;
}

.seo-depth-copy,
.seo-depth-meta {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.seo-depth-meta {
  font-size: 0.86rem;
}

.seo-depth-meta a {
  color: #ffb4bc;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.seo-depth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 992px) {
  .seo-depth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-depth-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.seo-depth-card {
  min-height: 100%;
  padding: 1rem 1rem 0.95rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-depth-card-title {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.seo-depth-card-copy,
.seo-depth-list {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}

.seo-depth-list {
  padding-left: 1.1rem;
}

.seo-depth-list li + li {
  margin-top: 0.25rem;
}

/* /////////////////////////////////////////////////////////////////// */
/* <!-- Landing | Preguntas frecuentes (acordeón, SEO / no invasivo) --> */
/* /////////////////////////////////////////////////////////////////// */

.index-faq__panel {
  max-width: 42rem;
  padding: 1.5rem 1.2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

@media (min-width: 768px) {
  .index-faq__panel {
    padding: 1.75rem 1.5rem 1.65rem;
  }
}

.index-faq__title {
  font-size: clamp(1.25rem, 1.05rem + 0.85vw, 1.65rem);
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem !important;
}

.index-faq__lead {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.95rem);
  max-width: 36rem;
}

.index-faq__meta {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  opacity: 0.95;
  font-size: 0.8125rem;
}

.index-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.index-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s var(--ease-out);
}

.index-faq__item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.index-faq__item[open] {
  background: rgba(0, 0, 0, 0.14);
}

/* Pregunta (texto del summary) */
.index-faq__question {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.05rem 2.5rem 1.05rem 0.15rem;
  font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.08rem);
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease-out);
}

.index-faq__question::-webkit-details-marker {
  display: none;
}

.index-faq__question::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.22s var(--ease-out), border-color 0.2s var(--ease-out);
}

.index-faq__item[open] > .index-faq__question::after {
  transform: translateY(-50%) rotate(225deg);
  border-color: rgba(242, 29, 47, 0.95);
}

@media (hover: hover) and (pointer: fine) {
  .index-faq__item:not([open]) .index-faq__question:hover {
    color: rgba(255, 255, 255, 0.98);
  }

  .index-faq__item:not([open]) .index-faq__question:hover::after {
    border-color: rgba(255, 255, 255, 0.88);
  }
}

.index-faq__question:focus {
  outline: none;
}

.index-faq__question:focus-visible {
  outline: 2px solid #f21d2f;
  outline-offset: 3px;
  border-radius: 8px;
}

/* Respuesta (solo cuerpo; región asociada a la pregunta vía aria-labelledby) */
.index-faq__answer {
  padding: 0.35rem 1rem 1.35rem 1rem;
  margin: 0 0 0 0.2rem;
  border-left: 3px solid rgba(242, 29, 47, 0.42);
  border-radius: 0 0 10px 0;
}

.index-faq__a-body {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 0.86rem + 0.15vw, 1.02rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.012em;
}

.index-faq__answer .mb-0 {
  margin-bottom: 0 !important;
}

.index-faq__answer a {
  color: #ffb4bc;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.index-faq__answer a:hover {
  color: #ffc8ce;
  opacity: 1;
}

/* FAQ — bloque contacto: mailto nativo + atajos webmail */
.index-faq__contact {
  padding-top: 0.15rem;
}

.index-faq__contact-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 29, 47, 0.9);
  margin-bottom: 0.35rem;
}

.index-faq__email-link {
  display: inline-block;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.12rem);
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(242, 29, 47, 0.75);
}

.index-faq__email-link:hover {
  color: #ffc8ce !important;
  text-decoration-color: rgba(255, 200, 206, 0.95);
}

.index-faq__contact-hint {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(0.8rem, 0.76rem + 0.12vw, 0.88rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 34rem;
}

.index-faq__webmail-line {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.index-faq__webmail-intro {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.index-faq__webmail-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.index-faq__webmail-dot {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

/* /////////////////////////////////////////////////// */
/* <!-- Selector de idioma ES/EN --> */
/* /////////////////////////////////////////////////// */

.plural-lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  background: rgba(17, 30, 49, 0.95);
  backdrop-filter: blur(8px);
}

.plural-lang-switcher--floating {
  position: fixed;
  right: clamp(12px, 2.2vw, 24px);
  bottom: clamp(12px, 2.2vw, 24px);
  z-index: 9999;
}

.plural-lang-switcher--top-fixed {
  position: fixed !important;
  right: 0.9rem !important;
  top: 0.9rem !important;
  bottom: auto !important;
  z-index: 1200 !important;
}

.plural-lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 44px;
  min-height: 38px;
  padding: 0.35rem 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.plural-lang-btn__flag {
  font-size: 1rem;
  line-height: 1;
}

.plural-lang-btn__code {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.plural-lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.plural-lang-btn.is-active {
  background: #f21d2f;
  color: #ffffff;
}

#plural-lang-slot {
  width: auto !important;
}

#site-header .navbar {
  position: relative;
}

#site-header #plural-lang-slot .plural-lang-switcher {
  transform: scale(0.92);
  transform-origin: center;
}

#site-header .navbar > .plural-lang-switcher {
  position: fixed !important;
  right: 0.9rem !important;
  top: 0.9rem !important;
  transform: none !important;
  z-index: 1200 !important;
  margin-left: 0 !important;
  flex-shrink: 0 !important;
}

@media (max-width: 1199.98px) {
  #site-header .navbar > .plural-lang-switcher {
    position: static !important;
    right: auto !important;
    top: auto !important;
    z-index: auto !important;
    margin-left: auto !important;
    transform: none !important;
    flex-shrink: 0;
  }
  #site-header .navbar .navbar-toggler {
    order: 1;
    margin-left: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  #site-header .navbar > .plural-lang-switcher .plural-lang-btn {
    min-width: 34px;
    min-height: 32px;
    padding: 0.28rem 0.4rem;
  }

  #site-header .navbar > .plural-lang-switcher .plural-lang-btn__code {
    display: none;
  }
}

@media (max-width: 430px) {
  #site-header .navbar > .plural-lang-switcher .plural-lang-btn {
    min-width: 28px;
    min-height: 28px;
    padding: 0.2rem 0.3rem;
  }
}

@media (max-width: 360px) {
  #site-header .navbar > .plural-lang-switcher .plural-lang-btn {
    min-width: 24px;
    min-height: 24px;
    padding: 0.15rem 0.25rem;
    font-size: 0.8em;
  }
}

@media (min-width: 1200px) {
  #site-header .navbar > .plural-lang-switcher {
    right: 1.1rem !important;
    top: 1rem !important;
    transform: scale(0.92) !important;
  }
}

/* Evita el "salto" de layout cuando Google Translate inyecta banner */
body {
  top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

html.a11y-motion-paused .tt-scrolling-text-inner {
  animation-play-state: paused !important;
}

html.a11y-motion-paused .servicios_article_1_grid_cell {
  animation: none !important;
}

html.a11y-motion-paused .servicios_article_1_card {
  transition: none !important;
}

html.a11y-motion-paused .servicios_article_1_card:hover {
  transform: none !important;
}

html.a11y-motion-paused main > section.reveal-on-scroll,
html.a11y-motion-paused main > article.reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* /////////////////////////////////////////////////// */
/* <!-- Site Footer (modernized) --> */
/* /////////////////////////////////////////////////// */

.site-footer {
  background: linear-gradient(180deg, #111318 0%, #0f1116 100%);
  color: #fff;
  position: relative;
}

.site-footer__accent {
  height: 3px;
  background: linear-gradient(90deg, #f21d2f 0%, #ff4d5e 50%, #f21d2f 100%);
}

.site-footer__main {
  padding: 3rem 0 2.25rem;
}
@media (min-width: 768px) {
  .site-footer__main { padding: 4rem 0 3rem; }
}

.site-footer__logo-link { display: inline-block; margin-bottom: 1rem; }
.site-footer__logo-link img { transition: transform 220ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .site-footer__logo-link:hover img { transform: scale(1.04); }
}

.site-footer__tagline {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 32ch;
  margin: 0 0 1.25rem;
}

.site-footer__socials {
  display: inline-flex;
  gap: 0.6rem;
}
.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .site-footer__social:hover {
    background: #f21d2f;
    border-color: #f21d2f;
    transform: translateY(-2px);
  }
}

.site-footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__list li { margin-bottom: 0.55rem; }
.site-footer__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: color 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .site-footer__list a:hover { color: #f21d2f; }
}

.site-footer__list--icons li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.site-footer__list--icons i {
  color: #f21d2f;
  font-size: 0.95rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.site-footer__cta-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.1rem;
}
.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.25rem;
  background: #f21d2f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.site-footer__cta-btn i { transition: transform 220ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .site-footer__cta-btn:hover {
    background: #ff3848;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(242, 29, 47, 0.35);
  }
  .site-footer__cta-btn:hover i { transform: translateX(3px); }
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.4rem;
  background: rgba(0, 0, 0, 0.2);
}
.site-footer__bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
.site-footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
}
.site-footer__copyright .footer-copyright-rights { margin-left: 0.25rem; }
