/* ================= RESET GENERAL ================= */
/* Quita márgenes y paddings por defecto del navegador */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= ESTILOS GENERALES ================= */
/* Fuente general de toda la página */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  width: 100%;
  min-height: 80px;
  /* Espaciado fluido a los lados */
  padding: 15px clamp(20px, 4vw, 42px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 50;

  /* Fondo ligeramente más sólido para que no se pierdan los textos */
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Sombrita elegante */
}

/* ================= LOGO ================= */
.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
  /* Evita que el logo se aplaste al hacer zoom */
}

.header-logo img {
  /* Escala fluidamente entre 160px y 260px dependiendo de la pantalla */
  width: clamp(160px, 18vw, 260px);
  height: auto;
  display: block;
}

/* ================= NAVEGACIÓN ================= */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 40px);
  /* Separación fluida para que no choquen */
}

.header-nav a {
  text-decoration: none;
}

.header-nav>a:not(.btn-whatsapp-img) {
  color: #8d8d8d;
  /* Tamaños y espacios sensatos para un menú */
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: 2px;
  transition: color 0.2s ease;
  white-space: nowrap;
  /* Evita que las palabras se partan en dos renglones */
}

.header-nav>a:not(.btn-whatsapp-img):hover {
  color: #00a9df;
}

/* ================= BOTÓN WHATSAPP COMO IMAGEN ================= */
.btn-whatsapp-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  /* Evita que el botón se corte o se apachurre */
}

.btn-whatsapp-img img {
  /* Escala fluidamente para caber siempre en pantalla */
  width: clamp(170px, 16vw, 240px);
  height: auto;
  display: block;
}

.btn-whatsapp-img:hover {
  transform: translateY(-2px);
}

/* ================= BOTÓN HAMBURGUESA ================= */
.menu-toggle {
  display: none;
  width: 40px;
  height: 35px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 80;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  margin: 6px 0;
  background: #00a9df;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ================= RESPONSIVE MÓVIL (Menú Hamburguesa) ================= */
@media (max-width: 950px) {
  .header {
    min-height: 75px;
    padding: 15px 25px;
  }

  .header-logo img {
    width: 180px;
  }

  .menu-toggle {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 25px 20px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: all 0.3s ease;
  }

  .header-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-nav>a:not(.btn-whatsapp-img) {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .btn-whatsapp-img img {
    width: 220px;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 480px) {
  .header {
    padding: 12px 15px;
  }

  .header-logo img {
    width: 150px;
  }

  .menu-toggle {
    width: 35px;
  }

  .header-nav>a:not(.btn-whatsapp-img) {
    font-size: 18px;
  }

  .btn-whatsapp-img img {
    width: 200px;
  }
}

/* ================= HERO PRINCIPAL ================= */
/* Sección principal debajo del header */
.hero-home {
  width: 100%;
  min-height: calc(100vh - 104px);
  position: relative;

  background-image:
    linear-gradient(90deg,
      rgba(77, 218, 162, 0.82) 0%,
      rgba(134, 240, 155, 0.66) 43%,
      rgba(255, 255, 255, 0.30) 65%,
      rgba(255, 255, 255, 0.05) 100%),
    url("../img/FONDO\ SIN\ DEGRADADO.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Contenedor del contenido */
/* Se carga hacia la izquierda para que el título tenga más espacio */
.hero-home-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 35px 40px 55px 13.5%;
  position: relative;
  z-index: 2;
}

.hero-home-title {
  color: #ffffff;
  font-size: clamp(46px, 4.1vw, 66px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
  width: 100%;
  margin-bottom: 26px;
  white-space: nowrap;

  /* ¡AQUÍ ESTÁ LA MAGIA! Sombra doble para máximo contraste */
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4), 0px 0px 30px rgba(0, 80, 100, 0.6);
}

/* Contenedor del mono y texto */
.hero-home-info {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: -95px;
  margin-bottom: 26px;
}

/* Imagen del mono */
.hero-home-mono {
  width: clamp(200px, 16vw, 280px);
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* Texto descriptivo */
.hero-home-text {
  color: #00649c;
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.34;
  font-weight: 300;
  letter-spacing: 1.4px;
  /* ¡AQUÍ ESTÁ LA MAGIA! Sombra doble para máximo contraste */
  text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.811), 0px 0px 30px rgba(255, 255, 255, 0.915);
}

/* Contenedor del botón centrado */
.hero-home-button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2px;
  padding-right: 18%;
}

/* Botón WhatsApp como imagen completa */
.hero-whatsapp-img {
  display: inline-flex;
  line-height: 0;
  transition: transform 0.2s ease;
}

.hero-whatsapp-img img {
  width: clamp(230px, 19vw, 305px);
  height: auto;
  display: block;
}

.hero-whatsapp-img:hover {
  transform: translateY(-2px);
}

/* ================= LAPTOP NORMAL ================= */
@media (max-width: 1440px) {
  .hero-home-content {
    padding-left: 13%;
    padding-top: 28px;
    padding-bottom: 50px;
  }

  .hero-home-title {
    font-size: 58px;
    max-width: 1060px;
  }

  .hero-home-text {
    font-size: 26px;
  }

  .hero-home-mono {
    width: 240px;
  }

  .hero-home-info {
    margin-left: -70px;
  }

  .hero-whatsapp-img img {
    width: 275px;
  }
}

/* ================= LAPTOP CHICA ================= */
@media (max-width: 1280px) {
  .hero-home {
    min-height: calc(100vh - 100px);
  }

  .hero-home-content {
    padding-left: 9%;
    padding-right: 28px;
  }

  .hero-home-title {
    font-size: 52px;
    max-width: 980px;
  }

  .hero-home-text {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .hero-home-mono {
    width: 220px;
  }

  .hero-home-info {
    margin-left: -35px;
    gap: 28px;
  }

  .hero-home-button {
    padding-right: 10%;
  }

  .hero-whatsapp-img img {
    width: 260px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .hero-home {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-home-content {
    padding: 55px 32px 65px;
  }

  .hero-home-title {
    font-size: 45px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-home-info {
    margin-left: 0;
    justify-content: center;
  }

  .hero-home-text {
    font-size: 22px;
  }

  .hero-home-mono {
    width: 205px;
  }

  .hero-home-button {
    padding-right: 0;
  }
}

/* ================= MÓVIL ================= */
@media (max-width: 768px) {
  .hero-home {
    background-position: center right;
  }

  .hero-home-content {
    padding: 45px 22px 58px;
  }

  .hero-home-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .hero-home-info {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
  }

  .hero-home-text {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.5px;
  }

  .hero-home-text br {
    display: none;
  }

  .hero-home-mono {
    width: 195px;
  }

  .hero-whatsapp-img img {
    width: 245px;
  }
}

/* ================= MÓVIL CHICO ================= */
@media (max-width: 480px) {
  .hero-home-content {
    padding: 40px 18px 55px;
  }

  .hero-home-title {
    font-size: 31px;
  }

  .hero-home-text {
    font-size: 18px;
  }

  .hero-home-mono {
    width: 175px;
  }

  .hero-whatsapp-img img {
    width: 225px;
  }
}

/* ================= MEJORA DE CONTRASTE EN MÓVIL ================= */
@media (max-width: 768px) {
  .hero-home::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Capa para oscurecer un poco el fondo */
    background: linear-gradient(180deg,
        rgba(0, 118, 120, 0.50) 0%,
        rgba(80, 210, 155, 0.65) 45%,
        rgba(0, 110, 150, 0.55) 100%);

    z-index: 1;
  }

  .hero-home-content {
    position: relative;
    z-index: 2;
  }

  .hero-home-title {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  }

  .hero-home-text {
    color: #005f91;
    background: rgba(255, 255, 255, 0.68);
    padding: 18px 16px;
    border-radius: 18px;
    text-shadow: none;
  }
}

@media (max-width: 480px) {
  .hero-home::before {
    background: linear-gradient(180deg,
        rgba(0, 118, 120, 0.58) 0%,
        rgba(80, 210, 155, 0.72) 45%,
        rgba(0, 110, 150, 0.62) 100%);
  }

  .hero-home-text {
    background: rgba(255, 255, 255, 0.75);
  }
}

/* ================= SECCIÓN CONTADORES ================= */
.stats-section {
  width: 100%;
  padding: 70px 40px;
  background: #ffffff;
}

/* Caja verde principal */
.stats-box {
  width: 100%;
  max-width: 1420px;
  height: 250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  align-items: end;

  background: #d3f8d7;
  border-radius: 58px;

  box-shadow: 16px 18px 18px rgba(0, 155, 210, 0.18);
  overflow: visible;

  /* Para posicionar las barras azules */
  position: relative;
}

/* Barra azul izquierda */
.stats-box::before {
  content: "";
  position: absolute;

  left: 32.47%;
  top: 24px;

  width: 1.5px;
  height: 200px;

  background: #00a9df;
  z-index: 5;
}

/* Barra azul derecha */
.stats-box::after {
  content: "";
  position: absolute;

  left: 67.53%;
  top: 24px;

  width: 1.5px;
  height: 200px;

  background: #00a9df;
  z-index: 5;
}

/* Cada bloque de contador */
.stat-item {
  height: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  position: relative;
}

/* Apaga líneas antiguas si todavía quedaron de otro CSS */
.stat-item::after {
  display: none !important;
}

/* Bloque central más alto, pero con la misma base que los demás */
.stat-center {
  height: 330px;
  background: #d3f8d7;

  margin-top: -80px;
  margin-bottom: 0;

  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* Números grandes */
.stat-item h2 {
  color: #0088c9;
  font-size: clamp(76px, 8vw, 128px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -4px;
}

/* Textos debajo de los números */
.stat-item p {
  color: #171d44;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 0.95;
  font-weight: 900;
  margin-top: 14px;
}

/* Texto central más grande */
.stat-center p {
  font-size: clamp(36px, 3.3vw, 52px);
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .stats-section {
    padding: 55px 34px;
  }

  .stats-box {
    max-width: 1180px;
    height: 210px;
    border-radius: 50px;
  }

  .stats-box::before,
  .stats-box::after {
    top: 22px;
    height: 166px;
  }

  .stats-box::before {
    left: 32.47%;
  }

  .stats-box::after {
    left: 67.53%;
  }

  .stat-item {
    height: 210px;
  }

  .stat-center {
    height: 280px;
    margin-top: -70px;
    margin-bottom: 0;
  }

  .stat-item h2 {
    font-size: 96px;
  }

  .stat-item p {
    font-size: 34px;
  }

  .stat-center p {
    font-size: 42px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .stats-section {
    padding: 50px 24px;
  }

  .stats-box {
    grid-template-columns: 1fr;
    max-width: 520px;
    height: auto;
    border-radius: 42px;
    overflow: hidden;
  }

  /* Oculta barras verticales en tablet/móvil */
  .stats-box::before,
  .stats-box::after {
    display: none;
  }

  .stat-item,
  .stat-center {
    height: 210px;
    margin: 0;
    box-shadow: none;
  }

  .stat-center {
    order: -1;
  }

  .stat-item:not(:last-child) {
    border-bottom: 1.5px solid #00a9df;
  }

  .stat-item h2 {
    font-size: 88px;
  }

  .stat-item p,
  .stat-center p {
    font-size: 34px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 520px) {
  .stats-section {
    padding: 42px 18px;
  }

  .stats-box {
    border-radius: 34px;
  }

  .stat-item,
  .stat-center {
    height: 180px;
  }

  .stat-item h2 {
    font-size: 72px;
    letter-spacing: -2px;
  }

  .stat-item p,
  .stat-center p {
    font-size: 28px;
  }
}

/* ================= SECCIÓN EMPRESAS / LOGOS ================= */
/* Sección general */
.clients-section {
  width: 100%;
  background: #ffffff;
  padding: 10px 0 55px;
  overflow: hidden;
}

/* Título principal */
.clients-title {
  color: #0088c9;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

/* Contenedor visible del carrusel */
.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Degradado lateral izquierdo para que entren suave */
.clients-carousel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Degradado lateral derecho para que salgan suave */
.clients-carousel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Track que se mueve */
.clients-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;

  animation: clientsMove 26s linear infinite;
}

/* Pausa al pasar el mouse */
.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

/* Caja de cada logo */
.client-logo {
  width: 190px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* Imagen de cada logo */
.client-logo img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  display: block;

  filter: grayscale(100%);
  opacity: 0.95;
}

/* Animación infinita */
@keyframes clientsMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .clients-section {
    padding: 5px 0 48px;
  }

  .clients-title {
    font-size: 42px;
    margin-bottom: 48px;
  }

  .clients-track {
    gap: 55px;
    animation-duration: 24s;
  }

  .client-logo {
    width: 165px;
    height: 90px;
  }

  .client-logo img {
    max-height: 74px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .clients-section {
    padding: 5px 0 42px;
  }

  .clients-title {
    font-size: 36px;
    padding: 0 24px;
    margin-bottom: 35px;
  }

  .clients-track {
    gap: 42px;
    animation-duration: 22s;
  }

  .client-logo {
    width: 145px;
    height: 82px;
  }

  .client-logo img {
    max-height: 66px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 520px) {
  .clients-section {
    padding: 0 0 35px;
  }

  .clients-title {
    font-size: 28px;
    padding: 0 18px;
    margin-bottom: 28px;
  }

  .clients-carousel::before,
  .clients-carousel::after {
    width: 45px;
  }

  .clients-track {
    gap: 35px;
    animation-duration: 20s;
  }

  .client-logo {
    width: 125px;
    height: 72px;
  }

  .client-logo img {
    max-height: 58px;
  }
}

/* ================= SECCIÓN 15 AÑOS ================= */
/* Sección verde con mono a la izquierda y texto a la derecha */
.experience-section {
  width: 100%;
  min-height: 430px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(110deg,
      #35a9a5 0%,
      #57cfa4 48%,
      #b8f6b8 100%);

  overflow: visible;
  margin-top: 40px;
  margin-bottom: 55px;
}

/* Mono izquierdo */
.experience-mono {
  position: absolute;
  left: 6%;
  bottom: -38px;

  width: clamp(300px, 31vw, 520px);
  height: auto;

  z-index: 2;
}

/* Contenedor del texto */
.experience-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 860px;

  margin-left: 27%;
  padding: 58px 40px;

  text-align: center;
  color: #ffffff;
}

/* Texto "Más de" */
.experience-small {
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 14px;
}

/* Texto "15 AÑOS" */
.experience-title {
  font-size: clamp(84px, 8vw, 132px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* Texto descriptivo */
.experience-text {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.16;
  font-weight: 300;
}

.experience-text strong {
  font-weight: 800;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .experience-section {
    min-height: 380px;
    margin-top: 35px;
    margin-bottom: 50px;
  }

  .experience-mono {
    left: 5%;
    bottom: -34px;
    width: 390px;
  }

  .experience-content {
    max-width: 760px;
    margin-left: 29%;
    padding: 45px 35px;
  }

  .experience-small {
    font-size: 38px;
  }

  .experience-title {
    font-size: 104px;
  }

  .experience-text {
    font-size: 36px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 1024px) {
  .experience-section {
    min-height: auto;
    padding: 40px 24px 0;
    flex-direction: column;
    overflow: hidden;
  }

  .experience-mono {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;

    width: 320px;
    margin-top: 20px;
  }

  .experience-content {
    order: 1;
    margin-left: 0;
    max-width: 100%;
    padding: 20px 20px 10px;
  }

  .experience-small {
    font-size: 34px;
  }

  .experience-title {
    font-size: 82px;
  }

  .experience-text {
    font-size: 30px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .experience-section {
    padding: 36px 18px 0;
    margin-top: 25px;
    margin-bottom: 38px;
  }

  .experience-content {
    padding: 10px 0 0;
  }

  .experience-small {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .experience-title {
    font-size: 66px;
    margin-bottom: 18px;
  }

  .experience-text {
    font-size: 24px;
    line-height: 1.22;
  }

  .experience-text br {
    display: none;
  }

  .experience-mono {
    width: 260px;
    margin-top: 18px;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 420px) {
  .experience-title {
    font-size: 56px;
  }

  .experience-text {
    font-size: 21px;
  }

  .experience-mono {
    width: 230px;
  }
}

/* ================= SECCIÓN VIDEO ================= */
/* Contenedor general del video */
.video-section {
  width: 100%;
  background: #ffffff;
  padding: 35px 40px 70px;
}

/* Caja del video */
.video-wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;

  position: relative;
  overflow: hidden;

  background: #eeeeee;
}

/* Video */
.clean-video {
  width: 100%;
  height: auto;
  min-height: 430px;
  display: block;

  object-fit: cover;
  background: #eeeeee;
}

/* Botón play encima */
.video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 112px;
  height: 112px;

  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Triángulo play */
.video-play-btn span {
  width: 0;
  height: 0;

  border-top: 38px solid transparent;
  border-bottom: 38px solid transparent;
  border-left: 62px solid rgba(255, 255, 255, 0.82);

  margin-left: 12px;
}

/* Hover */
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, 0.24);
}

/* Cuando el video está reproduciéndose, ocultamos el botón */
.video-wrapper.is-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .video-section {
    padding: 30px 34px 60px;
  }

  .video-wrapper {
    max-width: 1080px;
  }

  .clean-video {
    min-height: 390px;
  }

  .video-play-btn {
    width: 96px;
    height: 96px;
  }

  .video-play-btn span {
    border-top-width: 32px;
    border-bottom-width: 32px;
    border-left-width: 52px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .video-section {
    padding: 25px 24px 52px;
  }

  .clean-video {
    min-height: 320px;
  }

  .video-play-btn {
    width: 82px;
    height: 82px;
  }

  .video-play-btn span {
    border-top-width: 27px;
    border-bottom-width: 27px;
    border-left-width: 44px;
    margin-left: 9px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 520px) {
  .video-section {
    padding: 20px 18px 42px;
  }

  .clean-video {
    min-height: 230px;
  }

  .video-play-btn {
    width: 68px;
    height: 68px;
  }

  .video-play-btn span {
    border-top-width: 22px;
    border-bottom-width: 22px;
    border-left-width: 36px;
    margin-left: 7px;
  }
}


/* ================= SECCIÓN EN CLEAN CITY ================= */
.focus-section {
  width: 100%;
  background: #ffffff;
  padding: 20px 34px 70px;
  overflow: hidden;
}

/* Encabezado superior: En + logo */
.focus-heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}

/* Texto "En" */
.focus-en {
  color: #0088c9;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
}

/* Logo */
.focus-logo {
  width: clamp(230px, 24vw, 330px);
  height: auto;
  display: block;
}

/* Título */
.focus-title {
  color: #0088c9;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  margin-bottom: 42px;
}

/* ================= GRID DE CARDS ================= */
.focus-grid {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* Card completa */
.focus-card {
  width: 100%;
  min-height: 395px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: center;
}

/* ================= IMÁGENES ================= */
.focus-image-box {
  width: 100%;
  height: 255px;
  border-radius: 34px;
  overflow: hidden;
  background: #eaf7f5;

  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.10);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Imagen interna */
.focus-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 0.55s ease;
}

/* Animación al pasar el mouse */
.focus-card:hover .focus-image-box {
  transform: scaleX(1.08) scaleY(1.03);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
}

.focus-card:hover .focus-image-box img {
  transform: scale(1.12);
}

/* ================= CUADROS DE TEXTO ================= */
/* Todos los cuadros quedan del mismo tamaño y al mismo nivel */
/* ================= CUADROS DE TEXTO ================= */
/* ================= CUADROS DE TEXTO ================= */
.focus-label {
  width: 96%;
  margin: 34px auto 0;
  padding: 15px 10px !important;
  /* Relleno para que respire el texto */

  display: flex;
  align-items: center;
  justify-content: center;

  /* LA MAGIA: Obliga a todas las placas a crecer y medir exactamente lo mismo */
  flex-grow: 1 !important;
  height: auto !important;

  background: linear-gradient(115deg,
      #34aaa8 0%,
      #6edaa9 55%,
      #b8f6b8 100%);

  color: #ffffff;
  text-align: center;
}

/* Texto interno */
/* Modificado a "normal" para que fluya en dos líneas, y aumentada la fuente */
.focus-label span {
  display: block;

  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.25;
  font-weight: 900;

  white-space: normal;
  padding: 0 10px;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .focus-section {
    padding: 18px 28px 60px;
  }

  .focus-heading {
    margin-bottom: 12px;
  }

  .focus-logo {
    width: 290px;
  }

  .focus-en {
    font-size: 50px;
  }

  .focus-title {
    font-size: 48px;
    margin-bottom: 36px;
  }

  .focus-grid {
    max-width: 1160px;
    gap: 22px;
  }

  .focus-card {
    min-height: 365px;
  }

  .focus-image-box {
    height: 235px;
    border-radius: 30px;
  }

  .focus-label {
    width: 96%;
    height: 96px;
    margin-top: 30px;
    padding: 0 8px;
  }

  .focus-label span {
    font-size: clamp(15px, 1.5vw, 20px);
    line-height: 1.2;
    white-space: normal;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 1024px) {
  .focus-section {
    padding: 20px 24px 55px;
  }

  .focus-heading {
    gap: 20px;
  }

  .focus-logo {
    width: 250px;
  }

  .focus-en {
    font-size: 44px;
  }

  .focus-title {
    font-size: 40px;
    margin-bottom: 34px;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    gap: 34px 26px;
  }

  .focus-card {
    min-height: 360px;
  }

  .focus-image-box {
    height: 240px;
  }

  .focus-label {
    width: 92%;
    height: 96px;
    margin-top: 24px;
  }

  .focus-label span {
    font-size: 18px;
    line-height: 1.2;
    white-space: normal;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .focus-section {
    padding: 18px 18px 45px;
  }

  .focus-heading {
    gap: 12px;
    margin-bottom: 14px;
  }

  .focus-logo {
    width: 190px;
  }

  .focus-en {
    font-size: 36px;
  }

  .focus-title {
    font-size: 31px;
    margin-bottom: 30px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 34px;
  }

  .focus-card {
    min-height: auto;
  }

  .focus-image-box {
    height: 245px;
    border-radius: 28px;
  }

  .focus-card:hover .focus-image-box {
    transform: scale(1.03);
  }

  .focus-label {
    width: 94%;
    height: 100px;
    margin-top: 20px;
  }

  .focus-label span {
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 420px) {
  .focus-logo {
    width: 165px;
  }

  .focus-en {
    font-size: 32px;
  }

  .focus-title {
    font-size: 28px;
  }

  .focus-image-box {
    height: 220px;
  }

  .focus-label span {
    font-size: 14.5px;
  }
}

/* ================= SECCIÓN SERVICIOS ================= */
.services-section {
  width: 100%;
  background: #ffffff;
  padding: 35px 20px 70px;
  overflow: hidden;
}

/* ================= ENCABEZADO SERVICIOS ================= */
.services-heading {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

/* Texto "Servicios" */
.services-heading h2 {
  font-size: clamp(58px, 7vw, 92px);
  line-height: 1;
  font-weight: 900;

  background: linear-gradient(90deg, #39aaa8 0%, #9cf0a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  margin: 0;
}

/* Mono del encabezado */
.services-mono {
  width: clamp(120px, 14vw, 190px);
  height: auto;
  display: block;
}

/* ================= SERVICIO PRINCIPAL ================= */
/* Card gris de Personal fijo de limpieza */
.main-service-card {
  width: calc(100% - 40px);
  max-width: 1380px;
  min-height: 205px;
  margin: 0 auto 30px;

  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;

  background: #eeeeee;
  border-radius: 34px;
  overflow: visible;
  position: relative;
}

/* Imagen izquierda */
.main-service-img {
  width: 260px;
  height: 205px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.main-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Contenido derecho */
.main-service-content {
  padding: 26px 34px 26px 22px;
}

/* Título Personal fijo */
.main-service-content h3 {
  color: #005f88;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 24px;
}

/* Cuadro blanco que sobresale poquito sobre la imagen */
.main-service-text {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0 18px 18px 0;

  margin-left: -38px;
  padding: 26px 32px 26px 56px;

  position: relative;
  z-index: 3;
}

/* Texto principal en 3 renglones */
.main-service-text p {
  color: #006f9f;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin: 0;
  white-space: nowrap;
}

/* ================= SERVICIOS ESPECIALIZADOS ================= */
/* Card azul clara */
.special-services-card {
  width: calc(100% - 40px);
  max-width: 1380px;
  min-height: 250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: stretch;

  background: #e7f2fa;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

/* Contenido izquierdo de servicios especializados */
.special-services-content {
  padding: 30px 28px 24px 58px;
  position: relative;
  z-index: 3;
}

/* Título servicios especializados */
.special-services-content h3 {
  color: #00bce8;
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 22px;
}

/* Lista de cuadros blancos */
.special-services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;

  /* Hace que el último bloque se monte sobre la imagen */
  width: calc(100% + 185px);
  position: relative;
  z-index: 4;
}

/* Cada cuadro blanco */
/* Modificado a "normal" para que fluya en dos líneas, y aumentada la fuente */
.special-service-item {
  min-height: 120px;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;

  color: #0088c9;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.25;
  font-weight: 900;
  text-align: center;

  white-space: normal;
}

/* Imagen derecha */
.special-services-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.special-services-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .services-section {
    padding: 30px 18px 60px;
  }

  .services-heading {
    margin-bottom: 24px;
  }

  .main-service-card,
  .special-services-card {
    width: calc(100% - 36px);
    max-width: 1240px;
  }

  .main-service-card {
    grid-template-columns: 235px 1fr;
    min-height: 190px;
  }

  .main-service-img {
    width: 235px;
    height: 190px;
  }

  .main-service-content {
    padding: 24px 30px 24px 20px;
  }

  .main-service-content h3 {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .main-service-text {
    margin-left: -34px;
    padding: 24px 28px 24px 50px;
  }

  .main-service-text p {
    font-size: 18px;
  }

  .special-services-card {
    grid-template-columns: 1fr 270px;
    min-height: 230px;
  }

  .special-services-content {
    padding: 28px 24px 22px 46px;
  }

  .special-services-content h3 {
    font-size: 31px;
    margin-bottom: 20px;
  }

  .special-services-list {
    gap: 20px;
    width: calc(100% + 155px);
  }

  .special-service-item {
    min-height: 108px;
    font-size: 17px;
  }

  .special-services-img {
    min-height: 230px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .services-section {
    padding: 28px 16px 55px;
  }

  .services-heading {
    gap: 18px;
  }

  .main-service-card,
  .special-services-card {
    width: calc(100% - 24px);
    max-width: 900px;
  }

  .main-service-card {
    grid-template-columns: 220px 1fr;
    min-height: 190px;
  }

  .main-service-img {
    width: 220px;
    height: 190px;
  }

  .main-service-content {
    padding: 24px 20px;
  }

  .main-service-content h3 {
    font-size: 24px;
  }

  .main-service-text {
    margin-left: -26px;
    padding: 22px 18px 22px 40px;
  }

  .main-service-text p {
    font-size: 15px;
    line-height: 1.32;
    white-space: normal;
  }

  .special-services-card {
    grid-template-columns: 1fr;
  }

  .special-services-content {
    padding: 28px 24px;
  }

  .special-services-content h3 {
    text-align: center;
  }

  .special-services-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .special-service-item {
    min-height: 100px;
    font-size: 18px;
  }

  .special-services-img {
    height: 230px;
    min-height: 230px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .services-section {
    padding: 25px 12px 45px;
  }

  .services-heading {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }

  .services-heading h2 {
    font-size: 54px;
  }

  .services-mono {
    width: 145px;
  }

  .main-service-card,
  .special-services-card {
    width: 100%;
    max-width: 420px;
  }

  .main-service-card {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .main-service-img {
    width: 100%;
    height: 220px;
    border-radius: 30px 30px 0 0;
  }

  .main-service-content {
    padding: 24px 18px 20px;
  }

  .main-service-content h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 18px;
  }

  .main-service-text {
    margin-left: 0;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .main-service-text p {
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .special-services-content {
    padding: 25px 18px;
  }

  .special-services-content h3 {
    font-size: 26px;
    text-align: center;
  }

  .special-services-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .special-service-item {
    min-height: 86px;
    font-size: 18px;
  }

  .special-services-img {
    height: 220px;
    min-height: 220px;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 420px) {
  .services-heading h2 {
    font-size: 48px;
  }

  .services-mono {
    width: 130px;
  }

  .main-service-content h3 {
    font-size: 20px;
  }

  .main-service-text p {
    font-size: 15px;
  }

  .special-services-content h3 {
    font-size: 23px;
  }

  .special-service-item {
    font-size: 16px;
  }
}

/* ================= SECCIÓN NUESTRO PROCESO ================= */
.process-section {
  width: 100%;
  background: #d6ffd9;

  /* Le damos espacio arriba para que el mono pueda salirse */
  padding: 35px 24px 46px;

  /* Importante para que el mono no se corte */
  overflow: visible;
  position: relative;
}

/* ================= FRANJA SUPERIOR ================= */
.process-header {
  width: calc(100% + 48px);
  margin-left: -24px;
  min-height: 86px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(90deg,
      #32aaa8 0%,
      #70d9a8 55%,
      #b9f6b8 100%);

  /* Importante para que el mono no se corte */
  overflow: visible;
}

/* Título principal */
.process-header h2 {
  color: #ffffff;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
}

/* Mono arriba a la izquierda */
/* Mono arriba a la izquierda */
.process-mono {
  position: absolute;
  left: 4%;
  bottom: -38px;

  width: clamp(140px, 14vw, 190px);
  height: auto;

  z-index: 5;
  pointer-events: none;
}

/* ================= SUBTÍTULO ================= */
.process-subtitle {
  color: #006f9f;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 400;
  text-align: center;

  margin: 48px auto 34px;
}

/* ================= PASOS ================= */
.process-steps {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr 46px 1fr;
  align-items: start;
  gap: 18px;
}

/* Cada paso */
.process-step {
  text-align: center;
  color: #0088c9;
}

/* Iconos */
.process-icon {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

/* Signo + */
.process-plus {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  margin: 38px auto 0;
}

/* Títulos de cada paso */
.process-step h3 {
  color: #0088c9;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Descripción de cada paso */
.process-step p {
  color: #00739d;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.15;
  font-weight: 400;
  margin: 0;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .process-section {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .process-header {
    min-height: 78px;
  }


  .process-mono {
    left: 3%;
    bottom: -34px;
    width: 160px;
  }


  .process-subtitle {
    font-size: 34px;
    margin: 44px auto 30px;
  }

  .process-steps {
    max-width: 1060px;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    gap: 14px;
  }

  .process-icon {
    width: 104px;
    height: 104px;
  }

  .process-plus {
    width: 34px;
    height: 34px;
    margin-top: 34px;
  }

  .process-step h3 {
    font-size: 27px;
  }

  .process-step p {
    font-size: 19px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .process-section {
    padding: 30px 20px 42px;
  }

  .process-header {
    width: calc(100% + 40px);
    margin-left: -20px;
    min-height: 74px;
  }

  .process-header h2 {
    font-size: 44px;
  }


  .process-mono {
    left: 2%;
    bottom: -28px;
    width: 120px;
  }


  .process-subtitle {
    font-size: 28px;
    margin: 44px auto 30px;
    padding: 0 18px;
  }

  .process-steps {
    max-width: 720px;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 26px;
  }

  .process-plus {
    display: none;
  }

  .process-icon {
    width: 98px;
    height: 98px;
    margin-bottom: 14px;
  }

  .process-step h3 {
    font-size: 25px;
  }

  .process-step p {
    font-size: 18px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .process-section {
    padding: 0 14px 38px;
    overflow: hidden;
  }

  .process-header {
    width: calc(100% + 28px);
    margin-left: -14px;
    min-height: 70px;
  }

  .process-header h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  /* En móvil el mono desaparece */
  .process-mono {
    display: none;
  }

  .process-subtitle {
    font-size: 22px;
    line-height: 1.2;
    margin: 28px auto 28px;
    padding: 0;
  }

  /* 2 columnas y 2 renglones en móvil */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 430px;
    gap: 28px 18px;
  }

  .process-plus {
    display: none;
  }

  .process-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
  }

  .process-step h3 {
    font-size: 20px;
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 15px;
    line-height: 1.15;
  }
}

/* ================= SECCIÓN DIFERENTES ================= */
.different-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 0 85px;
  overflow: hidden;
}

/* Contenedor principal */
.different-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: center;
  gap: 70px;

  padding: 0 40px;
}

/* ================= IMÁGENES IZQUIERDAS ================= */
.different-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
}

/* Imagen REPSE */
.different-img-repse {
  width: 360px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Imagen DC3 */
.different-img-dc3 {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= CONTENIDO DERECHO ================= */
.different-content {
  width: 100%;
}

/* Título */
.different-content h2 {
  color: #0088c9;
  font-size: clamp(38px, 4vw, 65px);
  /* Ajusté un poco el tamaño máximo */
  line-height: 1.1;
  /* Le di un poco más de espacio entre renglones */
  font-weight: 900;
  margin: 0 0 50px;
  /* Reduje un poco el margen inferior */
  text-align: left;
  white-space: normal;
  /* ¡MAGIA! Ahora sí puede bajar de renglón */
}

/* Lista de puntos */
.different-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Cada renglón */
.different-item {
  width: 100%;
  min-height: 58px;
  padding: 8px 40px;
  /* Ajusté el padding para que respire más si hay dos renglones */

  display: flex;
  align-items: center;

  color: #0088c9;
  font-size: clamp(26px, 2.5vw, 44px);
  /* Ajusté el tamaño máximo */
  line-height: 1.2;
  /* Le di un poco más de espacio entre renglones */
  font-weight: 300;

  white-space: normal;
  /* ¡MAGIA! Permite que los textos largos bajen de renglón si es necesario */
}

/* Fondo verde */
.different-green {
  background: #d3f8d7;
}

/* Fondo azul */
.different-blue {
  background: #63cee5;
}

/* Negritas REPSE y DC3 */
.different-item strong {
  font-weight: 900;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .different-section {
    padding: 60px 0 75px;
  }

  .different-container {
    max-width: 1240px;
    grid-template-columns: 330px 1fr;
    gap: 55px;
    padding: 0 34px;
  }

  .different-images {
    gap: 48px;
  }

  .different-img-repse {
    width: 310px;
  }

  .different-img-dc3 {
    width: 260px;
  }

  .different-content h2 {
    font-size: 46px;
    margin-bottom: 40px;
  }

  .different-list {
    gap: 22px;
  }

  .different-item {
    min-height: 52px;
    padding: 8px 30px;
    font-size: 34px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .different-section {
    padding: 50px 0 60px;
  }

  .different-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 24px;
  }

  /* En tablet también mandamos el contenido primero */
  .different-content {
    order: 1;
  }

  .different-images {
    order: 2;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 42px;
  }

  .different-img-repse {
    width: 260px;
  }

  .different-img-dc3 {
    width: 220px;
  }

  .different-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    white-space: normal;
  }

  .different-item {
    min-height: 54px;
    padding: 10px 28px;
    font-size: 28px;
    justify-content: center;
    /* Centramos el texto en tablet */
    text-align: center;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .different-section {
    padding: 42px 0 50px;
  }

  .different-container {
    padding: 0 16px;
    gap: 32px;
  }

  /* Primero título y puntos */
  .different-content {
    order: 1;
  }

  /* Después imágenes abajo */
  .different-images {
    order: 2;

    flex-direction: column;
    gap: 28px;
  }

  .different-content h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
  }

  .different-list {
    gap: 16px;
  }

  .different-item {
    min-height: 50px;
    padding: 10px 18px;
    justify-content: center;

    font-size: 20px;
    text-align: center;
    white-space: normal;
  }

  .different-img-repse {
    width: 245px;
  }

  .different-img-dc3 {
    width: 210px;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 420px) {
  .different-section {
    padding: 38px 0 45px;
  }

  .different-container {
    padding: 0 12px;
  }

  .different-content h2 {
    font-size: 24px;
  }

  .different-item {
    font-size: 18px;
    padding: 10px 12px;
  }

  .different-img-repse {
    width: 220px;
  }

  .different-img-dc3 {
    width: 190px;
  }
}

/* ================= SECCIÓN CTA FINAL ================= */
.cta-section {
  width: 100%;
  min-height: 310px;
  position: relative;

  display: flex;
  align-items: center;

  background: #09b9dd;

  /* Para que el mono no se corte */
  overflow: visible;

  padding: 42px 5.5%;
}

/* ================= CONTENIDO IZQUIERDO ================= */
.cta-content {
  position: relative;
  z-index: 3;

  width: 74%;
  max-width: 980px;

  color: #ffffff;
}

/* Título principal */
/* Se mantiene en 2 renglones por el <br> del HTML */
.cta-content h2 {
  font-size: 39px;
  line-height: 1.14;
  font-weight: 900;

  margin-bottom: 30px;

  white-space: nowrap;
}

/* Descripción */
/* Se mantiene en 2 renglones por el <br> del HTML */
.cta-content p {
  font-size: 30px;
  line-height: 1.18;
  font-weight: 300;

  margin: 0;

  white-space: nowrap;
}

/* Negritas de la descripción */
.cta-content p strong {
  font-weight: 900;
}

/* ================= MONO DERECHO ================= */
.cta-mono {
  position: absolute;
  right: 3%;
  bottom: 0;

  width: 310px;
  height: auto;

  z-index: 2;
  pointer-events: none;
}

/* ================= PANTALLAS GRANDES ================= */
@media (min-width: 1367px) {
  .cta-section {
    min-height: 360px;
    padding: 50px 7%;
  }

  .cta-content {
    width: 72%;
    max-width: 1120px;
  }

  .cta-content h2 {
    font-size: clamp(34px, 3vw, 52px);
    margin-bottom: 36px;
  }

  .cta-content p {
    font-size: clamp(27px, 2.4vw, 42px);
  }

  .cta-mono {
    right: 4%;
    bottom: 0;
    width: clamp(260px, 24vw, 410px);
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .cta-section {
    min-height: 280px;
    padding: 40px 28px;
  }

  .cta-content {
    width: 76%;
    max-width: 760px;
  }

  .cta-content h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 24px;
    white-space: nowrap;
  }

  .cta-content p {
    font-size: 25px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .cta-mono {
    right: 0;
    bottom: 0;

    width: 250px;
    opacity: 0.9;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .cta-section {
    min-height: auto;
    padding: 42px 20px;
    text-align: center;

    /* En móvil ya no necesitamos que se salga nada */
    overflow: hidden;
  }

  .cta-content {
    width: 100%;
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 30px;
    line-height: 1.16;
    margin-bottom: 26px;

    white-space: normal;
  }

  .cta-content p {
    font-size: 23px;
    line-height: 1.22;

    white-space: normal;
  }

  /* En móvil quitamos el mono */
  .cta-mono {
    display: none;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 420px) {
  .cta-section {
    padding: 38px 16px;
  }

  .cta-content h2 {
    font-size: 27px;
  }

  .cta-content p {
    font-size: 21px;
  }
}

/* ================= SECCIÓN CONTACTO ================= */
.contact-section {
  width: 100%;
  background: linear-gradient(115deg,
      #36aaa8 0%,
      #72d9a8 50%,
      #b8f6b8 100%);
  padding: 50px 6% 55px;
  position: relative;
  overflow: hidden;
}

/* Contenedor general */
.contact-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 42px;
}

/* ================= COLUMNA IZQUIERDA ================= */
.contact-info {
  color: #ffffff;
}

/* Título CONTACTO */
.contact-info h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 42px;
}

/* Datos de contacto */
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Fila de dato */
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Iconos */
.contact-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #023e58;
  font-size: 24px;
  font-weight: 900;

  text-shadow: 0 3px 6px rgb(255, 255, 255);
}

/* Texto datos */
.contact-row p {
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}

/* ================= COLUMNA DERECHA ================= */
.contact-form-box {
  color: #ffffff;
}

/* Título formulario */
.contact-form-box h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 34px;
}

/* Formulario */
.contact-form {
  width: 100%;
}

/* Cada línea del formulario */
.form-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 12px;

  margin-bottom: 16px;
}

/* Labels */
.form-line label {
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1;
  font-weight: 300;
  white-space: nowrap;
}

/* Inputs con línea */
.form-line input {
  width: 100%;
  height: 32px;

  background: transparent;
  border: none;
  border-bottom: 1.3px solid rgba(0, 60, 70, 0.65);

  color: #005f88;
  font-size: 20px;
  outline: none;
}

/* ================= BOTÓN SIN ICONO ================= */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 34px auto 0;

  min-width: 250px;
  padding: 15px 34px;

  border: none;
  border-radius: 50px;

  background: #00a9df;
  color: #ffffff;

  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1;
  font-weight: 900;

  box-shadow: 0 8px 16px rgba(0, 120, 160, 0.35);
  cursor: pointer;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 120, 160, 0.45);
}

/* ================= FOOTER ================= */
.footer {
  width: 100%;
  background: #ffffff;
  padding: 28px 20px;
  text-align: center;
}

.footer p,
.footer a {
  color: #000000;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.4;
  font-weight: 400;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE LAPTOP ================= */
@media (max-width: 1366px) {
  .contact-section {
    padding: 45px 5.5% 48px;
  }

  .contact-container {
    max-width: 1120px;
    gap: 36px;
  }

  .contact-info h2 {
    font-size: 62px;
    margin-bottom: 34px;
  }

  .contact-row p {
    font-size: 24px;
  }

  .contact-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .contact-form-box h3 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .form-line {
    margin-bottom: 14px;
  }

  .form-line label {
    font-size: 25px;
  }

  .form-line input {
    height: 30px;
    font-size: 18px;
  }

  .contact-btn {
    min-width: 230px;
    padding: 14px 30px;
    font-size: 22px;
    margin-top: 30px;
  }
}

/* ================= RESPONSIVE TABLET ================= */
@media (max-width: 992px) {
  .contact-section {
    padding: 45px 24px 48px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2 {
    font-size: 56px;
    margin-bottom: 30px;
  }

  .contact-data {
    max-width: 480px;
    margin: 0 auto;
    align-items: flex-start;
  }

  .contact-row p {
    font-size: 23px;
    text-align: left;
  }

  .contact-form-box {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-form-box h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 28px;
  }

  .form-line label {
    font-size: 24px;
  }

  .contact-btn {
    min-width: 230px;
    font-size: 21px;
  }
}

/* ================= RESPONSIVE MÓVIL ================= */
@media (max-width: 650px) {
  .contact-section {
    padding: 40px 18px 42px;
  }

  .contact-container {
    gap: 36px;
  }

  .contact-info h2 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 26px;
  }

  .contact-data {
    gap: 12px;
  }

  .contact-row {
    gap: 12px;
  }

  .contact-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .contact-row p {
    font-size: 18px;
  }

  .contact-form-box h3 {
    font-size: 27px;
    margin-bottom: 28px;
  }

  .form-line {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 18px;
  }

  .form-line label {
    font-size: 21px;
  }

  .form-line input {
    height: 30px;
    font-size: 18px;
  }

  .contact-btn {
    width: 100%;
    max-width: 260px;
    min-width: auto;

    padding: 14px 24px;
    margin-top: 30px;

    font-size: 19px;
  }

  .footer {
    padding: 26px 16px;
  }

  .footer p,
  .footer a {
    font-size: 13px;
  }
}

/* ================= RESPONSIVE MÓVIL CHICO ================= */
@media (max-width: 420px) {
  .contact-info h2 {
    font-size: 38px;
  }

  .contact-row p {
    font-size: 16px;
  }

  .contact-form-box h3 {
    font-size: 25px;
  }

  .form-line label {
    font-size: 20px;
  }

  .contact-btn {
    font-size: 18px;
  }
}

/* ================= BOTÓN DEL CTA FINAL ================= */
.btn-cta-verde {
  display: flex;
  /* Lo cambiamos a flex para poder centrarlo */
  width: fit-content;
  /* Se ajusta exactamente al tamaño del texto e icono */
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin: 35px auto 0;
  /* El 'auto' a los lados lo centra perfectamente */
  padding: 14px 45px;
  /* Lo hice un poquito más largo para que luzca el degradado */

  /* El degradado verde basado en el PDF */
  background: linear-gradient(90deg, #8ef2ab 0%, #32aaa8 100%);
  color: #004b75;
  /* Azul marino oscuro para el texto y el icono */

  border-radius: 999px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 900;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta-verde svg {
  width: 22px;
  height: 22px;
}

.btn-cta-verde:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}