@charset "UTF-8";
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Black.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-BoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi/Satoshi-BlackItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("./fonts/Lato/Lato-HairlineItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("./fonts/Lato/Lato-Hairline.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato/Lato-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg-color-green: #2BD6BA;
  --bg-color-blue: #4988DE;
  --bg-color-blueblack: #242F40;
  --bg-color-white: #fff;
  --bg-color-gradient-green-blue: linear-gradient(180deg, #2BD6BA 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-blue: linear-gradient(180deg, #000 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-green: linear-gradient(180deg, #242F40 0%, #2BD6BA 100%);
  --header-height: 100px;
}
@media (max-width: 1050px) {
  :root {
    --header-height: 68px;
  }
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

.shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}
.shadow-1 {
  box-shadow: 0px 4.492px 4.492px 0px rgba(0, 0, 0, 0.1);
}

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

.center {
  justify-content: center;
  align-items: center;
}
.center-x {
  justify-content: center;
}
.center-y {
  align-items: center;
}

.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.start-x {
  justify-content: flex-start;
}
.start-y {
  align-items: flex-start;
}

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.3;
}

.hidden {
  display: none;
}

.contenedor {
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}

section {
  width: 100%;
  padding: 2.5rem 0;
}

a {
  text-decoration: none !important;
}

header {
  background: white;
  top: 0;
  left: 0;
  z-index: 100;
  position: relative;
  box-shadow: 0 6px 8px -4px rgba(0, 0, 0, 0.3);
  width: 100%;
}

header.scrolled {
  background: linear-gradient(to bottom, rgba(44, 68, 139, 0.7254901961), transparent);
  box-shadow: none;
}

header.scrolled .nav-links li .nav-a {
  color: white !important;
}

header.scrolled .nav-links li .nav-a::before {
  color: white !important;
}

header.scrolled .nav-links .contacto-header .nav-a::before {
  opacity: 0 !important;
}

header.scrolled .nav-links li .nav-a:hover {
  color: transparent !important;
}

header.scrolled .nav-links .contacto-header .nav-a:hover {
  color: white !important;
}

header .nav-links .contacto-header .nav-a:hover {
  color: white !important;
}

header.scrolled .nav-links .contacto-header .nav-a:hover::before {
  color: white !important;
}

header.scrolled .contact li.idioma {
  border: 2px solid rgb(255, 255, 255);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
}
.nav .logo img {
  max-width: 140px;
  width: auto;
}
.nav .nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.nav .nav-links .contacto-header .nav-a {
  color: white !important;
}
.nav .nav-links .contacto-header .nav-a:hover {
  color: white !important;
}
.nav .nav-links .contacto-header .nav-a:hover::before {
  color: white !important;
}
.nav .nav-links .contacto-header .nav-a::before {
  color: white !important;
}
.nav .nav-links li .nav-a {
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.5s ease;
  color: rgb(20, 63, 124);
  display: inline-block;
  padding: 0 10px;
  white-space: nowrap;
}
.nav .nav-links li .nav-a::before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 10px;
  color: rgb(20, 63, 124);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.nav .nav-links li .nav-a:hover::before {
  opacity: 1;
}
.nav .nav-links li .nav-a:hover {
  color: transparent;
}
.nav .nav-links li .nav-a.scrolled::before {
  color: #143f7c;
}
.nav .nav-links li .nav-a.scrolled:hover::before {
  opacity: 1;
}
.nav .nav-links li .nav-a.scrolled:hover {
  color: transparent;
}
.nav .seguros_elements a {
  color: #143f7c;
  text-decoration: none;
  padding: 6px 8px;
  display: block;
}
.nav .contact {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 20px;
  position: relative;
}
.nav .contact li a {
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.5s ease;
  display: inline-block;
}
.nav .contact li.idioma {
  border: 2px solid #143f7c;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav .contact li.idioma button {
  background: none;
  border: none;
  cursor: pointer;
}

.contacto-header {
  background-color: #6776a3;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.contacto-header .nav-a {
  color: white !important;
  font-weight: 900 !important;
  text-align: center;
  padding: 20px 20px;
}

.contacto-header:hover {
  background-color: #143f7c;
}

nav .nav-links li .nav-a {
  color: white;
}

/* Submenú oculto por defecto, animado */
.sub-menu {
  position: absolute;
  top: 100%; /* justo debajo del li */
  left: 0;
  background: white;
  padding: 20px 80px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
  min-width: 320px; /* ajusta si quieres */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  display: flex;
  color: #4D4D4D;
  gap: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Mostrar submenú cuando el li tiene .open */
.has-mega.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Layout específico para Servicios: 3 columnas x 2 filas */
.servicios-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px; /* espacio entre filas y columnas */
  width: 100%; /* ajusta según el diseño */
  list-style: none;
}

.servicios-items-container li {
  flex: 0 0 calc(33.3333333333% - 13.33px); /* ancho para 3 columnas */
  box-sizing: border-box;
  margin-bottom: 15px; /* espacio entre filas */ /* opcional, para mejor visibilidad */
  padding: 12px;
  text-align: start;
  cursor: pointer;
}

.servicios-items-container > li a {
  display: block;
  max-width: 250px; /* limita ancho para que no crezca demasiado */
  white-space: normal; /* permite que el texto se divida en varias líneas */
  overflow-wrap: break-word; /* ayuda a romper palabras largas */
  text-decoration: none;
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
}

.servicios-items-container > li a:hover {
  font-weight: bold;
  color: #143f7c;
}

.seguros-mega-container {
  display: flex;
  gap: 20px;
  padding: 12px;
  flex: 3;
}

.seguros-categorias {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  flex: 1;
  border-right: 1px solid rgba(0, 0, 0, 0.555);
}

.seguros-categorias li a {
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
}

.seguros-categorias li a:hover {
  font-weight: bold;
  color: #143f7c;
  cursor: pointer;
}

.seguros-categorias .seg-cat {
  display: block;
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.seguros-categorias .seg-cat.active {
  background: #200a0a;
  font-weight: 600;
}

.seguros-items-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  flex: 2;
  gap: 30px;
  width: 100%;
}

.seguros-items {
  display: grid;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr); /* 12px filas, 20px columnas */
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.seguros-items li {
  border-radius: 6px;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
  font-weight: 400;
}

.seguros-items li a {
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.seguros-items li a:hover {
  font-weight: bold;
  color: #143f7c;
}

.contact .idioma {
  cursor: pointer;
}

.contact .idioma-dropdown {
  position: absolute;
  top: 100%;
  right: 10%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  list-style: none;
  min-width: 120px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.contact .idioma:hover .idioma-dropdown {
  opacity: 1;
  visibility: visible;
}

.contact .idioma-dropdown li {
  display: flex;
  align-items: center;
  justify-content: start;
}

.contact .idioma-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  color: #333;
  text-decoration: none;
  gap: 8px;
}

/* Contenedor menú móvil */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  padding: 40px 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}

.menu-mobile.open {
  right: 0;
}

/* Botón cerrar */
.close-menu {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}

/* Lista principal */
.menu-mobile-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-mobile-list a {
  font-size: 20px;
  font-weight: 900;
  color: #6776A3;
  display: block;
  transition: color 0.3s;
}

.menu-mobile-list a:hover {
  color: #1d2a52;
}

/* Submenús */
.menu-item.has-children > .menu-link::after {
  content: "›";
  float: initial;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.menu-item.open > .menu-link::after {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
}

.menu-item.open > .submenu {
  display: block;
}

/* Contactos */
.menu-contact {
  font-size: 14px;
  color: #444;
  margin-top: auto;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.menu-contact a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #33436d;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #2C438B;
  font-size: 15px;
}

/* Submenús generales */
.submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
}

.menu-item.open > .submenu {
  display: block;
}

.submenu li a {
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  padding: 2px 0;
}

/* Indicador en items con hijos */
.menu-item.has-children > .menu-link::after {
  content: "›";
  float: right;
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.menu-item.open > .menu-link::after {
  transform: rotate(-90deg);
}

/* Sub-submenú (seguros dentro de categoría) */
.submenu .submenu {
  padding-left: 15px;
  border-left: 1px solid #ddd;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  /* Botón hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }
  .menu-toggle span {
    display: block;
    height: 3px;
    background: #143f7c;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  /* Menú vertical desde la derecha */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 140px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: white;
    padding: 80px 20px;
    gap: 10px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-links.open {
    right: -20%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
  }
  .nav-links li {
    width: auto;
    text-align: start;
  }
  .nav-links li a {
    display: block;
    font-size: 18px;
    padding: 10px 0;
  }
  /* Submenú debajo del padre */
  .nav-links li .sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    gap: 5px;
  }
  .nav-links li.open > .sub-menu {
    display: flex;
  }
  .nav .logo img {
    max-width: 100px;
    width: auto;
  }
  .menu-contact-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .menu-item.open > .submenu {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .submenu li a {
    color: #6776A3;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    display: block;
  }
  .menu-item .inner-submenu {
    max-height: 200px;
    overflow: overlay;
  }
}
.loader {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  opacity: 1;
  pointer-events: all;
}

.loader.active {
  opacity: 1;
  pointer-events: all;
}

.loader:not(.active) {
  opacity: 0;
  pointer-events: none;
}

/* Loader styles */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  position: relative;
  width: 120px;
  height: 120px;
}

.rotating-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border: 3px solid #6AC0F1;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.logo-loader svg {
  width: 60px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title-text {
  font-size: 36px;
  font-weight: 900;
  color: #2C438B;
  text-align: center;
}

.title-text::before {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #2C438B;
  margin: 0 auto 10px auto;
}

@media (max-width: 512px) {
  .title-text {
    font-size: 30px;
  }
}
.servicios-image {
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.img-cuadro {
  width: 90%;
  height: auto;
  position: relative;
  z-index: 5;
}

.cuadro2 {
  width: 80%;
  height: 100%;
  border: #6AC0F1 6px solid;
}

#cuadro1 {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: -1;
}

#cuadro2 {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: -1;
}

.servicios-text {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
}

.servicios-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  max-width: 100%;
}

.text-static {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 20px;
  min-height: 30px;
}

.text-static p {
  color: #4D4D4D;
  width: 90%;
  text-align: start;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.5s ease;
}

.servicios-text ul li {
  font-size: 18px;
  background-color: white;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 20px;
  max-height: 70px;
  overflow: hidden;
  border-radius: 6px;
  min-height: 70px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.servicios-text ul li.open {
  max-height: 400px; /* altura suficiente para mostrar texto extra */
}

.servicios-text ul li.open .text-static p {
  color: #2C438B;
  font-weight: 900; /* altura suficiente para mostrar texto extra */
}

.extra-text a {
  background-color: #6AC0F1;
  width: 170px;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: bold;
  font-size: 18px;
  display: block;
  align-items: center;
  justify-content: space-between;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.flecha {
  color: #2C438B;
  transition: all 0.3s ease;
}

.extra-text a:hover .flecha {
  transform: translateX(6px);
}

.extra-text p {
  text-decoration: none;
  color: #4D4D4D;
  display: block;
  text-align: start;
  padding-right: 50px;
}

.img {
  color: #2C438B;
  font-weight: bold;
  font-size: 20px;
  border: #2C438B 3px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.img::before {
  content: "+";
}

li.open .img::before {
  content: "-";
}

.extra-text {
  max-height: 150px;
  opacity: 0;
  overflow: hidden;
  text-align: justify;
  transition: all 0.3s ease;
  padding-top: 0; /* para evitar espacio extra cuando está cerrado */
}

.extra-text.open {
  max-height: 400px; /* un valor que cubra el contenido */
  opacity: 1;
  padding-top: 10px;
}

.contacto-form div p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contacto-form div p span input {
  width: 400px;
}

#contacto {
  scroll-margin-top: 100px;
  background: #2C438B url("/sifuentes/wp-content/themes/theme_invitro/images/edificios.webp") no-repeat center/cover;
}

.contacto-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.linea2 {
  width: 150px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 9999px;
}

.contacto-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.contacto-text h2 {
  font-size: 34px;
  font-weight: 300;
  color: #ffffff;
}

.contacto-text h2::before {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #fff;
  margin: 0 auto 10px auto;
}

.contacto-text h3 {
  font-size: 34px;
  font-weight: bold;
  color: #ffffff;
}

.mensaje-form {
  width: 100%;
}

.contacto-form {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding-top: 40px;
}

.contacto-form div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.contacto-form div p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.contacto-form div span {
  width: 100%;
}

.contacto-form div p span input {
  width: 100%;
}

.contacto-form div input {
  border: none;
  border-bottom: 1px solid #ffffff;
  outline: none;
  padding: 8px 0;
  background: transparent;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  width: 100%;
}

.contacto-form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  outline: none;
  padding: 8px 0;
  background: transparent;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  width: 100%;
}

.contacto-form input::-moz-placeholder {
  color: white;
}

.contacto-form input::placeholder {
  color: white;
}

.contacto-form div input::-moz-placeholder {
  color: white;
}

.contacto-form div input::placeholder {
  color: white;
}

.contacto-form textarea::-moz-placeholder {
  color: white;
}

.contacto-form textarea::placeholder {
  color: white;
}

.contacto-form button {
  margin-top: 10px;
  background-color: #6AC0F1;
  width: auto;
  padding: 16px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.flecha2 {
  color: #2C438B;
  display: inline-block;
  transition: all 0.3s ease;
}

.contacto-form button:hover .flecha2 {
  transform: translateX(6px);
}

.mapa {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.mapa-cont {
  width: 90%;
  max-width: 1200px; /* ancho máximo centrado */
  position: relative;
  margin-bottom: 100px;
}

.mapa-cont img {
  width: 100%;
  height: auto;
}

#ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100px;
}

.cont-maps {
  position: absolute;
  top: 20px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cuadro-maps-a { /* → ancho fijo para todos */
  height: 60px;
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.5s ease;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
}

.img-cont-maps {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
}

.cuadro-maps-a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cuadro-maps-a p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  text-decoration: none;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.5s ease, opacity 0.5s ease;
}

.cuadro-maps-a:hover p {
  opacity: 1;
  max-width: 120px; /* → ocupa el espacio disponible para empujar al icono */
}

.cuadro-maps-a:hover {
  background: #2C438B;
}

.link-mapsl {
  text-decoration: none;
}

.wpcf7-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .contacto-text h2, .contacto-text h1 {
    font-size: 24px;
  }
  .contacto-form div p {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  .mapa-cont img {
    width: 100%;
    height: 300px;
  }
  .cuadro-maps-a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .wpcf7 {
    width: 100%;
  }
}
#contactow {
  scroll-margin-top: 100px;
  background: white;
}

.contacto-contw {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.linea2w {
  width: 150px;
  height: 4px;
  background-color: #2C438B;
  border-radius: 9999px;
}

.contacto-textw {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.contacto-textw h2 {
  font-size: 34px;
  font-weight: 300;
  color: #2C438B;
}

.contacto-textw h3 {
  font-size: 34px;
  font-weight: bold;
  color: #2C438B;
}

.contacto-formw {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 40px 20px 0 20px;
}

.contacto-formw div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.contacto-formw div p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.contacto-formw div span {
  width: 100%;
}

.contacto-formw div p span input {
  width: 100%;
}

.contacto-formw div input {
  border: none;
  border-bottom: 1px solid #2C438B;
  outline: none;
  padding: 8px 0;
  background: transparent;
  font-size: 18px;
  font-weight: 300;
  color: #2C438B;
  width: 100%;
}

.contacto-formw input {
  border: none;
  border-bottom: 1px solid #2C438B;
  outline: none;
  padding: 8px 0;
  background: transparent;
  font-size: 18px;
  font-weight: 300;
  color: #2C438B;
  width: 100%;
}

.contacto-formw input::-moz-placeholder {
  color: #2C438B;
}

.contacto-formw input::placeholder {
  color: #2C438B;
}

.contacto-formw div input::-moz-placeholder {
  color: #2C438B;
}

.contacto-formw div input::placeholder {
  color: #2C438B;
}

.contacto-formw textarea::-moz-placeholder {
  color: #2C438B;
}

.contacto-formw textarea::placeholder {
  color: #2C438B;
}

.contacto-formw button {
  margin-top: 10px;
  background-color: #6AC0F1;
  width: auto;
  border-radius: 6px;
  color: #2C438B;
  font-weight: bold;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0px 20px 20px 20px;
}

.flecha2w {
  color: #2C438B;
  display: inline-block;
  transition: all 0.3s ease;
}

.contacto-formw a:hover .flecha2w {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .contacto-text h2, .contacto-text h3 {
    font-size: 24px;
  }
  .contacto-formw div p {
    flex-direction: column;
    gap: 40px;
  }
}
.footer {
  background: linear-gradient(to bottom, #2C438B, #0C1225);
  padding-top: 40px;
  color: white;
}

.footer-cont {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.footer-principal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 3;
  gap: 30px;
}

.footer-datos {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.footer-datos ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.footer-datos ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer-datos ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer-datos ul li p {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.footer-redes {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}

.footer-redes div {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-redes div a {
  text-decoration: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-redes div img {
  width: 22px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-redes div a:hover {
  cursor: pointer;
  background-color: #5eafff;
}

.logo-footer {
  width: 200px;
  height: auto;
}

.footer-preguntas {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.footer-preguntas div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  padding: 20px 20px;
  border-radius: 10px;
  max-width: 250px;
}

.footer-preguntas div p {
  font-size: 16px;
  font-weight: bold;
  color: #6776A3;
}

.linea1 {
  width: 80%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 9999px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  gap: 30px;
  color: white;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  gap: 80px;
}

.footer-link {
  font-size: 16px;
  font-weight: 300;
  color: white;
  transition: all 0.3s ease;
}

.footer-link a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: #aad4ff;
}

.btn-wsp {
  position: fixed;
  bottom: 4%;
  right: 4%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 99999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-wsp img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-wsp:hover {
  transform: translateY(-50%) scale(1.1);
}

.footer-datos {
  order: 1;
}

.footer-redes {
  order: 2;
}

.footer-preguntas {
  order: 3;
}

@media (max-width: 768px) {
  .footer-principal {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
  .copyright {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footer-datos ul {
    width: 70%;
  }
  .footer-redes {
    order: 1;
  }
  .footer-datos {
    order: 2;
  }
  .footer-preguntas {
    order: 3;
  }
}
.hero-nos {
  background: linear-gradient(to bottom, rgba(44, 68, 139, 0.7333333333), rgba(106, 191, 241, 0.6235294118)), url("/sifuentes/wp-content/themes/theme_invitro/images/nosotros-hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-nos-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.hero-nos-cont h1 {
  font-size: 30px;
  color: white;
  font-weight: 900;
}

@media (max-width: 768px) {
  .hero-nos-cont h1 {
    width: 100%;
    text-align: center;
  }
  .hero-nos-cont {
    padding: 20px 0;
  }
}
.hero-inc {
  background: linear-gradient(to bottom, rgba(44, 68, 139, 0.8156862745), rgba(44, 68, 139, 0.8431372549)), url("/sifuentes/wp-content/themes/theme_invitro/images/incendio.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-inc-cont {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 40px 0;
}

.titulo_inc {
  position: relative;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.rel-inc {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.titulo_inc h2 {
  font-size: 40px;
  color: #6AC0F1;
  font-weight: bold;
  position: relative;
  left: -80px;
}

.titulo_inc img {
  height: 100%;
}

.cont-inc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.imagen-inc {
  width: auto;
  position: absolute;
  right: 0;
}

.contenido-inc {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.texto-inc {
  width: 100%;
  text-align: start;
  padding: 60px 0;
}

.texto-inc p {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  padding-bottom: 40px;
}

.beneficios h2 {
  font-size: 24px;
  color: #2C438B;
  font-weight: 900;
  padding-bottom: 20px;
}

.beneficios ul {
  padding: 0 30px;
}

.beneficios ul li {
  list-style: circle;
  font-size: 18px;
  color: #6776A3;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 10px;
}

.link-inc {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: #6AC0F1;
  border-radius: 4px;
  text-decoration: none;
  color: #2C438B;
  font-size: 18px;
  font-weight: 900;
}

.link-inc img {
  padding-left: 10px;
  width: 18px;
}

.mensaje_banner_extra3 {
  background-repeat: no-repeat;
  background-size: contain; /* Se ajusta al contenedor */
  background-position: left top;
  padding: 40px 10px; /* Espaciado interno para el texto */
  display: inline-block;
}

.mensaje_banner_extra3 h1 {
  left: 20px;
  color: #6AC0F1;
  font-weight: bold;
  font-size: 40px;
  width: 50%;
}

@media (max-width: 768px) {
  .titulo_inc {
    width: 100%;
  }
  .titulo_inc h2 {
    font-size: 28px;
  }
  .servicios-image {
    width: 100%;
  }
  .imagen-inc {
    position: relative;
  }
  .contenido-inc {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .texto-inc {
    width: 100%;
    padding: 20px;
  }
  .mensaje_banner_extra3 h2 {
    left: 20px;
    color: #6AC0F1;
    font-weight: bold;
    font-size: 36px;
    width: 90%;
  }
  .rel-inc {
    order: -1; /* hacer que la imagen aparezca antes */
    margin-bottom: 0;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper2 {
  width: 100%;
  height: 100%;
}

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

.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* oscuro → transparente */
  pointer-events: none; /* para que no bloquee clics */
  z-index: 1;
}

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

/* Quitamos flecha azul predeterminada */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

/* Flecha izquierda */
.swiper-button-prev {
  left: 90px !important;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: auto !important;
}

/* Flecha derecha */
.swiper-button-next {
  right: 90px !important;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: auto !important;
}

/* Paginación */
.swiper-pagination {
  bottom: 20px !important;
}

.mensaje_banner {
  position: absolute;
  max-width: 500px;
  top: 50%;
  left: 36%;
  transform: translate(-50%, -50%);
  text-align: start;
  z-index: 2;
  width: 70%;
}

.texto_banner {
  position: relative;
  top: 14%;
  padding: 20px;
  z-index: 1;
  width: 100%;
  min-width: 300px;
  opacity: 0;
  transform: translateX(50px);
  animation: slideLeft 1s ease-out forwards;
}

.titulo_banner {
  font-size: 50px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.mensaje_banner img {
  position: relative;
  width: 200px;
  height: auto;
  display: block;
  z-index: 1;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideRight 1s ease-out forwards;
}

.mensaje_banner a {
  background-color: #6AC0F1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  margin-top: 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.8s ease;
}

.mensaje_banner a span {
  padding-left: 10px;
}

.mensaje_banner a:hover span {
  transform: translateX(6px);
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.phrase {
  padding: 40px 0;
}

.phrase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.phrase-text {
  color: #6776A3;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}

.textura2 {
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(180deg);
}

.textura1nos {
  position: absolute;
  left: 0;
  bottom: 200px;
}

.nosotros {
  position: relative;
}
.nosotros .textura1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.nosotros .nosotros-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  color: #2C438B;
}
.nosotros .nosotros-text {
  max-width: 460px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.nosotros .nosotros-text .nosotros-titulo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nosotros .nosotros-text .nosotros-titulo img {
  display: block;
}
.nosotros .nosotros-text .nosotros-titulo h2 {
  position: absolute;
  left: 20px;
  color: #6AC0F1;
  font-weight: 900;
  font-size: 40px;
}
.nosotros .nosotros-text p {
  font-size: 18px;
  color: #fff;
  text-align: justify;
}
.nosotros .nosotros-text a {
  background-color: #fff;
  width: 300px;
  padding: 15px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nosotros .nosotros-text a .flecha {
  color: #2C438B;
  transition: all 0.3s ease;
}
.nosotros .nosotros-text a:hover .flecha {
  transform: translateX(6px);
}
.nosotros .nosotros-image {
  position: relative;
  display: inline-block;
}
.nosotros .nosotros-image img {
  display: block;
  width: 100%;
  height: auto;
}
.nosotros .nosotros-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(44, 67, 139, 0.73), transparent);
  pointer-events: none;
}

.servicios {
  background-image: linear-gradient(rgba(221, 221, 221, 0.952), rgba(231, 231, 231, 0.938)), url("/sifuentes/wp-content/themes/theme_invitro/images/servicios.webp"); /* imagen */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.servicios-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  gap: 40px;
}

.titulo-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.servicios-titulo {
  font-size: 30px;
  font-weight: 900;
  color: #2C438B;
}

.servicios-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.testimonio {
  position: relative;
}

.testimonio-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.titulo-testimonio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  gap: 14px;
}

.titulo-testimonio h1 {
  font-size: 30px;
  font-weight: 900;
  color: #2C438B;
}

.card-cut {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

/* CARRUSEL DE CARDS DE TESTIMONIOS */
.card-carousel-wrapper {
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: 0 auto 60px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

#comillas {
  position: absolute;
  width: 100px;
  height: auto;
  top: 30px;
  right: 30px;
}

.card-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.card-carousel-wrapper .card {
  min-width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
}

.text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.text-card div {
  font-size: 20px;
  text-align: left;
  color: #4D4D4D;
  font-weight: 400;
  line-height: 34px;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  color: #4D4D4D;
  padding-left: 20px;
}

.client-card h1 {
  color: #2C438B;
  font-size: 22px;
}

.client-card p {
  color: #2C438B;
  font-size: 16px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.card-carousel-btn {
  position: absolute;
  top: 30%;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-carousel-btn.prev {
  left: 0;
}

.card-carousel-btn.next {
  right: 0;
}

.swiper-button-next2,
.swiper-button-prev2 {
  width: 40px !important;
  height: 40px !important;
}

.titulo-clientes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titulo-clientes h1 {
  font-size: 30px;
  font-weight: 900;
  color: #2C438B;
}

.clientes {
  padding: 40px 0;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.clientes p {
  font-size: 20px;
  color: #2C438B;
  text-align: center;
}

.logo-clientes {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 40px;
}

.logo-clientes-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  width: 750px; /* 5 imágenes visibles * 150px */
  position: relative;
}

.carousel-track {
  display: flex;
  width: 200%; /* 10 imágenes * 20% cada una */
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-track div {
  width: 10%; /* 100% / 10 imágenes */
  max-width: 10%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.carousel-track div img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 10px;
}

.carrousel-btn {
  position: absolute;
  top: 30%;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  padding: 10px 20px;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev {
  left: 30px;
}

.carousel-btn.next {
  right: 30px;
}

.carrousel-btn.prev {
  left: 60px;
}

.carrousel-btn.next {
  right: 60px;
}

.hero2 {
  padding-top: 20px;
  position: relative;
  width: 100%;
  height: 100%;
}

.mySwiperTestimonials .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
  align-items: center;
}

.card-content {
  background: #fff;
  margin: 20px;
  max-width: 70%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.text-card div {
  line-height: 1.5;
}

.client-card {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-card img {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  margin-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.client-info h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-align: start;
  color: #2C438B;
}

.client-info p {
  margin: 0;
  font-size: 16px;
  text-align: start;
}

/* Flechas personalizadas */
.mySwiperTestimonials .swiper-button-next::after,
.mySwiperTestimonials .swiper-button-prev::after {
  content: none !important; /* Quitamos flecha azul */
}

.mySwiperTestimonials .swiper-button-prev {
  left: 20px !important;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.mySwiperTestimonials .swiper-button-next {
  right: 20px !important;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center;
}

/* Flechas personalizadas */
.swiper-button-next2,
.swiper-button-prev2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

/* Quitamos flecha azul predeterminada */
.swiper-button-next2::after,
.swiper-button-prev2::after {
  content: none !important;
}

/* Flecha izquierda */
.swiper-button-prev2 {
  left: 0 !important;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

/* Flecha derecha */
.swiper-button-next2 {
  right: 0 !important;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.swiper-button-next3,
.swiper-button-prev3 {
  width: 40px !important;
  height: 40px !important;
}

.swiper-button-next3 img,
.swiper-button-prev3 img {
  width: auto;
}

.cont-logos {
  width: 80%;
}

.cont-logos img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}

.cont-logos img:hover {
  transform: scale(1.2);
}

.mySwiperLogos {
  width: 80%;
}

.swiper-slide {
  background: transparent;
}

.mySwiperLogos .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Flechas personalizadas */
.swiper-button-next3,
.swiper-button-prev3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(44, 68, 139, 0.2117647059);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(44, 68, 139, 0.5568627451);
  cursor: pointer;
  z-index: 10;
  background-color: linear-gradient(rgba(44, 68, 139, 0.9294117647), rgba(44, 68, 139, 0.9176470588));
}

/* Quitamos flecha azul predeterminada */
.swiper-button-next3::after,
.swiper-button-prev3::after {
  content: none !important;
}

/* Flecha izquierda */
.swiper-button-prev3 {
  left: 0 !important;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

/* Flecha derecha */
.swiper-button-next3 {
  right: 0 !important;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.mensaje_banner_texto::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-1rem, -50%);
  width: 11rem;
  height: 100%;
  background-image: url(/sifuentes/wp-content/themes/theme_invitro/images/cuadro_banner.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 768px) {
  .mensaje_banner {
    top: 24%;
  }
  .servicios-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
    margin-top: 40px;
  }
  .nosotros-cont {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    color: #2C438B;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: 90% !important;
    transform: translateY(-50%);
    background-color: rgba(226, 226, 226, 0.473);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    cursor: pointer;
    z-index: 10;
    width: 40px !important;
    height: 40px !important;
  }
  .swiper-button-prev {
    left: 34% !important;
  }
  /* Flecha derecha */
  .swiper-button-next {
    right: 34% !important;
  }
  .text-card div {
    font-size: 16px;
  }
  .swiper-button-next2,
  .swiper-button-prev2 {
    top: 102% !important;
    transform: translateY(-50%);
  }
  /* Flecha izquierda */
  .swiper-button-prev2 {
    left: 30% !important;
  }
  /* Flecha derecha */
  .swiper-button-next2 {
    right: 30% !important;
  }
  .card-content {
    max-width: 100%;
  }
  .swiper-button-prev3,
  .swiper-button-next3 {
    display: none;
  }
  .titulo_banner {
    font-size: 30px;
  }
  .texto_banner {
    padding: 10px;
  }
  .mensaje_banner_texto::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translate(-1rem, -50%);
    width: 200px;
    height: 100%;
    background-image: url(/sifuentes/wp-content/themes/theme_invitro/images/cuadro_banner_movil.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }
}
.mensaje_banner_texto {
  padding: 20px; /* Espaciado interno para el texto */
  display: inline-block;
  position: relative;
}

.mensaje_banner_texto > * {
  position: relative;
  z-index: 0;
}

.mensaje_banner_extra {
  background-repeat: no-repeat;
  background-size: contain; /* Se ajusta al contenedor */
  background-position: left top;
  padding: 20px; /* Espaciado interno para el texto */
  display: inline-block;
}

.mensaje_banner_extra::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%; /* Cambié a "right" para que el cuadro quede al otro lado */
  transform: translate(1rem, -50%);
  width: 11rem;
  height: 100%;
  background-image: url(/sifuentes/wp-content/themes/theme_invitro/images/cuadro1.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.mensaje_banner_extra {
  padding: 20px; /* Espaciado interno para el texto */
  display: inline-block;
  position: relative;
}

.mensaje_banner_extra > * {
  position: relative;
  z-index: 0;
}

.texto_banner_extra {
  position: relative;
  top: 14%;
  padding: 20px;
  z-index: 1;
  width: 100%;
}

.texto_banner_extra h2 {
  left: 20px;
  color: #6AC0F1;
  font-weight: 900;
  font-size: 40px;
}

.nosotros-page-cont {
  padding: 40px 0 60px 0;
}

.nosotros-page-text {
  max-width: 600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.nosotros-page-titulo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
}

.nosotros-page-titulo h2 {
  position: absolute;
  color: #2C438B;
  font-weight: 900;
  font-size: 34px;
  left: 20px;
}

.nosotros-page-text p {
  font-size: 18px;
  font-weight: 400;
  color: #4D4D4D;
  text-align: justify;
}

#signo-valores {
  color: #2C438B;
  font-size: 36px;
  font-weight: 900;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}

.valores-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 100px;
}

.valores-cont {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.valores-list {
  display: flex;
  flex-direction: column;
}

.valores-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 300px;
}

.valores-lista li div {
  font-size: 28px;
  font-weight: 300;
  border-bottom: #6AC0F1 1px solid;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.valores-lista li.active div {
  font-weight: 900;
  color: #2C438B;
}

.valores-lista li div:hover {
  cursor: pointer;
}

.valores-text {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.valores-cuadro-txt {
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valores-text p {
  font-size: 22px;
  font-weight: 400;
  padding-right: 20px;
  color: #4d4d4d;
  max-width: 700px;
  text-align: justify;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.valores-text p.show {
  opacity: 1;
}

.valores-text img {
  position: absolute;
  right: 0px;
  height: 100%;
  min-height: 380px;
  max-width: 400px;
}

.valores-lista li.active {
  font-weight: 900;
  color: #2C438B;
}

.fundador {
  background: linear-gradient(to bottom, #6776A3, #2C438B);
  height: 500px;
  position: relative;
}

.fundador-cont {
  padding-bottom: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.fundador-card {
  height: auto;
  width: 60%;
  background-color: rgba(106, 191, 241, 0.2117647059);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  gap: 20px;
}

.fundador-card p {
  font-size: 24px;
  font-weight: 300;
  width: 100%;
  color: white;
}

.nombre-fundador {
  font-size: 22px;
  font-weight: 300;
  color: #6AC0F1;
  font-weight: bold;
}

.fundador-image img {
  position: absolute;
  top: -10%;
  right: 0;
  width: auto;
  height: 110%;
  z-index: 2;
}

.sombra {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 1000px 0 0 0;
  width: 50%;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.137254902);
  z-index: 1;
}

/* ---- Desktop ---- */
.valor-texto-mobile {
  display: none; /* escondemos en desktop */
}

.valores-text {
  display: flex; /* seguimos usando el cuadro al costado */
}

/* ---- Mobile ---- */
@media screen and (max-width: 768px) {
  .valores-cont {
    flex-direction: column;
    gap: 40px;
  }
  .valores-text {
    display: none; /* ocultamos cuadro lateral */
  }
  .valor-texto-mobile {
    display: none; /* oculto por defecto */
    font-size: 18px;
    color: #4d4d4d;
    margin-top: 10px;
    text-align: justify;
    padding: 0 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .valores-lista li.active .valor-texto-mobile {
    display: block; /* solo se muestra el texto del li.active */
  }
  .valores-lista {
    width: 100%;
  }
  .valores-lista li {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .fundador-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .fundador-image img {
    position: relative;
    top: -10%;
    right: 0;
    width: 100%;
    z-index: 2;
  }
  .fundador {
    height: auto;
  }
  .sombra {
    bottom: 0;
    right: 0;
    border-radius: 1000px 0 0 0;
    width: 100%;
    height: 40%;
    z-index: 1;
  }
  .fundador-cont {
    padding-bottom: 0;
  }
  .fundador {
    padding-bottom: 0;
  }
  .fundador-card {
    width: 90%;
  }
  .fundador-card p {
    font-size: 18px;
  }
  .nosotros-page-titulo h2 {
    font-size: 32px;
  }
  .nosotros-page-text {
    width: 100%;
  }
}
.video-slider {
  width: 100%;
}

.video-slider-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button.left {
  left: 0; /* se puede ajustar */
}

.nav-button.right {
  right: 0; /* se puede ajustar */
}

.video-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  transform: translateX(-50%) scale(0.8);
  opacity: 0;
  z-index: 0;
  transition: transform 0.4s ease, opacity 0.2s ease, z-index 0.2s;
}

.video-wrapper.active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 2;
}

.video-wrapper.prev {
  transform: translateX(-100%) scale(0.7);
  opacity: 0.5;
  z-index: 1;
}

.video-wrapper.next {
  transform: translateX(0%) scale(0.7);
  opacity: 0.5;
  z-index: 1;
}

.video-wrapper.hidden {
  opacity: 0;
  z-index: 0;
}

.video-wrapper.prev::after,
.video-wrapper.next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 102, 204, 0.4), rgba(0, 102, 204, 0));
  pointer-events: none; /* no bloquea clics */
  z-index: 20;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info2 {
  background-color: #ffffff;
}

.info-cont-test {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0 0 0;
}

.info-col {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  position: relative;
}

.info-row {
  width: 80%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding-top: 60px;
}

.info-col div h2 {
  font-size: 40px;
  font-weight: bold;
  color: #2C438B;
  padding: 0 30px;
  width: 200px;
}

.info-col div img {
  position: absolute;
  top: 0;
}

.texto {
  width: 700px;
  font-size: 20px;
  text-align: justify;
  line-height: 1.6;
  color: #555555;
}

.info-row div {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 6px;
  box-shadow: 4px 4px 20px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  gap: 20px;
}

.info-row-1 img {
  background-color: white;
  padding: 10px;
  border-radius: 9999px;
}

.info-row div h3 {
  width: 50%;
  font-size: 30px;
  font-weight: bold;
  color: #2C438B;
}

.info-row-item.active {
  background-color: #2C438B;
}

.info-row-item.active h3 {
  color: white;
}

.info-row-item.active img {
  background-color: white;
  padding: 10px;
  border-radius: 9999px;
}

.cont-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  gap: 40px;
  width: 100%;
  margin: auto;
}

.card-info {
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-card {
  width: 100%;
  height: 100%;
  padding: 20px;
  font-size: 16px;
  color: #555555;
  text-align: justify;
}

.card-content-test {
  background: #fff;
  max-width: 900px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  margin: 20px;
}

.card-content-test {
  display: none;
  position: relative;
}

.card-content-test.visible {
  display: flex; /* tu display original (flex) */
}

#comillas1 {
  position: absolute;
  width: 80px;
  height: auto;
  top: 30px;
  right: 30px;
}

/* Contenedor del dropdown */
.dropdown-info {
  position: relative;
  width: 140px;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header del dropdown */
.dropdown-header {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #555555;
  cursor: pointer;
}

/* Imagen de la flecha */
.dropdown-header img {
  width: 10px;
  height: auto;
}

/* Contenedor de opciones */
.dropdown-options {
  display: none; /* oculto por defecto */
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 50;
  flex-direction: column;
  gap: 0.25rem;
  background: #fff;
  border: 1px solid #eee;
  padding: 0.5rem;
  border-radius: 0.5rem;
  min-width: 140px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mostrar opciones al abrir */
.dropdown-info.open .dropdown-options {
  display: flex;
}

/* Cada opción */
.option {
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

/* Hover sobre opción */
.option:hover {
  background: #f0f0f0;
}

.paginador {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.paginador .page-number {
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 15px;
}

#paginador-numeros button {
  padding: 6px 12px;
  border: #2C438B 1px solid;
  cursor: pointer;
  font-size: 15px;
  margin: 0 2px;
}

#paginador-numeros button.active {
  padding: 6px 12px;
  border: #fff 1px solid;
  background-color: #2C438B;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  margin: 0 2px;
}

.paginador .page-number.active {
  background: #2C438B; /* cambia por tu azul principal */
  color: #fff;
  border-color: #2C438B;
}

.paginador .prev,
.paginador .next {
  background: none;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #4D4D4D;
  font-weight: 400;
}

@media (max-width: 768px) {
  .video-wrapper {
    width: 80%;
    height: 100%;
  }
  .video-wrapper.prev {
    transform: translateX(-70%) scale(0.7);
  }
  .video-wrapper.next {
    transform: translateX(-30%) scale(0.7);
  }
  .video-slider-container {
    height: 300px;
  }
  .nav-button {
    top: 110%;
  }
  .nav-button.left {
    left: 30%;
  }
  .nav-button.right {
    right: 30%;
  }
}
.hero-inter {
  width: 100%;
  background-color: #2C438B;
  position: relative;
  min-height: 620px;
}

.hero-inter-cont {
  height: calc(100vh - 190px); /* Ajusta la altura para que no cubra el header */
  width: 100%;
  overflow: hidden;
}

/* Fondo que se extiende completamente */
.img-cont {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 70%;
  z-index: 1;
  overflow: hidden;
}

.img-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Mantiene la proporción sin deformar */
}

/* Contenido encima */
.text-cont {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* Encima del fondo */
}

.line {
  width: 150px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 9999px;
  margin-bottom: 10px;
}

.text-cont p {
  font-size: 22px;
  color: white;
  font-weight: 300;
}

.text-cont a {
  text-decoration: none;
  color: #2C438B;
  font-weight: bold;
  font-size: 18px;
  background-color: #6AC0F1;
  padding: 20px 30px;
  border-radius: 6px;
  margin-top: 40px;
}

.flecha {
  display: inline-block;
  color: #2C438B;
  transition: all 0.3s ease;
}

.text-cont a:hover .flecha {
  transform: translateX(6px);
}

/* Título en la esquina */
.titulo {
  position: absolute;
  top: 6%;
  left: 0;
  background-color: #6AC0F1;
  width: auto;
  padding: 60px 20px;
  z-index: 2;
  max-width: 50%;
}

.titulo-relative {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.mensaje_banner_extra1 {
  padding: 40px 10px; /* Espaciado interno para el texto */
  display: inline-block;
  position: relative;
  z-index: 2;
}

.mensaje_banner_extra1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 11rem;
  height: 100%;
  background-image: url(/sifuentes/wp-content/themes/theme_invitro/images/cuadro-inter-mobile.webp);
  background-size: contain; /* Ajusta el tamaño de la imagen */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat;
  z-index: 200; /* Coloca la imagen detrás del texto */
  border-radius: 8px; /* Opcional: agrega bordes redondeados */
}

.texto_banner_extra1 h1 {
  left: 20px;
  color: #2C438B;
  font-weight: 900;
  font-size: 30px;
  padding: 0 20px;
}

.info-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding-bottom: 100px;
  padding-top: 100px;
}

.info-cont {
  height: auto;
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-prin {
  order: 1;
}

.info-card {
  order: 2;
}

.info-prin {
  width: 800px;
  height: auto;
}

.info-card {
  height: auto;
  position: absolute;
}

#info-card1 {
  top: 0;
  left: 0;
}

#info-card2 {
  top: 20%;
  right: 0;
}

#vector-info1 {
  position: absolute;
  top: 100px;
  left: 10%;
}

#vector-info2 {
  position: absolute;
  top: 30%;
  right: 10%;
}

.info-card-cont {
  width: 600px;
  height: auto;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 60px 40px;
  position: relative;
}

.info-card-cont h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2C438B;
}

.info-card-cont img {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 60px;
  height: auto;
}

#info-cont1 {
  align-items: end;
  justify-content: end;
}

#info-cont2 {
  align-items: start;
  justify-content: start;
}

.line2 {
  width: 150px;
  height: 4px;
  background-color: #2C438B;
  border-radius: 9999px;
}

.info-card-cont ul {
  padding-top: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card-cont ul li {
  font-size: 20px;
  font-weight: 300;
}

.otros {
  background-color: white;
}

.otros-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 40px;
}

.otros-cont-cuadros {
  width: 100%;
  height: auto;
  display: flex;
  flex: 2;
  gap: 100px;
  align-items: center;
  justify-content: flex-end;
}

.otros-cont-cuadros div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 30px;
  gap: 10px;
}

.otros-cuadro1 {
  width: 400px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  flex: 1;
}

.otros-cuadro2 {
  width: 400px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  flex: 1;
}

.otros-cont-cuadros div p {
  color: white;
  font-size: 32px;
  font-weight: bold;
  width: 70%;
}

.cuadro-btn {
  background-color: #6AC0F1;
  color: #2C438B;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}

.text-cont p::before {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #fff;
  margin: 0 auto 10px auto;
}

.otros-cont-cuadros div:hover .cuadro-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .text-cont {
    width: 95%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Encima del fondo */
  }
  .titulo-relative {
    padding: 40px 80px;
  }
  .titulo-relative h2 {
    font-size: 28px;
    width: 100%;
    padding-left: 0px;
  }
  .titulo {
    max-width: 80%;
    padding: 20px 20px;
  }
  #info-cont2, #info-cont1 {
    align-items: center;
    justify-content: center;
  }
  .info-prin {
    width: 100%;
  }
  #vector-info1, #vector-info2 {
    left: 0;
    right: 0;
    width: 100%;
    position: relative;
    top: 30%;
  }
  #info-card1, #info-card2 {
    width: 100%;
  }
  .info-card {
    position: relative;
  }
  .img-cont {
    height: 50%;
  }
  .otros-cont-cuadros {
    flex-direction: column;
  }
  .text-cont p {
    font-size: 18px;
  }
  .info-card-cont img {
    top: 4%;
    right: 4%;
    width: 40px;
  }
  .info-card {
    order: 1;
  }
  .info-prin {
    order: 2;
  }
  .info-contenedor {
    padding-top: 0;
    gap: 40px;
  }
  .otros-cont-cuadros div p {
    font-size: 24px;
    width: 100%;
  }
}
/* CONTENEDOR DE INFO SEGURO */
.info-seguro {
  background-color: #ffffff;
}

.info-cont-seguro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 120px 0;
}

.info-col-seguro {
  width: 80%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.info-col-seguro div h2 {
  font-size: 40px;
  font-weight: 900;
  color: #2C438B;
  position: relative;
  left: -80px;
  width: auto;
}

.info-col-seguro div img {
  position: relative;
  top: 0;
}

.texto {
  width: auto;
  max-width: 600px;
  font-size: 20px;
  text-align: justify;
  line-height: 1.6;
  min-width: 300px;
}

.texto p {
  color: #6776A3;
  font-size: 20px;
  font-weight: 400;
}

/* FILAS DE CATEGORÍAS */
.info-row-seguro {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 60px 60px 60px;
}

.info-row-seguro-card {
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 4px 4px 20px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  background-color: #f8f8f8;
  min-width: 200px;
}

.info-row-seguro-card img {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}

.info-row-seguro-card h3 {
  width: 50%;
  font-size: 30px;
  font-weight: bold;
  color: white;
}

/* CARD SELECCIONADA (ACTIVA) */
.info-row-seguro-card.active {
  background-color: transparent; /* para que se vea el gradiente */
  background-image: linear-gradient(0deg, #2C438B 0%, rgba(44, 68, 139, 0.7411764706) 100%);
  color: white; /* letras blancas */
}

.info-row-seguro-card.active img {
  background-color: white;
}

/* OPCIONAL: cambiar color de h1 dentro de la card si usas h1 */
.info-row-seguro-card h3 {
  color: inherit; /* toma el color según card active o no */
}

/* TITULO DE CARDS */
.titulo-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.titulo-cards h2 {
  font-size: 30px;
  font-weight: bold;
  color: #2C438B;
}

/* CARDS */
.cont-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2fr, 1fr));
  gap: 30px;
  width: 100%;
  margin: auto;
  padding: 20px 0;
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
  overflow-x: hidden;
  box-sizing: border-box;
}

.card-info-seguro {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 100%;
}

.titulo-card-info-2 p,
.titulo-card-info-2 a {
  word-wrap: break-word; /* rompe palabras largas */
}

.card-info-seguro:hover {
  background-color: #6AC0F1;
}

.card-info-seguro:hover .card-numero {
  color: white;
}

.card-info-seguro:hover .titulo-card-info h2 {
  color: white;
}

.card-info-seguro:hover .titulo-card-info-2 p {
  color: white;
}

.card-numero {
  font-size: 90px;
  font-weight: bold;
  color: #a3a3a3;
  margin-right: 20px;
}

.card-info-text {
  position: relative;
  padding: 20px;
  width: 100%;
}

.titulo-card-info h2 {
  font-size: 28px;
  font-weight: 900;
  color: #2C438B;
  max-width: 300px;
  position: relative;
  left: -50px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.titulo-card-info-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.titulo-card-info-2 p {
  font-size: 20px;
  font-weight: 300;
  color: #6776A3;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* máximo 2 líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.titulo-card-info-2 a {
  text-decoration: none;
  color: #2C438B;
  font-weight: bold;
  font-size: 20px;
}

.titulo-seguro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titulo-card-info {
  display: flex;
}

@media (max-width: 768px) {
  .cont-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .info-col-seguro {
    flex-direction: column;
    height: auto;
    gap: 40px;
    text-align: center;
  }
  .info-col-seguro div img {
    left: 0;
    top: 0;
    width: 110px;
  }
  .info-col-seguro {
    width: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
  }
  .info-col-seguro div h2 {
    width: 50%;
    text-align: start;
  }
  .info-cont-seguro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
  }
  .info-row-seguro {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px;
    justify-content: flex-start;
  }
  .info-row-seguro-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    width: auto;
    min-width: auto;
    max-width: none;
    box-shadow: none;
  }
  .info-row-seguro::-webkit-scrollbar {
    display: none;
  }
  .titulo-card-info img {
    display: none;
  }
  .titulo-card-info h2 {
    position: relative;
    left: 0;
    font-size: 20px;
  }
  .titulo-card-info {
    width: 100%;
  }
}
.blog-cont {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

.contenedor-blog {
  display: flex;
  gap: 30px;
  flex: 2;
}

.sidebar {
  flex: 0 0 250px;
  gap: 20px;
  min-width: 300px;
}

/* Contenedor del buscador */
.search-box {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

/* Input de búsqueda */
.search-box input[type=search] {
  width: 100%;
  padding: 20px 40px 20px 15px; /* espacio para la lupa */
  border: 1px solid #2c438b;
  background-color: rgba(44, 68, 139, 0.2823529412);
  font-size: 18px;
}

/* Botón de lupa */
.search-box button.btn-search {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #4d4d4d;
}

/* Opcional: hover */
.search-box button.btn-search:hover {
  color: #000;
}

.category-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 0;
  list-style: none;
  transition: all 0.3s ease-in-out;
}

.category-list.active {
  max-height: 400px;
  opacity: 1;
}

.toggle-categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease-in-out;
}

.toggle-categories img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}

.toggle-categories span {
  font-size: 26px;
  color: #2c438b;
  font-weight: 600;
}

.category-filter {
  background: rgba(106, 191, 241, 0.1215686275);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.category-filter h3 {
  font-size: 24px;
  color: #2c438b;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0;
}

.category-filter ul {
  list-style: none;
}

.category-filter li {
  margin-bottom: 10px;
}

.category-filter label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  padding: 6px 0;
  font-weight: 400;
  border-bottom: #4491cf 1px solid;
  color: #4d4d4d;
}

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

.grid-posts {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-post {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 4px;
}

/* Borde inferior que se extiende */
.card-post::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  width: 100%; /* Comienza con la mitad del tamaño */
  height: 1px;
  background: #2c438b;
  transition: width 0.4s ease;
}

.card-post:hover::after {
  width: 200%;
}

.img-blog {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.img-blog img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.card-post:hover img {
  transform: scale(1.2);
}

.card-post .categoria {
  display: inline-block;
  padding: 4px 0;
  font-size: 16px;
  border-radius: 4px;
  margin: 8px 0;
}

.categoria {
  color: #4d4d4d;
  font-weight: 300;
}

.card-post h2 {
  font-size: 24px;
  font-weight: 900;
  color: #4d4d4d;
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* máximo 2 líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.paginacion {
  margin-top: 20px;
  text-align: center;
}

/* Paginación */
.paginacion {
  align-items: center;
  display: flex;
  justify-content: end;
  text-align: center;
  margin: 30px 0 30px 30px;
}

.paginacion a,
.paginacion span {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 10px;
  color: #2c448b;
  text-decoration: none;
  font-size: 0.95rem;
}

.paginacion .current {
  background-color: #2c448b;
  color: #ffffff;
  border-color: #2c448b;
}

.cont-grid-pag {
  display: flex;
  flex-direction: column;
}

/* Borde solo para enlaces numéricos */
.paginacion a {
  border: 1px solid #2c448b;
  color: #4d4d4d;
  font-weight: 400;
}

/* Quitar borde a Prev y Next */
.paginacion a.prev,
.paginacion a.next {
  border: none;
  color: #4d4d4d;
  font-weight: 400;
}

@media (max-width: 768px) {
  .blog-cont {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
    width: 90%;
    max-width: 400px;
  }
  .sidebar {
    min-width: 100%;
  }
  .grid-posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
a {
  text-decoration: none;
  color: #203575;
}

a:hover {
  text-decoration: underline;
}

#comments {
  display: none !important;
}

.container {
  display: flex;
  gap: 100px;
}

/* Sección principal */
.main-article {
  flex: 3;
}

.main-article img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.category {
  font-size: 14px;
  margin-top: 8px;
}

.title {
  font-weight: bold;
  font-size: 22px;
  margin: 10px 0;
  color: #203575;
}

.subtitle {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  color: #203575;
}

.metadata {
  font-size: 13px;
  color: #9fa3b7;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.content-p {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-p p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #4d4d4d;
  text-align: justify;
  font-weight: 400;
}

hr {
  border: none;
  border-top: 1px solid #b3b9d4;
  margin: 50px 0 20px;
}

/* Sidebar */
.sidebar1 {
  flex: 1;
}

.sidebar1 h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #203575;
  margin: 0 0 20px 0;
}

.related-article {
  margin-bottom: 30px;
}

.related-article img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-category {
  font-size: 14px;
  color: #7d91c1;
  margin: 8px 0 5px;
}

.related-title {
  font-weight: 900;
  font-size: 20px;
  padding-bottom: 5px;
  text-align: justify;
  width: 150px;
}

/* Autor */
.author-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.author-section div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-section strong {
  font-weight: 900;
  font-size: 20px;
  color: #2c438b;
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  border-radius: 4px;
  width: 120px;
  height: 120px;
}

.author-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.author-info h1 {
  display: block;
  margin-bottom: 4px;
  color: #2c438b;
  font-weight: bold;
}

.author-info span {
  color: #6776a3;
  font-weight: 500;
  font-size: 18px;
}

/* Comentarios */
.comments-section {
  margin-top: 60px;
  border-top: 1px solid #b3b9d4;
  padding-top: 30px;
}

.comments-section h3 {
  font-weight: 900;
  font-size: 28px;
  color: #203575;
  margin-bottom: 20px;
}

.comment {
  border-top: 1px solid #b3b9d4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0;
}

.titulo-comment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.comment:first-child {
  border-top: none;
}

.comment div img {
  width: 40px;
  height: auto;
  fill: #7db3e8;
  margin-top: 4px;
}

.comment-content {
  font-size: 18px;
  font-weight: 300;
  color: #333;
  text-align: justify;
}

.comment-author {
  font-weight: 700;
  color: #203575;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.comment-author .says {
  display: none;
}

.comment-meta,
.reply {
  display: none !important;
}

a.url {
  font-weight: 900;
  color: #203575;
  font-size: 18px;
}

cite.fn {
  font-weight: 900;
  color: #203575;
  font-size: 18px;
  padding-left: 10px;
}

.comment-meta {
  display: none !important;
}

/* Formulario comentario */
.comment-form {
  padding-top: 30px;
}

.comment-form h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
  color: #203575;
}

.logged-in-as {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #2c438b; /* azul blog (puedes cambiarlo) */
}

.comment-form-comment textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid #2c448b; /* borde azul */
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  resize: vertical;
}

.comment-form-comment textarea:focus {
  outline: none;
}

.comment-form-comment textarea #comment {
  color: #2c438b;
}

#submit {
  margin-top: 10px;
  background-color: #6ac0f1;
  width: auto;
  padding: 16px 20px;
  border-radius: 6px;
  color: #2c438b;
  font-weight: 900;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.comment-form-fields-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-form-fields-container p {
  width: 100%;
  flex: 1;
}

.comment-form-fields-container p input {
  width: 100%;
  border: none;
  padding: 10px;
  border-bottom: 1px solid #2c448b;
  font-size: 16px;
  color: #2c448b;
}

.comment-form-author input:focus,
.comment-form-email input:focus {
  outline: none;
}

textarea {
  width: 100%;
  height: 200px;
  padding: 12px;
  font-size: 18px;
  border: 1px solid #203575;
  border-radius: 4px;
  resize: vertical;
  color: #555;
  margin-bottom: 20px;
}

textarea::-moz-placeholder {
  color: #b3b9d4;
}

textarea::placeholder {
  color: #b3b9d4;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  border-bottom: 1px solid #b3b9d4;
}

.form-group input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #203575;
}

label {
  font-weight: 300;
  font-size: 18px;
  padding-top: 20px;
  color: #203575;
  display: block;
}

.btn-submit {
  margin-top: 20px;
  background-color: #5a8cd8;
  color: #203575;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #5a8cd8;
}

@media (max-width: 768px) {
  .sidebar1 {
    display: none;
  }
  .main-article img {
    height: auto;
  }
  .content-p p {
    font-size: 16px;
  }
}
p.descripcion {
  margin: 0 auto 45px;
  text-align: center;
  max-width: 700px;
  color: #666;
}

h3 {
  color: #0050A8;
  font-size: 18px;
  margin: 35px 0 18px;
}

.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 18px;
}

.campo {
  flex: 1;
  min-width: 260px;
}

label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.inputr {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 15px;
  background: transparent;
}

select {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 15px;
  background: transparent;
}

textarea {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 15px;
  background: transparent;
  min-height: 100px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 35px;
  margin-bottom: 20px;
}

.radio-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}

.upload {
  border: 2px dashed #0050A8;
  padding: 42px;
  text-align: center;
  margin-top: 10px;
  color: #0050A8;
  border-radius: 5px;
  cursor: pointer;
}

.upload svg {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 8px;
  fill: #0050A8;
}

.div-boton {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boton-reclamos {
  background-color: #6AC0F1;
  width: auto;
  padding: 15px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.boton-reclamos .flecha {
  color: #2C438B;
  transition: all 0.3s ease;
  padding-left: 10px;
}
.boton-reclamos:hover .flecha {
  transform: translateX(6px);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #4d4d4d;
}

input::placeholder,
textarea::placeholder,
select {
  color: #4d4d4d;
}

select option {
  color: #4d4d4d;
}

input[type=date]::-webkit-datetime-edit {
  color: #4d4d4d;
}

input[type=date]::-moz-placeholder {
  color: #4d4d4d;
}

input[type=date]::placeholder {
  color: #4d4d4d;
}

.btn-oculto {
  display: none;
}

.wpcf7-form h3 {
  color: #2C438B;
  font-size: 22px;
  font-weight: 900;
  padding: 0 20px;
}

.wpcf7-form {
  flex-direction: column;
}

@media (max-width: 768px) {
  .fila {
    flex-direction: column;
  }
}
.bloque-texto h3 {
  margin: 35px 0 15px;
  color: #1a3f87;
  font-size: 20px;
}

.bloque-texto ul {
  margin: 15px 0 25px 0;
  padding-left: 20px;
}

.bloque-texto p {
  text-align: justify;
}

.bloque-texto li {
  margin-bottom: 8px;
  text-align: justify;
  list-style-type: circle;
}

.btn-contenedor {
  text-align: center;
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.boton-legal {
  background-color: #6AC0F1;
  width: auto;
  padding: 15px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.boton-legal .flecha {
  color: #2C438B;
  transition: all 0.3s ease;
  padding-left: 10px;
}
.boton-legal:hover .flecha {
  transform: translateX(6px);
}

.bloque-texto h3 {
  color: #2C438B;
  font-size: 22px;
  font-weight: 900;
}

.contacto-form-g {
  width: 100%;
  padding: 0 20px;
}

input {
  color: #0019d8;
}

p.descripcion {
  margin: 0 auto 45px;
  text-align: center;
  max-width: 700px;
  color: #666;
}

.form-gestion {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
}

.wpcf7-radio {
  border-bottom: none !important;
}

h3 {
  color: #0050A8;
  font-size: 18px;
  margin: 35px 0 18px;
}

.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 18px;
  width: 100%;
}

.wpcf7-form h3 {
  width: 100%;
}

.campo {
  flex: 1;
  min-width: 260px;
}

label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.input {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 15px;
  background: transparent;
}

select {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 15px;
  background: transparent;
}

textarea {
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 15px;
  background: transparent;
  min-height: 100px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 35px;
  margin-bottom: 20px;
  width: 100%;
}

.radio-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}

.upload {
  border: 2px dashed #0050A8;
  padding: 42px;
  text-align: center;
  margin-top: 10px;
  color: #0050A8;
  border-radius: 5px;
  cursor: pointer;
}

.upload svg {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 8px;
  fill: #0050A8;
}

.div-boton {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 35px;
  border: none;
  padding: 13px 40px;
  background: #0097a8;
  color: #001db0;
  font-size: 15px;
  cursor: pointer;
  border-radius: 4px;
  width: auto;
}

/* color de todos los placeholders */
/* Color del texto que escribe el usuario */
input,
textarea,
select {
  color: #4d4d4d; /* plomo */
}

/* Color de los placeholders */
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #4D4D4D; /* plomo */
  opacity: 1; /* fuerza que se vea igual en todos los navegadores */
}
input::placeholder,
textarea::placeholder {
  color: #4D4D4D; /* plomo */
  opacity: 1; /* fuerza que se vea igual en todos los navegadores */
}

/* Color de las opciones dentro del select */
select option {
  color: #4d4d4d; /* plomo */
}

/* Para input type date en Chrome/Safari */
input[type=date]::-webkit-datetime-edit,
input[type=date]::-webkit-input-placeholder {
  color: #4d4d4d;
}

/* Para Firefox */
input[type=date]::-moz-placeholder {
  color: #4d4d4d;
  opacity: 1;
}

/* Para Edge */
input[type=date]:-ms-input-placeholder {
  color: #4d4d4d;
}

.div-boton {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-oculto {
  display: none;
}

.boton-g {
  background-color: #6AC0F1;
  width: auto;
  padding: 15px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.boton-g .flecha {
  color: #2C438B;
  transition: all 0.3s ease;
  padding-left: 10px;
}
.boton-g:hover .flecha {
  transform: translateX(6px);
}

.contacto-form-g h3 {
  color: #2C438B;
  font-size: 22px;
  font-weight: 900;
}

.wpcf7 input[type=file] {
  cursor: pointer;
  display: none;
}

.descripcion {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
}

.cont-gestion1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  width: 90%;
}

/* Título izquierdo con borde estilizado */
.titulo-lateral {
  position: relative;
  display: inline-block;
  padding: 35px 0;
  width: 100%;
}

.titulo-lateral h2 {
  position: absolute;
  top: 30%;
  left: 20px;
  color: #1a3f87;
  font-size: 40px;
  margin: 0;
  line-height: 1.2;
  font-weight: bold;
  width: 420px;
}

/* Tarjetas scrollables */
.scroll-pasos {
  width: 100%;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 15px;
  max-width: 700px;
}

.scroll-pasos::-webkit-scrollbar {
  width: 4px;
}

.scroll-pasos::-webkit-scrollbar-thumb {
  background: #1a3f87;
  border-radius: 2px;
}

.paso-card {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 20px 0px;
  margin-bottom: 35px;
  align-items: center;
  height: 240px;
  width: 100%;
}

.numero {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  transform: translateX(60%);
}

.cuadro-num {
  background: #6c78a1;
  color: #fff;
  text-align: center;
  padding: 12px 18px;
  width: 75px;
}

.numero span {
  font-size: 13px;
  display: block;
}

.numero strong {
  font-size: 30px;
  display: block;
  line-height: 1;
}

.infog {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
}

.infog h4 {
  margin: 0 0 7px 0;
  color: #1a3f87;
  font-size: 26px;
}

.infog p {
  margin: 0;
  color: #4d4d4d;
  font-size: 20px;
}

.cont-btn-reclamo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.btn-reclamo {
  background-color: #6AC0F1;
  width: auto;
  padding: 15px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-reclamo .flecha {
  color: #2C438B;
  transition: all 0.3s ease;
  padding-left: 10px;
}
.btn-reclamo:hover .flecha {
  transform: translateX(6px);
}

@media (max-width: 992px) {
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .titulo-lateral {
    padding: 0;
    width: 70%;
    justify-content: center;
    align-items: center;
  }
  .titulo-lateral h2 {
    text-align: center;
    font-size: 26px;
    width: auto;
    position: relative;
    padding: 20px 0;
  }
  .paso-card {
    min-height: 260px;
    height: auto;
  }
  .titulo-lateral img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100px;
  }
}
.cont-preguntas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.titulo_preguntas {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  color: #4D4D4D;
  max-width: 700px;
}

.preguntas {
  padding: 40px 0;
}

.preguntas ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .preguntas ul {
    grid-template-columns: 1fr;
  }
}
.gracias-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 0;
}

.volver {
  background-color: #fff;
  width: auto;
  padding: 15px 20px;
  border-radius: 6px;
  color: #2C438B;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.volver .flecha {
  color: #2C438B;
  transition: all 0.3s ease;
  padding-left: 10px;
}
.volver:hover .flecha {
  transform: translateX(6px);
}/*# sourceMappingURL=app.css.map */