﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: #f2f2f2;
}

.hv-aos {
  opacity: 0;
  backface-visibility: hidden;
  transform: translate3d(0, var(--hv-aos-distance, 34px), 0);
  transition:
    opacity var(--hv-aos-duration, 720ms) ease,
    transform var(--hv-aos-duration, 720ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hv-aos-delay, 0ms);
  will-change: transform, opacity;
}

.hv-aos.hv-aos-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hv-aos.hv-aos-before {
  transform: translate3d(0, var(--hv-aos-distance, 34px), 0);
}

.hv-aos.hv-aos-after {
  transform: translate3d(0, calc(var(--hv-aos-distance, 34px) * -0.65), 0);
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(100%, 1920px);
  height: 118px;
  padding: 8px clamp(28px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(77, 141, 40, 0.12);
  border-radius: 0 0 56px 56px;
  box-shadow: 0 18px 45px rgba(3, 39, 0, 0.14);
  transform: translateX(-50%);
  z-index: 1000;
}

header::before,
header::after {
  content: "";
  position: absolute;
  top: 0;
  width: 190px;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  background:
    radial-gradient(circle, #8dc63f 0 3px, transparent 4px) 24px 23px / 72px
      46px,
    linear-gradient(
        90deg,
        transparent 0 30px,
        rgba(77, 141, 40, 0.35) 30px 32px,
        transparent 32px
      )
      0 16px / 95px 42px,
    linear-gradient(
        0deg,
        transparent 0 23px,
        rgba(77, 141, 40, 0.35) 23px 25px,
        transparent 25px
      )
      22px 0 / 82px 48px;
}

header::before {
  left: 0;
  transform: scaleX(-1);
}

header::after {
  right: 0;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(170px, 14vw, 250px);
  height: 110px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #032700;
  cursor: pointer;
  z-index: 1001;
}

header ul {
  display: flex;
  position: relative;
  flex-direction: row;
  gap: clamp(18px, 2vw, 34px);
  list-style: none;
  z-index: 2;
}
header ul li a {
  color: #032700;
  text-decoration: none;
  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

header ul li a:hover {
  color: #4b8327;
}

header ul li a:hover,
header ul li a.active {
  color: #4b8327;
}

header ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4b8327;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom left;
}

header ul li a:hover::after,
header ul li a.active::after {
  transform: scaleX(1);
}

#menuEventos {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding-top: 0;
  padding-bottom: 8px;
}

.boton_solicitud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #4d8d28;
  color: #f2f2f2;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(47, 99, 19, 0.24);
  position: relative;
  z-index: 2;
}

.boton_solicitud a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.boton_solicitud:hover {
  background-color: #2f6313;
  transform: translateY(-1px) scale(1.02);
}

.botones_redes {
  position: fixed;
  right: clamp(18px, 1.6vw, 28px);
  top: calc(50% + 107px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: 0.4s ease;
  z-index: 1200;
}

.botones_redes.ocultar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(120px);
}

.botones_redes a {
  width: clamp(50px, 3.2vw, 58px);
  height: clamp(50px, 3.2vw, 58px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(3, 39, 0, 0.9);
  color: #f2f2f2;
  font-size: clamp(1.25rem, 1.35vw, 1.55rem);
  border: 1px solid rgba(141, 198, 63, 0.48);
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(3, 39, 0, 0.34),
    0 0 16px rgba(141, 198, 63, 0.18);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.botones_redes a:hover {
  transform: translateX(-8px) scale(1.08);
  background: #2f6313;
  border-color: #8dc63f;
  box-shadow:
    0 14px 32px rgba(3, 39, 0, 0.42),
    0 0 24px rgba(141, 198, 63, 0.42);
}

:root {
  --primary: #4caf50;
  --primary-dark: #2e7d32;
  --secondary: #81c784;
  --white: #fff;
  --text: #ececec;
  --overlay: rgba(0, 0, 0, 0.45);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --transition: 0.5s ease;
}

.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
  perspective: 1800px;
}

header::before,
header::after {
  display: none;
}

#Carrusel {
  --circuit-size: min(55vw, 1100px);
  --circuit-left-out: -220px;
  --circuit-right-out: -220px;
  --circuit-glow: 0 0 48px rgba(190, 255, 80, 1);
  --circuit-brightness: 2.7;
  --circuit-saturate: 2.7;
  --circuit-opacity: 1;
}

#Carrusel.hero-slider {
  isolation: isolate;
}

#Carrusel .overlay {
  z-index: 2;
}

#Carrusel .slide {
  z-index: 1;
}

#Carrusel .slide.active {
  z-index: 5;
}

#Carrusel .content {
  z-index: 90;
  width: min(610px, 42vw);
}

#Carrusel .content::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -90px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.2),
    rgba(3, 39, 0, 0.28) 42%,
    transparent 72%
  );
  filter: blur(34px);
  z-index: -1;
  pointer-events: none;
}

#Carrusel .subtitle,
#Carrusel .content h1,
#Carrusel .content p,
#Carrusel .buttons {
  position: relative;
  z-index: 91;
}

#Carrusel .subtitle {
  color: #9ee65b;
  font-weight: 600;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.72),
    0 0 12px rgba(141, 198, 63, 0.28);
}

#Carrusel .content h1 {
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.78),
    0 14px 36px rgba(0, 0, 0, 0.52);
}

#Carrusel .content h1 span {
  color: #52c95c;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(76, 175, 80, 0.28);
}

#Carrusel .content p {
  color: #f4f4f4;
  font-weight: 500;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.72),
    0 10px 24px rgba(0, 0, 0, 0.45);
}

.hero-brand-mark {
  top: clamp(152px, 18vh, 214px);
  left: clamp(52px, 5vw, 92px);
  width: clamp(110px, 8vw, 150px);
  z-index: 38;
  opacity: 0.96;
}

.hero-circuit {
  position: absolute;
  top: 94px;
  bottom: -15px;
  width: var(--circuit-size);
  --circuit-x: 0px;
  --circuit-y: 0px;
  z-index: 18;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: var(--circuit-opacity);
  filter: drop-shadow(var(--circuit-glow))
    drop-shadow(0 0 140px rgba(186, 255, 74, 0.95))
    brightness(var(--circuit-brightness)) saturate(var(--circuit-saturate));
  animation: circuitDrift 9s ease-in-out infinite;
}

.circuit-left {
  left: var(--circuit-left-out);
  background:
    radial-gradient(
      circle at 58px 17%,
      rgba(190, 255, 80, 1) 0 6px,
      transparent 7px
    ),
    radial-gradient(
      circle at 158px 35%,
      rgba(190, 255, 80, 1) 0 6px,
      transparent 7px
    ),
    radial-gradient(
      circle at 96px 62%,
      rgba(190, 255, 80, 1) 0 7px,
      transparent 8px
    ),
    linear-gradient(90deg, rgba(190, 255, 80, 1) 0 3px, transparent 3px) 46px
      0 / 220px 100%,
    linear-gradient(0deg, rgba(190, 255, 80, 0.96) 0 3px, transparent 3px) 0
      18% / 380px 160px,
    linear-gradient(
        135deg,
        transparent 0 48%,
        rgba(190, 255, 80, 1) 49% 51%,
        transparent 52%
      )
      70px 25% / 420px 420px,
    radial-gradient(
      ellipse at 0 52%,
      rgba(3, 39, 0, 0.92),
      rgba(3, 39, 0, 0.5) 42%,
      transparent 72%
    );
  animation: circuitDrift 8s ease-in-out infinite;
}

.circuit-right {
  right: var(--circuit-right-out);
  opacity: 1;
  background:
    radial-gradient(circle at calc(100% - 58px) 17%, rgba(190, 255, 80, 1) 0 6px, transparent 7px),
    radial-gradient(circle at calc(100% - 158px) 35%, rgba(190, 255, 80, 1) 0 6px, transparent 7px),
    radial-gradient(circle at calc(100% - 96px) 62%, rgba(190, 255, 80, 1) 0 7px, transparent 8px),
    linear-gradient(90deg, transparent calc(100% - 46px), rgba(190, 255, 80, 1) calc(100% - 46px) calc(100% - 43px), transparent calc(100% - 43px)) 0 0 / 220px 100%,
    linear-gradient(0deg, rgba(190, 255, 80, 0.96) 0 3px, transparent 3px) right 18% / 380px 160px,
    linear-gradient(45deg, transparent 0 48%, rgba(190, 255, 80, 1) 49% 51%, transparent 52%) right 25% / 420px 420px,
    radial-gradient(ellipse at 100% 52%, rgba(3, 39, 0, 0.92), rgba(3, 39, 0, 0.5) 42%, transparent 72%);
  animation: circuitDrift 9s ease-in-out infinite reverse;
}

.hero-circuit::before,
.hero-circuit::after,
.hero-circuit span {
  content: "";
  position: absolute;
  border: 2px solid rgba(190, 255, 80, 1);
  border-radius: 50%;
  animation: circuitPulse 3.8s ease-in-out infinite;
}

.hero-circuit::before {
  width: 300px;
  height: 300px;
  top: 21%;
  left: -74px;
}

.hero-circuit::after {
  width: 300px;
  height: 300px;
  bottom: 9%;
  left: -112px;
  animation-delay: 1.1s;
}

.hero-circuit::before {
  width: 300px;
  height: 300px;
  top: 21%;
  left: -74px;
}

.hero-circuit::after {
  width: 300px;
  height: 300px;
  bottom: 9%;
  left: -112px;
  animation-delay: 1.1s;
}

.circuit-right::before {
  left: auto;
  right: -74px;
}

.circuit-right::after {
  left: auto;
  right: -112px;
}

.hero-circuit span:nth-child(1) {
  width: 11px;
  height: 11px;
  top: 24%;
  left: 34%;
  background: #baff4a;
  border: none;
  box-shadow:
    0 0 18px #baff4a,
    0 0 38px rgba(186, 255, 74, 0.95),
    0 0 70px rgba(141, 198, 63, 0.75);
  animation:
    circuitPulse 3.8s ease-in-out infinite,
    circuitNodeMoveA 7s ease-in-out infinite;
}

.hero-circuit span:nth-child(2) {
  width: 9px;
  height: 9px;
  top: 55%;
  left: 18%;
  background: #baff4a;
  border: none;
  box-shadow:
    0 0 16px #baff4a,
    0 0 34px rgba(186, 255, 74, 0.9),
    0 0 62px rgba(141, 198, 63, 0.65);
  animation:
    circuitPulse 3.8s ease-in-out infinite,
    circuitNodeMoveB 8.4s ease-in-out infinite;
}

.hero-circuit span:nth-child(3) {
  width: 8px;
  height: 8px;
  bottom: 21%;
  left: 43%;
  background: #baff4a;
  border: none;
  box-shadow:
    0 0 16px #baff4a,
    0 0 34px rgba(186, 255, 74, 0.9),
    0 0 62px rgba(141, 198, 63, 0.65);
  animation:
    circuitPulse 3.8s ease-in-out infinite,
    circuitNodeMoveC 6.8s ease-in-out infinite;
}

#Carrusel .navigation,
#Carrusel .indicators,
#Carrusel .thumbnails {
  z-index: 96;
}

@keyframes circuitNodeMoveA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(42px, 54px, 0) scale(1.08);
  }
}

@keyframes circuitNodeMoveB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(58px, -38px, 0) scale(1.08);
  }
}

@keyframes circuitNodeMoveC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(32px, -66px, 0) scale(1.08);
  }
}



.hero-brand-mark {
  position: absolute;
  top: clamp(176px, 21vh, 230px);
  left: clamp(36px, 4vw, 72px);
  width: clamp(105px, 8vw, 142px);
  aspect-ratio: 1;
  z-index: 22;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.98) 0 50%,
      rgba(188, 255, 98, 0.48) 51% 64%,
      transparent 65%
    ),
    radial-gradient(circle, rgba(141, 198, 63, 0.48), transparent 72%);
  box-shadow:
    0 0 28px rgba(141, 198, 63, 0.78),
    0 0 70px rgba(141, 198, 63, 0.42);
  pointer-events: none;
  animation: brandFloat 6.5s ease-in-out infinite;
}

.hero-brand-mark img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(3, 39, 0, 0.38));
}

.hero-slider[data-slide="1"] .circuit-left {
  opacity: 0.86;
  filter: drop-shadow(0 0 14px rgba(116, 220, 92, 0.68));
  --circuit-x: -14px;
  --circuit-y: 10px;
}

.hero-slider[data-slide="1"] .circuit-right {
  opacity: 1;
  --circuit-x: 16px;
  --circuit-y: -8px;
}

.hero-slider[data-slide="2"] .circuit-left {
  opacity: 1;
  filter: drop-shadow(0 0 24px rgba(165, 230, 80, 0.82));
  --circuit-x: 8px;
  --circuit-y: -10px;
}

.hero-slider[data-slide="2"] .circuit-right {
  opacity: 1;
  --circuit-x: -10px;
  --circuit-y: 12px;
}

.hero-slider[data-slide="1"] .hero-brand-mark,
.hero-slider[data-slide="2"] .hero-brand-mark {
  animation-duration: 5.2s;
}

@keyframes circuitPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.035);
  }
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 2;
  pointer-events: none;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center 35%;
  transition:
    opacity 0.9s ease,
    transform 1s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: translate3d(0, 0, 0) scale(1.18);
  transition: none;
  will-change: transform;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.content {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 520px;
  transform: translate3d(0, -50%, 30px);
  transition: transform 0.15s linear;
  will-change: transform;
  z-index: 20;
  color: #fff;
}

.subtitle {
  display: block;
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-60px);
}

.content h1 {
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-60px);
}

.content h1 span {
  color: var(--primary);
}

.content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(40px);
}

.buttons {
  display: flex;
  gap: 18px;
  opacity: 0;
  transform: translateY(35px);
}

.btn-primary,
.btn-secondary {
  height: 54px;
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -25px;
  width: 40px;
  height: 120px;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(30deg);
  transition: 0.7s;
}

.btn-primary:hover::before {
  left: 250px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

.slide.active .subtitle {
  animation: leftIn 0.8s 0.2s forwards;
}

.slide.active h1 {
  animation: leftIn 0.8s 0.45s forwards;
}

.slide.active p {
  animation: upIn 0.8s 0.7s forwards;
}

.slide.active .buttons {
  animation: upIn 0.8s 0.95s forwards;
}

@keyframes leftIn {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes upIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thumbnails {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 50;
}

.thumb {
  width: 145px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: 0.45s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.thumb span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.thumb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: 6s linear;
}

.thumb.active {
  width: 210px;
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.thumb.active::after {
  width: 100%;
}

.thumb:hover {
  transform: translateY(-8px);
}

.thumb:hover img {
  transform: scale(1.12);
}

.navigation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 clamp(118px, 8vw, 150px) 0 clamp(18px, 3vw, 42px);
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 60;
  pointer-events: none;
}

.navigation button {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 20px;
  transition: 0.35s;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.navigation button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: 0.35s;
}

.navigation button:hover::before {
  opacity: 1;
}

.navigation button:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.navigation button i {
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.navigation button:hover i {
  transform: scale(1.15);
}

.navigation .next {
  margin-right: 0;
}

.indicators {
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 55;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.4s;
}

.dot.active {
  width: 40px;
  border-radius: 30px;
  background: var(--primary);
}

.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  z-index: 80;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #81c784, #4caf50, #2e7d32);
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.thumb.active {
  animation: thumbFloat 0.6s ease;
}

@keyframes thumbFloat {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}

.hero-slider::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(rgba(76, 175, 80, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 3;
}

.hero-light {
  position: absolute;
  width: 450px;
  height: 450px;
  left: -150px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(rgba(255, 255, 255, 0.08), transparent 75%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 2;
  animation: lightMove 8s ease-in-out infinite alternate;
}

.content {
  transform-style: preserve-3d;
}

.content > * {
  transform: translateZ(35px);
}

.content h1 {
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.content p {
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.slide {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.slide img {
  transform-origin: center;
  will-change: transform;
}

.slide.active {
  animation: fadeSlide 0.8s ease;
}

.slide:not(.active) {
  pointer-events: none;
}

.hero-slider:hover .slide.active img {
  filter: brightness(0.9) contrast(1.05);
}

.overlay {
  backdrop-filter: saturate(110%) contrast(105%);
}

.btn-primary,
.btn-secondary,
.navigation button,
.thumb {
  will-change: transform;
}

.hero-slider {
  cursor: grab;
}

.hero-slider:active {
  cursor: grabbing;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lightMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(60px, -40px) scale(1.2);
  }
}

.slide,
.slide img,
.content,
.thumb,
.navigation button {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.slide img {
  transform: translate3d(0, 0, 0) scale(1.15);
  transform-origin: center;
  will-change: transform;
}

.slide.active img {
  filter: brightness(0.9) saturate(1.05);
}

.hero-slider:hover .slide.active img {
  filter: brightness(1) saturate(1.1);
}

.hero-slider::before {
  animation: overlayMove 12s ease-in-out infinite alternate;
}

.hero-slider::after {
  animation: lightPulse 8s ease-in-out infinite alternate;
}

.thumb {
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}

.thumb img {
  transition: transform 0.6s;
}

.thumb:hover img {
  transform: scale(1.15);
}

.thumb.active {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.navigation button {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.navigation button:hover {
  box-shadow: 0 18px 40px rgba(76, 175, 80, 0.45);
}

.btn-primary {
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 25px 60px rgba(76, 175, 80, 0.45);
}

.content h1 {
  animation-duration: 0.9s;
}

.content p {
  animation-duration: 0.9s;
}

.subtitle {
  animation-duration: 0.8s;
}

.buttons {
  animation-duration: 1s;
}

.hero-slider * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-slider img {
  display: block;
}

.hero-slider {
  isolation: isolate;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 40%);
  pointer-events: none;
}

.slide.active {
  z-index: 5;
}

.slide:not(.active) {
  z-index: 1;
}

.content {
  max-width: 560px;
}

.content h1 {
  letter-spacing: -2px;
}

.content p {
  max-width: 500px;
}

.thumb span {
  transition: 0.3s;
}

.thumb:hover span {
  transform: translateY(-2px);
}

.navigation button i {
  transition: 0.35s;
}

.navigation button:hover i {
  transform: scale(1.2);
}

.progress-bar span {
  animation: progress 10s linear forwards;
}

.hero-slider.loading .progress-bar span {
  animation: none;
  width: 0;
}

@keyframes overlayMove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.92;
  }
}

@keyframes lightPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.Nosotros {
  width: 100%;
  height: auto;
  background: #f4f9ee;
  padding: 110px 8% 90px;
}

.titulo_nos {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.titulo_nos h1 {
  font-size: 3.5rem;
  color: #032700;
  font-weight: 800;
  margin-bottom: 20px;
}

.titulo_nos h2 {
  font-size: 2.3rem;
  color: #4d8d28;
  font-weight: 700;
  margin-bottom: 25px;
}

.titulo_nos p {
  font-size: 1.2rem;
  color: #4d4d4d;
  line-height: 1.9;
}

.caja-nosotros {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cajitas {
  width: 100%;
}

.titulo_box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  background: #ffffff;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.titulo_box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.cajitas.active .titulo_box {
  background: linear-gradient(90deg, #032700, #4d8d28);
  color: #fff;
  border-radius: 18px 18px 0 0;
}

.titulo_box > i:first-child {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #e5f3da;
  color: #4d8d28;
  font-size: 1.8rem;
  transition: 0.35s;
}

.cajitas.active .titulo_box > i:first-child {
  background: #fff;
  color: #4d8d28;
  transform: scale(1.08);
}

.titulo_box h2 {
  flex: 1;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-toggle {
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.35s;
}

.btn-toggle i {
  font-size: 2rem;
  color: inherit;
  transition: 0.35s;
}

.cajitas.active .btn-toggle {
  background: #fff;
  color: #4d8d28;
}

.cajitas.active .btn-toggle i {
  transform: rotate(180deg);
}

.box {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #ffffff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition:
    max-height 0.45s ease,
    padding 0.45s ease,
    opacity 0.35s ease;
  padding: 0 25px;
}

.box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
}

.lista-valores {
  display: grid;
  gap: 12px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  list-style: none;
}

.lista-valores li {
  position: relative;
  padding-left: 18px;
}

.lista-valores li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4d8d28;
}

.lista-valores strong {
  color: #032700;
}

.cajitas.active .box {
  max-height: 700px;
  opacity: 1;
  padding: 22px 25px;
}

.Servicios {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: #fff;
  padding: 50px;
}

.titulo_serv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  color: #032700;
  font-size: 2.3em;
  margin-bottom: 60px;
}

.sub_serv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.6em;
  color: #4b8327;
  font-size: 100;
  margin-bottom: 10px;
}

.contenedor_servicios {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  transform-style: preserve-3d;
  z-index: 1;
}

.caja_servicio {
  position: relative;
  width: 220px;
  height: 380px;
  margin: 20px 30px;
  background: transparent;
  transform-style: preserve-3d;
  border: none;
  box-shadow: none;
}

.fondo_hojas {
  position: absolute;
  top: clamp(-16px, -1.2vw, -8px);
  left: 52%;
  width: 80%;
  object-fit: contain;
  z-index: 1;
  transform-style: preserve-3d;
}

.fondo_hojas img {
  position: absolute;
  width: 230px;
  top: 0;
  transform: translateX(-50%);
  transition: 0.7s;
  transform-style: preserve-3d;
}

.caja_servicio:hover .fondo_hojas img {
  animation: hojasVivas 4s infinite ease-in-out;
  transform: translateX(-50%) translateY(-6px) scale(1.04);
}

@keyframes hojasVivas {
  0% {
    transform: translateX(-50%) translateY(0px) rotate(0deg) scale(0.9);
  }

  25% {
    transform: translateX(-50%) translateY(-3px) rotate(-2deg) scale(0.93);
  }

  50% {
    transform: translateX(-50%) translateY(3px) rotate(2deg) scale(0.96);
  }

  75% {
    transform: translateX(-50%) translateY(-2px) rotate(-1deg) scale(0.94);
  }

  100% {
    transform: translateX(-50%) translateY(0px) rotate(0deg) scale(0.9);
  }
}

.tarjeta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 105%;
  height: 330px;
  background: #dfe8d6;
  border: 1px solid #4d8d28;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(77, 141, 40, 0.25);
  z-index: 5;
  transform-style: preserve-3d;
}

.circulo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #dfe8d6;
  border: 2px solid #4d8d28;
  transform-style: preserve-3d;
  z-index: 20;
  transform: translate3d(-50%, -50%, 50px);
  transition: 0.5s;
}

.circulo {
  border-color: #4d8d28;
  box-shadow:
    0 0 20px rgba(77, 141, 40, 0.4),
    0 0 40px rgba(77, 141, 40, 0.2);
}

.caja_servicio i {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 4em;
  z-index: 25;
  transform-style: preserve-3d;
  color: #4d8d28;
  transform: translate3d(-50%, -50%, 55px);
  transition: 0.5s;
}

.caja_servicio:hover i {
  transform: translate3d(-50%, -50%, 100px);
}

.text_servicio {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  z-index: 12;
  transform-style: preserve-3d;
}

.text_servicio h3 {
  color: #032700;
  font-size: 1.1em;
  font-weight: 600;
  transform: translate3d(0, 0, 50px);
}

.text_servicio p {
  color: #313b24;
  font-size: 0.95em;
  margin-top: 15px;
  line-height: 1.4;
  transform: translate3d(0, 0, 50px);
}

.video-circle-section {
  width: 100%;
  min-height: auto;
  position: relative;
  overflow: visible;
  background: radial-gradient(circle at center, #eef8e8 0%, #f9fff7 55%, #e3f0dc 100%);
  padding: 110px 0 50px;
}

.video-circle-header {
  width: min(900px, 90%);
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.video-circle-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: #dff3d2;
  color: #2d6b1f;
  font-weight: 700;
  font-size: 0.9rem;
}

.video-circle-header h2 {
  margin: 22px 0 18px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #032700;
  font-weight: 800;
  line-height: 1.1;
}

.video-circle-header p {
  width: min(700px, 90%);
  margin: auto;
  color: #5b6655;
  line-height: 1.7;
}

.video-circle-stage {
  --card-top: 38%;
  --info-top: calc(var(--card-top) + 218px);
  position: relative;
  width: 100%;
  height: 720px;
  margin-top: 10px;
  overflow: visible;
}

.circle-bg {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(70, 120, 40, 0.18);
}

.circle-1 {
  width: 1320px;
  height: 1320px;
}

.circle-2 {
  width: 920px;
  height: 920px;
  background: rgba(255, 255, 255, 0.22);
}

.circle-3 {
  width: 580px;
  height: 580px;
}

.video-orbit {
  position: absolute;
  inset: 0;
}

.orbit-card {
  position: absolute;
  left: 50%;
  top: var(--card-top);
  width: 170px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: all .9s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}

.orbit-video-box,
.orbit-video-box video {
  width: 100%;
  height: 100%;
}

.orbit-video-box video {
  object-fit: cover;
  object-position: center;
  background: #111;
  display: block;
}

.orbit-card.active {
  width: 280px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(0);
  z-index: 50;
}

.orbit-card.left {
  width: 160px;
  height: 285px;
  transform: translate(calc(-50% - 285px), -30%) rotate(-18deg);
  opacity: .75;
  z-index: 20;
}

.orbit-card.right {
  width: 160px;
  height: 285px;
  transform: translate(calc(-50% + 285px), -30%) rotate(18deg);
  opacity: .75;
  z-index: 20;
}

.orbit-card.hidden {
  opacity: 0;
  transform: translate(-50%, 120%) scale(0.4);
  pointer-events: none;
}

.orbit-info {
  position: absolute;
  left: 50%;
  top: var(--info-top);
  width: 280px;
  transform: translateX(-50%);
  padding: 18px 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  z-index: 100;
}

.orbit-info h3 {
  color: #032700;
  font-size: 1.28rem;
  margin-bottom: 8px;
  line-height: 1.12;
}

.orbit-info p {
  color: #555;
  line-height: 1.5;
  font-size: .86rem;
  overflow-wrap: anywhere;
}

.orbit-controls {
  position: absolute;
  left: 50%;
  top: calc(62% + 125px + var(--extra-info-height, 0px));
  z-index: 200;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.orbit-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(77,141,40,.35);
  border-radius: 50%;
  background: #fff;
  color: #2f6313;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(3,39,0,.14);
  transition: .25s ease;
}

.orbit-btn:hover {
  background: #4d8d28;
  color: #fff;
  transform: translateY(-2px);
}

.proceso {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(180deg, #f4f9ee, #edf6e5);
  padding: 90px 120px;
  overflow: hidden;
}

.proceso::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(77, 141, 40, 0.08),
      transparent 30%
    ),
    radial-gradient(circle at 85% 80%, rgba(77, 141, 40, 0.08), transparent 30%);
  pointer-events: none;
}

.titulo_proceso {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.titulo_proceso .sub_pro {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d8d28;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
}

.titulo_proceso h1 {
  color: #032700;
  font-size: 2.8em;
  font-weight: 700;
}

.contenedor_proceso {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.paso {
  position: relative;
  width: 250px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 20px 18px;
  border-radius: 25px;
  border: 1px solid rgba(77, 141, 40, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.paso:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(77, 141, 40, 0.18);
}

.icono_paso {
  width: 95px;
  height: 95px;
  min-width: 95px;
  min-height: 95px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background: #4d8d28;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4em;
  margin-bottom: 20px;
  box-shadow:
    0 10px 25px rgba(77, 141, 40, 0.3),
    0 0 0 8px rgba(77, 141, 40, 0.08);
  transition: 0.4s;
}

.paso:hover .icono_paso {
  background: #032700;
  transform: scale(1.08) rotate(5deg);
}

.paso h3 {
  color: #032700;
  font-size: 1.28em;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.paso p {
  color: #5d5d5d;
  font-size: 0.98em;
  line-height: 1.65;
}

.flecha {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4d8d28;
  font-size: 2.6em;
}

.flecha i {
  transition: 0.4s;
}

.paso:hover + .flecha i {
  transform: translateX(6px);
}

.impacto {
  padding: 110px 8%;
  background: #fff;
}

.impacto .titulo-seccion {
  text-align: center;
  margin-bottom: 60px;
}

.impacto .titulo-seccion h2 {
  font-size: 3rem;
  color: #2f6313;
  font-weight: 800;
  line-height: 1.2;
}

.impacto .titulo-seccion h2 span {
  color: #6db23c;
}

.impacto .titulo-seccion p {
  margin: 18px auto 0;
  max-width: 700px;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

.impacto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.impacto-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 2px solid #cfe5bf;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.impacto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.impacto-info {
  width: 55%;
  padding: 35px;
}

.impacto-icono {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #2f6313;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.impacto-info h3 {
  color: #2f6313;
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.impacto-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
}

.impacto-info ul {
  list-style: none;
}

.impacto-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #444;
  font-size: 0.96rem;
}

.impacto-info ul li i {
  color: #53a22f;
  font-size: 20px;
}

.impacto-imagen {
  width: 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 120px 0 0 120px;
}

.impacto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.impacto-card:hover img {
  transform: scale(1.06);
}

.impacto-footer {
  margin-top: 45px;
  background: #4b8f2d;
  border-radius: 22px;
  padding: 35px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.impacto-footer-texto {
  flex: 1;
}

.impacto-footer-texto h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.impacto-footer-texto p {
  color: #edf8e6;
  line-height: 1.8;
}

.impacto-datos {
  display: flex;
  gap: 30px;
}

.impacto-datos div {
  text-align: center;
}

.impacto-datos strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.impacto-datos span {
  color: #eef8ea;
  font-size: 0.9rem;
}

.eventos {
  width: 100%;
  padding: 100px 8%;
  background: #f4f9ee;
}

.eventos.vacio {
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
}

.oculto {
  display: none;
}

.titulo-seccion {
  text-align: center;
  margin-bottom: 60px;
}

.titulo-seccion h2 {
  font-size: 42px;
  color: #1d1d1d;
  margin-bottom: 15px;
}

.titulo-seccion span {
  color: #2f6313;
}

.titulo-seccion p {
  color: #666;
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  line-height: 30px;
}

.contenedorEventos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.evento-flecha {
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%;
  background: #2f6313;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}

.evento-flecha:hover {
  transform: scale(1.08);
  background: #3d7b19;
}

.evento-slider {
  flex: 1;
  max-width: 1100px;
}

.evento-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.evento-card.salida {
  animation: fadeOut 0.2s ease forwards;
}

.evento-card.entrada {
  animation: fadeIn 0.32s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-6px);
    filter: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: none;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.evento-imagen {
  width: 100%;
  height: 500px;
}

.evento-imagen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.evento-info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.evento-fecha {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 12px 22px;
  border-radius: 40px;
  background: #2f6313;
  color: #fff;
  margin-bottom: 25px;
  font-size: 15px;
}

.evento-info h3 {
  font-size: 40px;
  color: #2f6313;
  margin-bottom: 25px;
}

.evento-info p {
  font-size: 18px;
  color: #666;
  line-height: 32px;
}

.evento-indicadores {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.evento-punto {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
  transition: 0.3s;
}

.evento-punto.activo {
  width: 42px;
  border-radius: 30px;
  background: #2f6313;
}

.Certificaciones {
  width: 100%;
  min-height: auto;
  background: #fff;
  padding: 40px 60px 80px;
}

.encabezado_clientes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 60px;
}

.encabezado_clientes h1 {
  color: #032700;
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 800;
}

.encabezado_clientes h1 span {
  color: #6da82f;
  font-size: 1.25em;
}

.encabezado_clientes p {
  width: 700px;
  margin: 25px 0 35px;
  color: #4f4f4f;
  font-size: 1.2em;
  line-height: 1.7;
}

.btn_cliente {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #4d8d28;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  transition: 0.4s;
}

.btn_cliente i {
  font-size: 1.5em;
}

.btn_cliente:hover {
  background: #032700;
  transform: translateY(-4px);
}

.logos_clientes {
  width: min(980px, 100%);
  margin: 62px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px 34px;
  place-items: center;
}

.logo_cliente {
  position: relative;
  width: clamp(138px, 12vw, 168px);
  min-height: 0;
  aspect-ratio: 1;
  padding: 24px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(77, 141, 40, 0.24);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(47, 99, 19, 0.12);
  overflow: hidden;
  isolation: isolate;
  transform: rotate(45deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.logo_cliente::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 168, 47, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.logo_cliente.abajo {
  margin-top: 0;
}

.logo_cliente:hover {
  transform: rotate(45deg) translate(-7px, -7px);
  border-color: rgba(77, 141, 40, 0.38);
  box-shadow: 0 24px 55px rgba(47, 99, 19, 0.2);
}

.logo_cliente:hover::before {
  opacity: 1;
}

.logo_cliente img {
  position: relative;
  z-index: 1;
  display: block;
  width: 112%;
  max-width: 100%;
  height: 112%;
  max-height: 112%;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.03);
  transform: rotate(-45deg);
}

.politica_logos {
  width: min(980px, 100%);
  margin: 72px auto 0;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(77, 141, 40, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(47, 99, 19, 0.1);
}

.politica_logos i {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf6e2;
  color: #2f6313;
  font-size: 32px;
}

.politica_logos h2 {
  margin-bottom: 12px;
  color: #032700;
  font-size: 1.45rem;
  line-height: 1.25;
}

.politica_logos p {
  color: #52604b;
  font-size: 1rem;
  line-height: 1.75;
}

.politica_logos a {
  display: inline-flex;
  margin-top: 16px;
  color: #2f6313;
  font-weight: 700;
  text-decoration: none;
}

.politica_logos a:hover {
  color: #032700;
}

.frase_clientes {
  margin: 90px auto 0;
  width: 720px;
  background: #2f6313;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 30px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.frase_clientes i {
  font-size: 3rem;
  margin-right: 30px;
}

.frase_clientes p {
  font-size: 1.35em;
  font-weight: 600;
  text-align: start;
}

.contacto {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #f4f9ee;
}

.titulo_contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
}

.sub_contacto {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d8d28;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 15px;
}

.sub_contacto i {
  font-size: 1.4em;
}

.titulo_contacto h1 {
  color: #032700;
  font-size: 4em;
  font-weight: 800;
  line-height: 1.1;
}

.titulo_contacto p {
  width: 720px;
  margin-top: 20px;
  color: #555;
  font-size: 1.1em;
  line-height: 1.8;
}

.contenedor_contacto {
  width: min(92%, 1640px);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(500px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.formulario_contacto {
  width: 100%;
  height: 100%;
  background: #2f6313;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.formulario_contacto h2 {
  color: #fff;
  font-size: 1.7em;
  margin-bottom: 26px;
}

.formulario_contacto form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.formulario_contacto form > .input_box {
  flex: 1;
  min-height: 240px;
}

.fila {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.fila:nth-of-type(2) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.fila:nth-of-type(2) .input_box:nth-child(3) {
  grid-column: 1 / -1;
  width: min(100%, 280px);
}

.input_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.input_box label {
  color: #fff;
  margin-bottom: 8px;
  font-size: 0.95em;
  font-weight: 500;
}

.input_box input {
  width: 100%;
  height: 54px;
  border: none;
  outline: none;
  border-radius: 30px;
  padding: 0 18px;
  font-size: 1em;
  min-width: 0;
}

.input_box textarea {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: none;
  outline: none;
  border-radius: 25px;
  padding: 20px;
  resize: none;
  font-size: 1em;
  margin-top: 5px;
}

.aceptacion_politicas {
  width: 100%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.55;
  cursor: pointer;
}

.aceptacion_politicas input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #4d8d28;
  cursor: pointer;
}

.aceptacion_politicas a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aceptacion_politicas a:hover {
  color: #dff1d1;
}

.formulario_contacto button {
  width: 230px;
  height: 54px;
  margin-top: 22px;
  border: none;
  border-radius: 30px;
  background: #fff;
  color: #2f6313;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.35s;
}

.formulario_contacto button:hover {
  background: #032700;
  color: #fff;
  transform: translateY(-3px);
}

.lado_contacto {
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
}

.info_contacto {
  width: 100%;
  background: #2f6313;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
  align-items: start;
  overflow: hidden;
}

.info_contacto h2 {
  color: #fff;
  font-size: 1.55em;
  margin-bottom: 2px;
  grid-column: 1 / -1;
}

.dato {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-bottom: 0;
  min-width: 0;
}

.dato:last-child {
  margin-bottom: 0;
}

.dato i {
  width: 46px;
  height: 46px;
  background: #4d8d28;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  flex-shrink: 0;
}

.dato h3 {
  color: #fff;
  font-size: 1em;
  margin-bottom: 8px;
}

.dato_info {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.dato p {
  color: #dfe8d6;
  line-height: 1.6;
}

.dato a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  background: #4d8d28;
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 25px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.25;
  transition: 0.3s;
}

.dato a:hover {
  background: #fff;
  color: #2f6313;
}

.mapa {
  width: 100%;
  min-height: 405px;
  border-radius: 25px;
  overflow: hidden;
  border: 4px solid #4d8d28;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 405px;
  border: 0;
}

.footer {
  width: 100%;
  background: #3f6f19;
  padding: 70px 8%;
  color: #fff;
  overflow: hidden;
}

.footer-contenedor {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 60px;
}

.footer-mascota {
  position: relative;
  height: 100%;
  width: 25%;
  margin-right: 100px;
}

.footer-mascota img {
  width: 120%;
  animation: flotar 3s ease-in-out infinite;
}

.footer-info {
  flex: 1;
}

.footer-info h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 45px;
}

.footer-columnas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 170px;
  min-width: 0;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #c9ff88;
  transform: translateX(8px);
}

.footer-contactos {
  flex-basis: 260px;
  max-width: 320px;
}

.footer-contactos a {
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-redes {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.footer-redes a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #8dc63f;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.7rem;
  transition: 0.35s;
}

.footer-redes a:hover {
  background: #fff;
  color: #3f6f19;
  transform: translateY(-8px);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 45px;
  padding-top: 20px;
  color: #dfe8d6;
}

.footer-copy p {
  margin: 8px 0;
}

@keyframes flotar {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #dfe8d6;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #032700, #4a7c29);
  border-radius: 50px;
  border: 2px solid #dfe8d6;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4a7c29, #032700);
}
.orbit-logo {
  display: none;
}

.info_contacto .dato:nth-of-type(2),
.info_contacto .dato:nth-of-type(3) {
  grid-column: span 1;
}

/* AJUSTES PUNTUALES */
#Carrusel .content {
  z-index: 120;
}

#Carrusel .subtitle,
#Carrusel .content h1,
#Carrusel .content p,
#Carrusel .buttons {
  position: relative;
  z-index: 121;
}

#Carrusel .hero-circuit {
  z-index: 20;
  opacity: 1;
  pointer-events: none;
  filter: saturate(1.18) brightness(1.08)
    drop-shadow(0 0 18px rgba(141, 198, 63, 0.72));
}

#Carrusel .circuit-left {
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 68%,
    rgba(0, 0, 0, 0.22) 84%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 68%,
    rgba(0, 0, 0, 0.22) 84%,
    transparent 100%
  );
}

#Carrusel .circuit-right {
  -webkit-mask-image: linear-gradient(
    270deg,
    #000 0%,
    #000 68%,
    rgba(0, 0, 0, 0.22) 84%,
    transparent 100%
  );
  mask-image: linear-gradient(
    270deg,
    #000 0%,
    #000 68%,
    rgba(0, 0, 0, 0.22) 84%,
    transparent 100%
  );
}

.boton_solicitud {
  flex: 0 0 auto;
  white-space: nowrap;
}

.boton_solicitud a {
  white-space: nowrap;
}

.botones_redes {
  position: fixed;
  right: 22px;
  top: calc(50% + 46px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  visibility: visible;
  opacity: 1;
  z-index: 999;
  gap: 12px;
  transition: 0.4s;
}

.botones_redes.ocultar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(120px);
}

.botones_redes a {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  flex: 0 0 60px;
}

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

.footer-redes a {
  width: 55px;
  min-width: 55px;
  max-width: 55px;
  height: 55px;
  min-height: 55px;
  max-height: 55px;
  flex: 0 0 55px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-redes a i {
  line-height: 1;
}

.info_contacto .dato {
  min-width: 0;
}

.info_contacto .dato_info {
  min-width: 0;
  overflow: visible;
}

.info_contacto .dato a {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* RESPONSIVE */

@media (prefers-reduced-motion: reduce) {
  .hv-aos {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 1600px) {
  .fila:nth-of-type(2) {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr) minmax(0, 0.95fr);
  }

  .fila:nth-of-type(2) .input_box:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 1500px) {
  header {
    height: 96px;
    padding: 10px 24px;
    gap: 18px;
  }

  .logo {
    width: 190px;
    height: 92px;
    margin: 0;
    flex-shrink: 0;
  }

  header ul {
    gap: 18px;
    margin-right: 0;
  }

  header ul li a {
    font-size: 0.98rem;
  }

  .boton_solicitud {
    padding: 12px 14px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .contenido-inicio h1 {
    font-size: clamp(3rem, 4vw, 4.5rem);
  }

  .proceso {
    padding: 90px 40px;
  }

  .contenedor_proceso {
    margin-right: 0;
    flex-wrap: wrap;
    gap: 22px;
  }

  .flecha {
    display: none;
  }

  .paso {
    width: min(30%, 260px);
    min-width: 230px;
    height: auto;
    min-height: 280px;
  }
}

@media (max-width: 1400px) {
  .content h1 {
    font-size: 70px;
  }
}

@media (max-width: 1200px) {
  .content {
    width: 470px;
  }

  .content h1 {
    font-size: 64px;
  }

  .thumb {
    width: 120px;
    height: 78px;
  }

  .thumb.active {
    width: 180px;
  }
  header {
    height: 86px;
  }

  .logo {
    width: 170px;
    height: 80px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border-radius: 50%;
    background: #e5f3da;
  }

  header nav {
    order: 4;
  }

  header ul.nav-links {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 16px 24px 24px;
    background: #fff;
    border-top: 1px solid rgba(3, 39, 0, 0.08);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 999;
  }

  header ul.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  header ul.nav-links li {
    width: 100%;
    text-align: center;
  }

  header ul.nav-links li a {
    display: block;
    width: 100%;
    padding: 14px 10px;
    font-size: 1rem;
  }

  .boton_solicitud {
    margin-left: 0;
  }

  .Carrusel {
    min-height: auto;
    padding-top: 86px;
  }

  .carrusel-body {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .contenido-inicio {
    width: 100%;
    padding: 70px 8% 38px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contenido-inicio p {
    max-width: 760px;
  }

  .slider {
    width: 100%;
    height: clamp(330px, 48vw, 520px);
    order: -1;
  }

  .slider::before {
    display: none;
  }

  .metricas-impacto {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .metrica-item:not(:last-child)::after {
    display: none;
  }

  .Nosotros {
    height: auto;
    min-height: auto;
    padding: 90px 6%;
  }

  .titulo_nos h1,
  .titulo_contacto h1,
  .encabezado_clientes h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  .titulo_nos h2 {
    font-size: clamp(1.45rem, 3vw, 2.3rem);
  }

  .Servicios {
    padding: 80px 28px;
  }

  .titulo_serv {
    padding: 0;
    margin-bottom: 45px;
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
  }

  .impacto-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .evento-info {
    padding: 45px;
  }

  .evento-info h3 {
    font-size: 34px;
  }

  .contenedor_contacto {
    width: min(94%, 1180px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .formulario_contacto,
  .lado_contacto {
    width: 100%;
  }

  .lado_contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: stretch;
  }

  .mapa {
    height: auto;
    min-height: 400px;
  }

  .mapa iframe {
    min-height: 400px;
  }

  .footer-contenedor {
    align-items: center;
    gap: 35px;
  }

  .footer-mascota {
    width: 28%;
    margin-right: 20px;
  }

  .footer-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  section {
    scroll-margin-top: 86px;
  }

  .Carrusel {
    min-height: auto;
  }

  .carrusel-body {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  .content h1 {
    font-size: 58px;
  }

  .content {
    width: 460px;
  }
  .orbit-card.left {
    transform: translate(calc(-50% - 320px), -20%) rotate(-20deg);
  }

  .orbit-card.right {
    transform: translate(calc(-50% + 320px), -20%) rotate(20deg);
  }

  .orbit-card.active {
    width: 260px;
    height: 465px;
  }

  .orbit-info {
    top: 60%;
  }
}

@media (max-width: 1050px) {
  .contenedor_contacto {
    grid-template-columns: 1fr;
  }

  .lado_contacto {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .info_contacto {
    grid-template-columns: 1fr;
  }

  .mapa {
    min-height: 380px;
  }

  .mapa iframe {
    min-height: 380px;
  }
}

@media (max-width: 992px) {
  .content {
    left: 50%;
    top: 48%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .navigation {
    padding: 0 15px;
  }

  .navigation button {
    width: 46px;
    height: 46px;
  }

  .indicators {
    bottom: 135px;
  }
}

@media (max-width: 900px) {
  .content {
    width: 85%;
  }

  .content h1 {
    font-size: 50px;
  }
  header {
    padding: 8px 18px;
  }

  .boton_solicitud {
    display: none;
  }

  .botones_redes {
    right: 14px;
    gap: 9px;
  }

  .botones_redes a {
    width: 46px;
    height: 46px;
    font-size: 1.25em;
  }

  .contenido-inicio {
    padding: 52px 6% 34px;
  }

  .contenido-inicio h1 {
    font-size: clamp(2.35rem, 8vw, 3.35rem);
  }

  .contenido-inicio p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .metricas-impacto {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    padding: 24px 6%;
  }

  .metrica-item {
    justify-content: flex-start;
    min-width: 0;
  }

  .titulo_nos {
    margin-bottom: 42px;
  }

  .titulo_nos p,
  .titulo_contacto p,
  .encabezado_clientes p {
    width: 100%;
    font-size: 1rem;
  }

  .cajitas.active .box {
    max-height: 520px;
  }

  .contenedor_servicios {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 34px 22px;
  }

  .caja_servicio {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .proceso {
    padding: 75px 24px;
  }

  .titulo_proceso {
    margin-bottom: 45px;
    text-align: center;
  }

  .titulo_proceso h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .paso {
    width: calc(50% - 14px);
    min-width: 240px;
    min-height: 285px;
  }
  .impacto {
    padding: 90px 6%;
  }

  .impacto-card {
    flex-direction: column;
  }

  .impacto-info {
    width: 100%;
    padding: 35px;
  }

  .impacto-imagen {
    width: 100%;
    height: 320px;
    border-radius: 0;
  }

  .impacto-footer {
    flex-direction: column;
    text-align: center;
  }

  .impacto-datos {
    justify-content: center;
    flex-wrap: wrap;
  }

  .eventos {
    padding: 90px 6%;
  }

  .contenedorEventos {
    gap: 15px;
  }

  .evento-card {
    grid-template-columns: 1fr;
  }

  .evento-imagen {
    height: 380px;
  }

  .evento-info {
    padding: 35px;
  }

  .evento-info h3 {
    font-size: 32px;
  }

  .evento-info p {
    font-size: 17px;
    line-height: 28px;
  }

  .Certificaciones {
    padding: 70px 24px;
  }

  .encabezado_clientes {
    margin: 0 auto 45px;
  }

  .logos_clientes {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 42px 26px;
  }

  .logo_cliente,
  .logo_cliente.abajo {
    width: clamp(124px, 20vw, 152px);
    padding: clamp(18px, 3vw, 22px);
  }

  .logo_cliente img {
    height: 112%;
  }

  .politica_logos {
    margin-top: 56px;
    padding: 30px;
  }

  .frase_clientes {
    width: 100%;
    margin-top: 65px;
  }

  .contacto {
    padding: 80px 0;
  }

  .fila {
    flex-direction: column;
  }

  .lado_contacto {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 58px 6%;
  }

  .footer-contenedor {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-mascota {
    width: min(260px, 70%);
    margin: 0 auto;
  }

  .footer-mascota img {
    width: 100%;
  }
  .botones_redes {
    top: auto;
    right: 16px;
    bottom: 18px;
    transform: none;
  }

  .botones_redes.ocultar {
    transform: translateX(120px);
  }

  .contenido-inicio a,
  .boton_solicitud a,
  .formulario_contacto button,
  .btn_cliente {
    min-height: 48px;
  }

  .impacto-card,
  .evento-card,
  .formulario_contacto,
  .info_contacto,
  .impacto-footer {
    border-radius: 20px;
  }

  .footer-columnas {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content {
    width: 92%;
  }

  .content h1 {
    font-size: 40px;
  }

  .buttons {
    gap: 12px;
  }

  .progress-bar {
    height: 3px;
  }
  .hero-slider {
    height: 100vh;
  }

  .content {
    width: 90%;
  }

  .content h1 {
    font-size: 42px;
  }

  .content p {
    font-size: 16px;
  }

  .subtitle {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 230px;
  }

  .thumbnails {
    display: none;
  }

  .indicators {
    bottom: 35px;
  }

  .navigation button {
    width: 45px;
    height: 45px;
  }
  .video-circle-stage {
    height: 620px;
  }

  .orbit-card.left,
  .orbit-card.right {
    display: none;
  }

  .orbit-card.active {
    width: 320px;
    height: 200px;
  }

  .orbit-info {
    top: 56%;

    padding: 22px;
  }

  .orbit-info h3 {
    font-size: 1.4rem;
  }

  .video-circle-header h2 {
    font-size: 2.2rem;
  }

  .circle-1 {
    width: 900px;
    height: 900px;
  }

  .circle-2 {
    width: 650px;
    height: 650px;
  }

  .circle-3 {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 700px) {
  .fila {
    flex-direction: column;
  }

  .formulario_contacto,
  .info_contacto {
    padding: 28px;
  }

  .mapa {
    min-height: 330px;
  }

  .mapa iframe {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 76px;
  }

  header {
    height: 76px;
    padding: 8px 14px;
  }

  .logo {
    width: 135px;
    height: 66px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.75rem;
  }

  header ul.nav-links {
    top: 76px;
    max-height: calc(100vh - 76px);
  }

  .Carrusel {
    padding-top: 76px;
    height: 100vh;
  }

  .slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .contenido-inicio {
    padding: 42px 20px 32px;
  }

  .contenido-inicio h1 {
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .contenido-inicio a {
    width: 100%;
    max-width: 320px;
    padding: 15px 24px;
  }

  .metricas-impacto {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .metrica-item {
    justify-content: center;
    text-align: left;
  }

  .Nosotros,
  .Servicios,
  .proceso,
  .Certificaciones {
    padding-left: 18px;
    padding-right: 18px;
  }

  .Nosotros {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .titulo_nos h1,
  .titulo_contacto h1,
  .encabezado_clientes h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .titulo_nos p {
    line-height: 1.65;
  }

  .titulo_box {
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .titulo_box > i:first-child {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.45rem;
  }

  .titulo_box h2 {
    font-size: 1.05rem;
  }

  .btn-toggle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .box p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .Servicios {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .contenedor_servicios {
    grid-template-columns: 1fr;
  }

  .caja_servicio {
    max-width: 285px;
    height: 370px;
  }

  .tarjeta {
    height: 305px;
  }

  .text_servicio {
    padding: 0 18px;
  }

  .proceso {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .contenedor_proceso {
    display: grid;
    grid-template-columns: 1fr;
  }

  .paso {
    width: 100%;
    min-width: 0;
    min-height: auto;
    border-radius: 18px;
  }

  .impacto {
    padding: 70px 20px;
  }

  .impacto .titulo-seccion h2 {
    font-size: 2.3rem;
  }

  .impacto .titulo-seccion p {
    font-size: 1rem;
  }

  .impacto-info {
    padding: 28px;
  }

  .impacto-info h3 {
    font-size: 1.5rem;
  }

  .impacto-icono {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .impacto-imagen {
    height: 260px;
  }

  .impacto-footer {
    padding: 30px 25px;
  }

  .impacto-footer-texto h3 {
    font-size: 1.6rem;
  }

  .impacto-datos {
    gap: 20px;
  }

  .impacto-datos strong {
    font-size: 1.5rem;
  }

  .eventos {
    padding: 70px 20px;
  }

  .titulo-seccion {
    margin-bottom: 40px;
  }

  .titulo-seccion h2 {
    font-size: 34px;
  }

  .titulo-seccion p {
    font-size: 16px;
    line-height: 28px;
  }

  .contenedorEventos {
    position: relative;
  }

  .evento-slider {
    width: 100%;
  }

  .evento-card {
    border-radius: 22px;
  }

  .evento-imagen {
    height: 260px;
  }

  .evento-info {
    padding: 28px;
  }

  .evento-fecha {
    font-size: 14px;
  }

  .evento-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .evento-info p {
    font-size: 16px;
    line-height: 28px;
  }

  .evento-flecha {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .Certificaciones {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .encabezado_clientes h1 span {
    font-size: 1em;
  }

  .btn_cliente {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    text-align: center;
  }

  .logos_clientes {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 38px 22px;
  }

  .politica_logos {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    text-align: center;
  }

  .politica_logos i {
    margin: 0 auto;
  }

  .frase_clientes {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 22px 18px;
  }

  .frase_clientes i {
    margin-right: 0;
    font-size: 2.3rem;
  }

  .frase_clientes p {
    text-align: center;
    font-size: 1.02rem;
  }

  .contacto {
    padding: 68px 0;
  }

  .titulo_contacto {
    width: 90%;
    margin: 0 auto 42px;
  }

  .formulario_contacto,
  .info_contacto {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .formulario_contacto h2,
  .info_contacto h2 {
    font-size: 1.35rem;
  }

  .input_box input {
    height: 50px;
  }

  .input_box textarea {
    height: 170px;
    min-height: 170px;
  }

  .formulario_contacto form > .input_box {
    min-height: 170px;
  }

  .formulario_contacto button {
    width: 100%;
  }

  .dato {
    gap: 12px;
  }

  .dato i {
    width: 44px;
    height: 44px;
    font-size: 1.25em;
  }

  .dato a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .mapa {
    height: 280px;
    min-height: 280px;
    border-radius: 18px;
  }

  .mapa iframe {
    min-height: 280px;
  }

  .footer {
    padding: 48px 20px;
  }

  .footer-info h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .footer-columnas {
    gap: 28px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-redes {
    flex-wrap: wrap;
  }
  .Carrusel {
    height: auto;
    min-height: auto;
    padding-top: 76px;
    background: #ffffff;
  }

  .carrusel-body {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .slider {
    position: relative;
    order: 0;
    height: 280px;
    min-height: 280px;
  }

  .slide img {
    object-position: center;
  }

  .contenido-inicio {
    position: relative;
    z-index: 10;
    order: 1;
    padding: 34px 20px 30px;
    background: #ffffff;
  }

  .contenido-inicio p {
    line-height: 1.65;
  }

  .metricas-impacto {
    order: 2;
    position: relative;
  }

  .botones_redes {
    display: none;
  }

  .titulo_serv,
  .titulo_proceso,
  .titulo-seccion,
  .titulo_contacto,
  .encabezado_clientes {
    text-align: center;
  }

  .sub_serv,
  .titulo_proceso .sub_pro {
    justify-content: center;
  }

  .impacto-card,
  .evento-card,
  .impacto-footer,
  .formulario_contacto,
  .info_contacto,
  .frase_clientes {
    border-radius: 18px;
  }

  .evento-flecha {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary {
    height: 48px;
  }

  .navigation button {
    width: 42px;
    height: 42px;
  }
  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .subtitle {
    font-size: 12px;
  }
  .impacto {
    padding: 60px 16px;
  }

  .impacto .titulo-seccion h2 {
    font-size: 2rem;
  }

  .impacto-info {
    padding: 22px;
  }

  .impacto-imagen {
    height: 220px;
  }

  .impacto-footer {
    padding: 25px 18px;
  }

  .impacto-footer-texto h3 {
    font-size: 1.4rem;
  }

  .impacto-datos {
    flex-direction: column;
    gap: 15px;
  }

  .eventos {
    padding: 60px 16px;
  }

  .titulo-seccion h2 {
    font-size: 30px;
  }

  .evento-imagen {
    height: 220px;
  }

  .evento-info {
    padding: 22px;
  }

  .evento-fecha {
    padding: 9px 16px;
    font-size: 13px;
  }

  .evento-info h3 {
    font-size: 24px;
  }

  .evento-info p {
    font-size: 15px;
    line-height: 26px;
  }

  .evento-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .evento-flecha.izquierda {
    left: -6px;
  }

  .evento-flecha.derecha {
    right: -6px;
  }
}

@media (max-width: 420px) {
  .slider {
    height: 250px;
    min-height: 250px;
  }

  .contenido-inicio {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contenido-inicio h1 {
    font-size: 1.95rem;
  }

  .metrica-info h3 {
    font-size: 1.35rem;
  }

  .icon-metrica {
    font-size: 2rem;
  }

  .titulo_box h2,
  .paso h3,
  .impacto-info h3,
  .footer-col h3 {
    overflow-wrap: anywhere;
  }

  .evento-flecha.izquierda {
    left: 4px;
  }

  .evento-flecha.derecha {
    right: 4px;
  }
}

@media (max-width: 380px) {
  .contenido-inicio h1,
  .titulo_nos h1,
  .titulo_contacto h1,
  .encabezado_clientes h1 {
    font-size: 1.75rem;
  }

  .metrica-item {
    justify-content: flex-start;
  }

  .logos_clientes {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .politica_logos {
    border-radius: 18px;
  }

  .logo_cliente,
  .logo_cliente.abajo {
    width: 132px;
  }
}

@media (min-width: 1201px) and (max-height: 760px) {
  header {
    height: 86px;
    padding: 8px 32px;
  }

  .logo {
    width: 170px;
    height: 78px;
  }

  header ul {
    gap: 22px;
  }

  header ul li a {
    font-size: 1rem;
  }

  .boton_solicitud {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  #Carrusel.hero-slider {
    min-height: 620px;
    padding-top: 86px;
  }

  #Carrusel .content {
    top: 48%;
    width: min(42vw, 520px);
  }

  .subtitle {
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 4px;
  }

  .content h1 {
    margin-bottom: 12px;
    font-size: clamp(3.1rem, 5.2vw, 4.45rem);
  }

  .content p {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .btn-primary,
  .btn-secondary {
    height: 46px;
    padding: 0 26px;
  }

  .navigation {
    top: 52%;
  }

  .navigation button {
    width: 52px;
    height: 52px;
  }

  .indicators {
    bottom: 118px;
  }

  .thumbnails {
    bottom: 22px;
    gap: 14px;
  }

  .thumb {
    width: 130px;
    height: 76px;
    border-radius: 12px;
  }

  .thumb.active {
    width: 188px;
    transform: translateY(-6px);
  }

  .botones_redes {
    top: calc(50% + 72px);
    gap: 10px;
  }

  .botones_redes a {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 1200px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    min-width: 320px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  #Carrusel.hero-slider {
    padding-top: 86px;
  }

  .navigation .next {
    margin-right: 0;
  }

  .video-circle-section,
  .impacto,
  .eventos,
  .Certificaciones,
  .contacto,
  .footer {
    overflow-x: clip;
  }

  .contenedor_servicios,
  .impacto-grid,
  .contenedor_contacto,
  .footer-contenedor {
    width: min(94%, 1180px);
  }
}

@media (max-width: 992px) {
  section {
    scroll-margin-top: 86px;
  }

  #Carrusel.hero-slider {
    min-height: 100svh;
  }

  .navigation {
    padding: 0 clamp(14px, 4vw, 32px);
  }

  .navigation .next {
    margin-right: 0;
  }

  .botones_redes {
    top: auto;
    right: 16px;
    bottom: 18px;
    gap: 9px;
    transform: none;
  }

  .botones_redes.ocultar {
    transform: translateX(120px);
  }

  .botones_redes a {
    width: 46px;
    height: 46px;
    font-size: 1.25em;
  }

  .content {
    left: 50%;
    top: 50%;
    width: min(88%, 640px);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .content h1 {
    font-size: clamp(2.6rem, 7vw, 4rem);
  }

  .content p {
    margin-inline: auto;
    font-size: 1rem;
  }

  .buttons {
    justify-content: center;
  }

  .thumbnails {
    display: none;
  }

  .contenedor_servicios {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 30px 22px;
  }

  .caja_servicio {
    width: 100%;
    max-width: 310px;
    margin-inline: auto;
  }

  .video-circle-section {
    padding: 82px 22px;
  }

  .video-circle-header {
    width: min(92%, 760px);
  }

  .video-circle-stage {
    width: 100%;
    height: 900px;
  }

  .contenedor_proceso {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    place-items: stretch;
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .paso {
    width: 100%;
    min-width: 0;
  }

  .impacto-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .impacto-info,
  .impacto-imagen {
    width: 100%;
  }

  .contacto {
    padding-inline: 0;
  }

  .contenedor_contacto {
    grid-template-columns: 1fr;
  }

  .lado_contacto {
    grid-template-columns: 1fr;
  }

  .footer-contenedor {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .navigation .next {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  header {
    height: 76px;
    padding: 8px 14px;
  }

  .logo {
    width: 136px;
    height: 64px;
  }

  header ul.nav-links {
    top: 76px;
    max-height: calc(100svh - 76px);
  }

  #Carrusel.hero-slider {
    height: auto;
    min-height: 100svh;
    padding-top: 76px;
  }

  #Carrusel .slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  #Carrusel .content {
    top: 52%;
    width: min(90%, 460px);
  }

  .content h1 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .content p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: min(100%, 260px);
  }

  .navigation {
    padding: 0 14px;
  }

  .indicators {
    bottom: 26px;
  }

  .Nosotros,
  .Servicios,
  .video-circle-section,
  .proceso,
  .impacto,
  .eventos,
  .Certificaciones,
  .contacto {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .titulo_nos,
  .titulo_serv,
  .titulo_proceso,
  .titulo-seccion,
  .titulo_contacto,
  .encabezado_clientes {
    width: min(92%, 680px);
    margin-inline: auto;
    text-align: center;
  }

  .titulo_nos p,
  .titulo_contacto p,
  .encabezado_clientes p,
  .titulo-seccion p {
    width: 100%;
  }

  .contenedor_servicios {
    grid-template-columns: 1fr;
  }

  .video-circle-stage {
    height: 580px;
  }

  .orbit-card.left,
  .orbit-card.right {
    display: none;
  }

  .orbit-card.active {
    width: min(82vw, 340px);
    height: 210px;
  }

  .orbit-info {
    width: min(90%, 420px);
    top: 58%;
  }

  .contenedor_proceso {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .impacto-card,
  .evento-card,
  .impacto-footer {
    border-radius: 18px;
  }

  .impacto-info,
  .evento-info {
    padding: 26px;
  }

  .impacto-imagen,
  .evento-imagen {
    height: clamp(220px, 52vw, 320px);
  }

  .evento-flecha {
    width: 48px;
    height: 48px;
  }

  .logos_clientes {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 36px 18px;
  }

  .formulario_contacto,
  .info_contacto {
    padding: 24px 18px;
  }

  .info_contacto {
    grid-template-columns: 1fr;
  }

  .mapa,
  .mapa iframe {
    min-height: 300px;
  }

  .footer-columnas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) and (max-height: 700px) {
  #Carrusel.hero-slider {
    min-height: 620px;
  }

  #Carrusel .content {
    top: 52%;
  }

  .subtitle {
    margin-bottom: 8px;
  }

  .content h1 {
    margin-bottom: 10px;
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  .content p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .buttons {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 44px;
  }

  .indicators {
    bottom: 18px;
  }
}

@media (max-width: 520px) {
  #Carrusel .content {
    top: 51%;
    width: min(92%, 360px);
  }

  .subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .content h1 {
    font-size: clamp(1.95rem, 11vw, 2.6rem);
  }

  .content p {
    font-size: 0.94rem;
  }

  .navigation button {
    width: 40px;
    height: 40px;
  }

  .Nosotros,
  .Servicios,
  .video-circle-section,
  .proceso,
  .impacto,
  .eventos,
  .Certificaciones,
  .contacto {
    padding-inline: 16px;
  }

  .contacto {
    padding-inline: 0;
  }

  .titulo_nos h1,
  .titulo_contacto h1,
  .encabezado_clientes h1,
  .titulo-seccion h2,
  .impacto .titulo-seccion h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    line-height: 1.18;
  }

  .titulo_serv h1,
  .titulo_proceso h1,
  .video-circle-header h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    line-height: 1.18;
  }

  .caja_servicio {
    max-width: 286px;
  }

  .video-circle-stage {
    height: 520px;
  }

  .orbit-card.active {
    width: min(84vw, 300px);
    height: 190px;
  }

  .orbit-info {
    top: 60%;
    padding: 20px;
  }

  .impacto-datos,
  .footer-columnas {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contenedorEventos {
    padding-inline: 0;
  }

  .evento-flecha {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
  }

  .evento-flecha.izquierda {
    left: 4px;
  }

  .evento-flecha.derecha {
    right: 4px;
  }

  .formulario_contacto button,
  .btn_cliente {
    width: 100%;
  }

  .dato {
    align-items: flex-start;
  }

  .dato a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  #Carrusel .content {
    width: min(92%, 320px);
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .buttons {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .logo_cliente,
  .logo_cliente.abajo {
    width: 124px;
  }
}

@media (min-width: 1101px) and (max-width: 1200px) {
  header {
    height: 96px;
    padding: 10px 16px;
    gap: 12px;
  }

  .logo {
    width: 150px;
    height: 76px;
    margin: 0;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: none;
  }

  header nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    order: initial;
  }

  header ul.nav-links {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    max-height: none;
    gap: 12px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    z-index: auto;
  }

  header ul.nav-links li {
    width: auto;
    text-align: initial;
  }

  header ul.nav-links li a {
    display: inline-flex;
    width: auto;
    padding: 8px 0;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .boton_solicitud {
    flex-shrink: 0;
    margin-left: 0;
    padding: 10px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .Carrusel {
    padding-top: 96px;
  }
}

@media (max-width: 1200px) {
  #Carrusel.hero-slider {
    height: 100svh;
    min-height: 680px;
    padding-top: 86px;
  }

  #Carrusel .slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  #Carrusel .slide,
  #Carrusel .slide img {
    width: 100%;
    height: 100%;
  }

  #Carrusel .slide img {
    object-fit: cover;
    object-position: center;
  }

  #Carrusel .content {
    top: 52%;
  }

  #Carrusel .indicators {
    bottom: clamp(28px, 7vh, 74px);
  }
}

@media (min-width: 993px) {
  #Carrusel .content {
    left: clamp(92px, 8vw, 130px);
  }

  #Carrusel .navigation {
    padding-left: clamp(16px, 1.7vw, 28px);
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  #Carrusel.hero-slider {
    min-height: 650px;
  }

  #Carrusel .content {
    top: 50%;
    width: min(82%, 660px);
    padding-inline: 58px;
  }

  #Carrusel .content h1 {
    font-size: clamp(3rem, 7.2vw, 4.3rem);
  }

  #Carrusel .content p {
    max-width: 620px;
  }

  #Carrusel .navigation {
    top: 50%;
    padding: 0 clamp(18px, 3.5vw, 34px);
  }

  #Carrusel .indicators {
    bottom: 42px;
  }
}

@media (max-width: 768px) {
  #Carrusel.hero-slider {
    min-height: max(620px, 100svh);
    padding-top: 76px;
  }

  #Carrusel .content {
    top: 50%;
    padding-inline: 46px;
  }

  #Carrusel .navigation {
    top: 50%;
  }
}

@media (max-width: 520px) {
  #Carrusel.hero-slider {
    min-height: max(640px, 100svh);
  }

  #Carrusel .content {
    width: min(92%, 360px);
    padding-inline: 0;
  }

  #Carrusel .navigation {
    top: auto;
    bottom: 76px;
    padding: 0 18px;
    transform: none;
  }

  #Carrusel .indicators {
    bottom: 22px;
  }
}

@media (max-width: 380px) {
  #Carrusel.hero-slider {
    min-height: 660px;
  }
}

@media (max-width: 900px) {
  .video-circle-section {
    padding: 90px 0 45px;
  }

  .video-circle-stage {
    --card-top: 39%;
    --info-top: calc(var(--card-top) + 205px);
    height: 680px;
  }

  .orbit-card.active {
    width: 260px;
    height: 465px;
  }

  .orbit-card.left {
    width: 130px;
    height: 235px;
    transform: translate(calc(-50% - 235px), -24%) rotate(-16deg);
  }

  .orbit-card.right {
    width: 130px;
    height: 235px;
    transform: translate(calc(-50% + 235px), -24%) rotate(16deg);
  }

  .orbit-info {
    width: 260px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .video-circle-section {
    padding: 75px 0 45px;
  }

  .video-circle-stage {
    --card-top: 38%;
    --info-top: calc(var(--card-top) + 198px);
    height: 670px;
  }

  .orbit-card.active {
    width: 255px;
    height: 455px;
  }

  .orbit-card.left {
    width: 115px;
    height: 210px;
    transform: translate(calc(-50% - 205px), -18%) rotate(-14deg);
  }

  .orbit-card.right {
    width: 115px;
    height: 210px;
    transform: translate(calc(-50% + 205px), -18%) rotate(14deg);
  }

  .orbit-info {
    width: 255px;
    padding: 16px 18px;
  }

  .orbit-info h3 {
    font-size: 1.25rem;
  }

  .orbit-info p {
    font-size: .84rem;
  }

  .orbit-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  #Experiencias.video-circle-section {
    padding: 72px 16px 68px;
  }

  #Experiencias .video-circle-stage {
    height: 740px;
    margin-top: 26px;
  }

  #Experiencias .orbit-card {
    top: 34%;
  }

  #Experiencias .orbit-card.active {
    width: min(66vw, 285px);
    height: min(118vw, 505px);
  }

  #Experiencias .orbit-card.left,
  #Experiencias .orbit-card.right {
    display: block;
    width: min(30vw, 150px);
    height: min(54vw, 265px);
    opacity: 0.55;
  }

  #Experiencias .orbit-card.left {
    transform: translate(calc(-50% - 43vw), -22%) rotate(-15deg);
  }

  #Experiencias .orbit-card.right {
    transform: translate(calc(-50% + 43vw), -22%) rotate(15deg);
  }

  #Experiencias .orbit-info {
    top: 69%;
    width: min(92%, 390px);
    padding: 20px 20px;
    border-radius: 22px;
    text-align: center;
  }

  #Experiencias .orbit-info h3 {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
    line-height: 1.18;
  }

  #Experiencias .orbit-info p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  #Experiencias .orbit-controls {
    top: calc(62% + 135px + var(--extra-info-height, 0px));
  }
}

@media (max-width: 520px) {
  #Experiencias .video-circle-stage {
    height: 700px;
  }

  #Experiencias .orbit-card.active {
    width: min(70vw, 270px);
    height: min(124vw, 480px);
  }

  #Experiencias .orbit-card.left,
  #Experiencias .orbit-card.right {
    width: 120px;
    height: 215px;
  }

  #Experiencias .orbit-info {
    top: 68%;
    width: min(92%, 360px);
    padding: 18px;
  }

  #Experiencias .orbit-controls {
    bottom: 30px;
  }
}

@media (max-width: 620px) {
  .footer-redes {
    justify-content: center;
    width: 100%;
    gap: 18px;
  }

  .footer-col:has(.footer-redes) {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 1051px) and (max-width: 1350px) {
  .info_contacto {
    grid-template-columns: 1fr;
  }

  .info_contacto .dato {
    max-width: 100%;
  }

  .info_contacto .dato a {
    white-space: normal;
  }
}

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

  .info_contacto .dato a {
    padding-inline: 10px;
    font-size: 0.88rem;
    white-space: normal;
  }
}

@media (min-width: 1351px) and (max-width: 1800px) {
  .info_contacto {
    gap: 20px;
  }

  .info_contacto .dato {
    gap: 12px;
  }

  .info_contacto .dato i {
    width: 42px;
    height: 42px;
    font-size: 1.35em;
  }

  .info_contacto .dato a {
    padding-inline: 10px;
    font-size: 0.86rem;
    white-space: normal;
  }
}

@media (max-width: 1050px) {
  .fila,
  .fila:nth-of-type(2) {
    grid-template-columns: 1fr;
  }

  .fila:nth-of-type(2) .input_box:nth-child(3) {
    width: 100%;
  }

  .info_contacto .dato a {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .dato {
    gap: 12px;
  }

  .dato i {
    width: 42px;
    height: 42px;
    font-size: 1.35em;
  }

  .info_contacto .dato a {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
  }
}

@media (min-width: 1201px) {
  header {
    height: 118px;
    padding-inline: clamp(32px, 4vw, 66px);
    border-radius: 0 0 58px 58px;
  }

  #Carrusel.hero-slider {
    padding-top: 0;
  }

  #Carrusel .content {
    left: clamp(150px, 13vw, 245px);
    width: min(560px, 42vw);
  }

  #Carrusel .navigation {
    padding: 0 34px;
  }

  #Carrusel .navigation .next {
    margin-right: 78px;
  }
}

@media (max-width: 1200px) {
  header {
    left: 0;
    width: 100%;
    height: 86px;
    padding: 8px clamp(18px, 4vw, 34px);
    border-radius: 0;
    transform: none;
  }

  header::before,
  header::after {
    display: none;
  }

  .hero-circuit {
    top: 86px;
    width: min(32vw, 260px);
    opacity: 0.45;
  }

  .circuit-left {
    left: -60px;
  }

  .circuit-right {
    right: -70px;
  }

  .hero-brand-mark {
    top: 118px;
    left: 24px;
    width: 94px;
    opacity: 0.76;
  }
}

@media (max-width: 768px) {
  .hero-circuit,
  .hero-brand-mark {
    display: none;
  }

  #Carrusel .content {
    z-index: 30;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-circuit,
  .hero-circuit::before,
  .hero-circuit::after,
  .hero-circuit span {
    animation: none;
  }
}

@media (min-width: 1201px) {
  #Carrusel .content {
    left: clamp(185px, 14vw, 270px);
    width: min(590px, 43vw);
  }
  #Carrusel .content {
    left: clamp(205px, 15vw, 292px);
  }

  #Carrusel .navigation {
    padding: 0 clamp(28px, 2.2vw, 44px);
  }

  #Carrusel .navigation .next {
    margin-right: clamp(72px, 5vw, 96px);
  }
}

@media (max-width: 1350px) and (min-width: 1201px) {
  header {
    height: 88px;
  }

  .logo {
    width: 138px;
    height: 78px;
  }

  header ul {
    gap: 14px;
  }

  header ul li a {
    font-size: 0.82rem;
  }

  .boton_solicitud {
    padding: 11px 15px;
  }

  .boton_solicitud a {
    font-size: 0.8rem;
  }
}

@media (min-width: 1201px) {
  #Carrusel .content {
    left: clamp(205px, 15vw, 292px);
  }

  #Carrusel .hero-circuit {
    width: min(24vw, 360px);
  }

  #Carrusel .circuit-left {
    left: clamp(-96px, -5vw, -64px);
  }

  #Carrusel .circuit-right {
    right: clamp(-96px, -5vw, -64px);
  }
}

@media (max-width: 1200px) {
  #Carrusel .hero-circuit {
    opacity: 1;
    width: min(26vw, 230px);
  }
  .botones_redes {
    right: 16px;
    top: auto;
    bottom: 18px;
    gap: 9px;
    transform: none;
  }
}

@media (max-width: 900px) {
  .botones_redes {
    top: auto;
    right: 16px;
    bottom: 18px;
    transform: none;
  }

  .botones_redes.ocultar {
    transform: translateX(120px);
  }

  .botones_redes a {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    max-width: 46px;
    max-height: 46px;
    flex-basis: 46px;
  }
}

@media (max-width: 768px) {
  .botones_redes {
    display: none;
  }
}

@media (max-width: 620px) {
  .footer-columnas {
    align-items: center;
    text-align: center;
  }

  .footer-contactos,
  .footer-col:has(.footer-redes) {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .footer-contactos a {
    max-width: min(100%, 340px);
    text-align: center;
  }

  .footer-redes {
    justify-content: center;
    width: 100%;
  }

  .info_contacto .dato {
    align-items: center;
    text-align: center;
  }

  .info_contacto .dato_info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .info_contacto .dato a {
    width: auto;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
}