* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #14ba48;
  --primary-dark: #0f8f36;
  --primary-soft: #d8f3dc;
  --secondary: #2ec4b6;
  --accent-yellow: #ffe066;
  --accent-orange: #ff7b00;
  --background: #ffffff;
  --background-light: #f5fcf7;
  --background-soft: #eef4ee;
  --surface: #ffffff;
  --surface-alt: #f4faf4;
  --surface-muted: #eef5ed;
  --text-dark: #172014;
  --text-main: #172014;
  --text-strong: #0f2916;
  --text-muted: #55605a;
  --text-inverse: #ffffff;
  --border: rgba(15, 143, 54, 0.14);
  --border-strong: rgba(15, 143, 54, 0.2);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.15);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #083a25; /* base: verde oscuro para todos los textos de la sección */
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--background) 0%, #f8fdf7 52%, var(--background-light) 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 253, 247, 0.86) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(10, 16, 12, 0.08);
  border-bottom: 1px solid rgba(15, 143, 54, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(10, 16, 12, 0.12);
  border-bottom-color: rgba(15, 143, 54, 0.12);
}

.navbar {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  min-height: 76px;
  max-height: 88px;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  cursor: pointer;
}

.logo-img {
  width: auto;
  max-height: 90px;
  height: auto;
  object-fit: contain;
  transform: none;
  transform-origin: left center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  image-rendering: auto;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-900);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 143, 54, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 10px 24px rgba(10, 16, 12, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 4px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 143, 54, 0.24);
  box-shadow: 0 14px 30px rgba(10, 16, 12, 0.12);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.3vw, 18px);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-item-has-dropdown {
  position: relative;
}

.nav-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-parent-link i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-submenu {
  list-style: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  min-width: 320px;
  width: min(352px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 143, 54, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(10, 16, 12, 0.12);
  padding: 10px;
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translate(-50%, -8px);
  visibility: hidden;
  pointer-events: auto;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}

.nav-submenu li {
  position: relative;
}

.nav-submenu li::before {
  display: none;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a {
  padding-left: 16px;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
}

.nav-submenu a:hover {
  background: linear-gradient(90deg, rgba(20, 186, 72, 0.08) 0%, rgba(46, 196, 182, 0.06) 100%);
  color: var(--green-800);
  border-radius: 8px;
}

.nav-item-has-dropdown:hover .nav-submenu,
.nav-item-has-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav-menu > li.nav-item-has-dropdown + li.nav-item-has-dropdown > .nav-submenu {
  min-width: 280px;
  width: min(300px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 143, 54, 0.55), rgba(20, 186, 72, 0.95));
  transition: width 0.3s ease;
  border-radius: 999px;
}

.nav-menu a:hover {
  color: var(--green-900);
  background: rgba(20, 186, 72, 0.06);
  transform: translateY(-1px);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.is-active,
.nav-item-has-dropdown.is-active > .nav-parent-link {
  color: var(--green-900);
  background: rgba(20, 186, 72, 0.08);
  box-shadow: inset 0 0 0 1px rgba(20, 186, 72, 0.12);
}

.nav-menu a.is-active::after,
.nav-item-has-dropdown.is-active > .nav-parent-link::after {
  width: calc(100% - 28px);
}

.nav-menu > li:last-child {
  margin-left: auto;
}

.nav-menu > li:last-child > a {
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f8f36 0%, #14ba48 100%);
  box-shadow: 0 12px 28px rgba(15, 143, 54, 0.22);
}

.nav-menu > li:last-child > a::after {
  display: none;
}

.nav-menu > li:last-child > a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0c7a2e 0%, #12a53f 100%);
  box-shadow: 0 16px 32px rgba(15, 143, 54, 0.28);
}

.nav-menu > li:last-child > a.is-active {
  background: linear-gradient(135deg, #0c7a2e 0%, #0f8f36 100%);
  box-shadow: 0 16px 32px rgba(15, 143, 54, 0.32);
}

.hero {
  margin-top: 70px;
  min-height: 60vh;
  padding: clamp(28px, 4vw, 72px) clamp(12px, 3vw, 20px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(24, 220, 96, 0.18) 0%, rgba(38, 198, 218, 0.14) 52%, rgba(255, 171, 64, 0.12) 100%),
    linear-gradient(112deg, rgba(7, 108, 50, 0.72) 0%, rgba(16, 170, 82, 0.64) 42%, rgba(34, 165, 143, 0.48) 70%, rgba(255, 123, 0, 0.2) 100%),
    image-set(url('../img/BannerInicio.webp') type('image/webp'), url('../img/BannerInicio.avif') type('image/avif'), url('../img/BannerInicio.png') type('image/png'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

#hero-nosotros::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(24, 220, 96, 0.18) 0%, rgba(38, 198, 218, 0.14) 52%, rgba(255, 171, 64, 0.12) 100%),
    linear-gradient(112deg, rgba(7, 108, 50, 0.72) 0%, rgba(16, 170, 82, 0.64) 42%, rgba(34, 165, 143, 0.48) 70%, rgba(255, 123, 0, 0.2) 100%),
    url('../img/BannerInicioNosotros.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4, 30, 14, 0.46) 0%, rgba(6, 42, 19, 0.24) 50%, rgba(7, 54, 25, 0.38) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  background-position: center, center, center;
  z-index: 0;
  opacity: 0.88;
}

.hero::after {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 255, 193, 0.16) 0%, rgba(140, 255, 193, 0) 70%);
  filter: blur(34px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero#inicio {
    background-position: right center;
    background-size: cover;
  }
}

@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(135deg, rgba(24, 220, 96, 0.18) 0%, rgba(38, 198, 218, 0.14) 52%, rgba(255, 171, 64, 0.12) 100%),
      linear-gradient(112deg, rgba(7, 108, 50, 0.72) 0%, rgba(16, 170, 82, 0.64) 42%, rgba(34, 165, 143, 0.48) 70%, rgba(255, 123, 0, 0.2) 100%),
      image-set(url('../img/BannerInicio.webp') type('image/webp'), url('../img/BannerInicio.avif') type('image/avif'), url('../img/BannerInicio.png') type('image/png'));
    background-position: right center;
    background-size: cover;
    background-attachment: scroll;
  }

  .hero::after,
  .hero-orb,
  .hero-line {
    display: none;
  }

  .services-hero,
  .servicio-hero,
  .support-hero,
  #hero-nosotros {
    background-attachment: scroll;
  }

  .services-hero::after,
  .servicio-hero::after,
  .support-hero::after,
  #hero-nosotros::after {
    display: none;
  }
  /* Additional decorative orbs that can cause overflow/jank on small screens */
  .contact-visual-orb,
  .contact-section::after,
  .contact-section::before,
  .contact-visual-stage {
    display: none !important;
  }
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-main {
  margin-top: 88px;
}

.services-page-listing {
  margin-top: 12px;
}

.services-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
  padding: 16px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #14ba48 0%, #20d55f 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 28px rgba(20, 186, 72, 0.22);
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.service-link-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: linear-gradient(135deg, #0f8f36 0%, #14ba48 100%);
  border-color: rgba(255, 224, 102, 0.35);
  box-shadow: 0 18px 44px rgba(20, 186, 72, 0.35);
}

.service-detail-section {
  margin-top: 12px;
}

.hero-inner {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 64px) 0;
}

.hero-content {
  color: var(--white);
  text-align: left;
  max-width: 760px;
  animation: slideInLeft 0.7s ease 0.15s both;
}

.hero-company {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.3vw, 3.6rem);
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 14ch;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-wrap: balance;
  color: #ffffff;
}

.hero h1 .hero-title-line {
  display: block;
}

.hero h1 .hero-accent {
  display: inline-block;
  background: linear-gradient(135deg, #a9ffd0 0%, #56dc92 45%, #dfffee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .hero-highlight {
  background: linear-gradient(135deg, #f4fff8 0%, #93edba 45%, #35bf78 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  max-width: 620px;
  margin-bottom: 18px;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.9);
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(1, 18, 10, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7ffe7, #53d58b);
  box-shadow: 0 0 0 4px rgba(118, 236, 162, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.hero-actions .btn {
  background: linear-gradient(135deg, #14ba48 0%, #3ddc6c 50%, #20d55f 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(20, 186, 72, 0.42);
}

.hero-actions .btn:hover {
  background: linear-gradient(135deg, #0f9f3b 0%, #14ba48 50%, #1fb952 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(20, 186, 72, 0.52);
}

.hero-actions .btn-secondary {
  background: linear-gradient(135deg, #ff7b00 0%, #ffe066 50%, #ffa500 100%);
  color: #ffffff;
  border-color: rgba(255, 200, 0, 0.3);
  box-shadow: 0 16px 40px rgba(255, 112, 0, 0.3);
}

.hero-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ffd700 50%, #ff9500 100%);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(255, 112, 0, 0.4);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 32px);
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
    min-width: 0;
  }

  .hero h1,
  .hero p {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero-company {
    font-size: 9px;
    padding: 8px 12px;
  }

  .hero-badges {
    justify-content: center;
    margin-bottom: 20px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
    padding: 14px 18px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 0.1;
}

.btn-primary {
  background: linear-gradient(135deg, #14ba48 0%, #3ddc6c 50%, #20d55f 100%);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(20, 186, 72, 0.35);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f9f3b 0%, #14ba48 50%, #1fb952 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 48px rgba(20, 186, 72, 0.5);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  animation: slideInRight 0.7s ease 0.2s both;
}

.hero-image-card {
  width: min(520px, 100%);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(160deg, rgba(12, 78, 49, 0.68), rgba(9, 44, 27, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px;
  box-shadow:
    0 26px 70px rgba(3, 24, 15, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-image-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 38px 90px rgba(3, 24, 15, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-image {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 18px 30px rgba(2, 18, 11, 0.22));
}

.hero-image-glow {
  position: absolute;
  inset: auto 14% 18px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 242, 173, 0.35), rgba(123, 242, 173, 0) 68%);
  filter: blur(22px);
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-actions .btn {
  animation: heroEntry 0.6s ease both;
}

.hero-actions .btn:first-child {
  animation-delay: 0.18s;
}

.hero-actions .btn:last-child {
  animation-delay: 0.28s;
}

.stats-strip {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 50%, #fffdf7 100%);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 224, 102, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 112, 0, 0.04) 0%, transparent 50%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="0.82" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/><feComponentTransfer><feFuncA type="linear" slope="0.05"/></feComponentTransfer></filter><rect width="140" height="140" fill="%23ffffff"/><rect width="140" height="140" filter="url(%23grain)" opacity="0.3"/></svg>');
  background-size: auto, auto, 260px 260px;
  background-repeat: repeat-y, repeat-y, repeat;
  padding: 60px clamp(14px, 2.4vw, 30px);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(20, 186, 72, 0.1);
  border-top: 2px solid rgba(255, 112, 0, 0.15);
  border-bottom: 2px solid rgba(46, 196, 182, 0.15);
}

.stats-heading {
  margin-bottom: 16px;
  text-align: center;
}

.stats-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff7b00;
  padding: 0;
  border: 0;
  background: transparent;
}

.stats-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7b00, #ffe066);
  box-shadow: 0 0 0 6px rgba(255, 112, 0, 0.15);
}

.stats-heading h2 {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  color: #14ba48;
  margin: 10px 0 6px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.stats-heading p {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 760px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: linear-gradient(135deg, #14ba48 0%, #20d55f 50%, #2ec4b6 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 16px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 36px rgba(20, 186, 72, 0.28);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease;
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.stat-card:hover {
  background: linear-gradient(135deg, #0f8f36 0%, #14ba48 50%, #20d55f 100%);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 52px rgba(20, 186, 72, 0.45);
}

.stat-card h3 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  line-height: 1;
  margin-bottom: 6px;
  color: #ffffff;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  transition: color 0.35s ease;
}

.stat-card h3 small {
  font-size: 0.8rem;
  font-weight: 700;
}

.stat-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  transition: color 0.35s ease;
  line-height: 1.3;
}

.stat-card:hover h3 {
  color: #ffe066;
}

.stat-card:hover p {
  color: #ffffff;
}

.stat-card-icon {
  font-size: clamp(2rem, 5.5vw, 3rem);
  color: #ffe066;
  margin-bottom: 8px;
  transition: color 0.35s ease, transform 0.35s ease;
}

.stat-card:hover .stat-card-icon {
  color: #ffffff;
  transform: scale(1.15) rotate(5deg);
}

.stat-card:has(.stat-card-icon) h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  margin-bottom: 6px;
  color: #d9ffe6;
  font-weight: 700;
  transition: color 0.35s ease;
}

.stats-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 186, 72, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stats-footer-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.stats-footer-item i {
  color: #ff7b00;
  font-size: 16px;
}

.section {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 12px 40px rgba(20, 186, 72, 0.1);
  border: 1px solid rgba(46, 196, 182, 0.15);
}

.section-heading {
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  color: #14ba48;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-lead,
p {
  color: #6b7280;
}

.section-lead {
  max-width: 920px;
}

.about-us-split {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 224, 102, 0.15), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(255, 123, 0, 0.1), transparent 40%),
    linear-gradient(135deg, #14ba48 0%, #20d55f 50%, #2ec4b6 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(20, 186, 72, 0.2);
}

.about-us-split::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.15;
  pointer-events: none;
}

.about-us-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

.about-us-media {
  min-height: 440px;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 92% 0, 78% 100%, 0 100%);
  box-shadow: 0 22px 40px rgba(5, 39, 16, 0.28);
}

.about-us-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(122deg, rgba(4, 34, 14, 0.36) 0%, rgba(4, 34, 14, 0.05) 56%, rgba(20, 186, 72, 0.16) 100%);
  z-index: 1;
}

.about-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.about-us-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px) clamp(20px, 4vw, 56px) clamp(28px, 4vw, 54px) clamp(18px, 3vw, 42px);
}

.about-us-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.about-us-content h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 15ch;
  margin-bottom: 14px;
  text-shadow: 0 1px 2px rgba(2, 31, 12, 0.16);
}

.about-us-content p {
  color: rgba(244, 255, 247, 0.92);
  max-width: 58ch;
  margin-bottom: 18px;
  font-size: clamp(0.94rem, 1vw, 1rem);
}

.about-us-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-us-kpi-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 100%);
  border-radius: 22px;
  padding: 20px 18px;
  min-height: 150px;
  box-shadow: 0 12px 32px rgba(20, 186, 72, 0.15);
  border: 1px solid rgba(46, 196, 182, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.about-us-kpi-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7b00 0%, #ffe066 100%);
  box-shadow: 0 8px 20px rgba(255, 112, 0, 0.25);
}

.about-us-kpi-card h3 {
  color: #14ba48;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
}

.about-us-kpi-card p {
  color: #6b7280;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.about-us-kpi-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 48px rgba(20, 186, 72, 0.25);
  border-color: rgba(255, 112, 0, 0.3);
}

.clients-section {
  position: relative;
  margin: 0;
  background: linear-gradient(135deg, #14ba48 0%, #20d55f 50%, #2ec4b6 100%);
  overflow: hidden;
  padding: clamp(54px, 6vw, 82px) clamp(14px, 2.6vw, 34px);
  box-shadow: 0 20px 60px rgba(20, 186, 72, 0.25);
}

.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 34px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 32px),
    linear-gradient(100deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 46%);
  background-size: 300px 300px, 260px 260px, 100% 100%;
  opacity: 0.72;
  pointer-events: none;
}

.clients-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.clients-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
  margin: 0 auto 0 auto;
  max-width: 1200px;
  width: min(100%, 1200px);
  margin-bottom: clamp(42px, 4vw, 56px);
}

.clients-copy {
  text-align: left;
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.clients-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(7, 82, 30, 0.28);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  font-weight: 700;
  margin-bottom: 4px;
}

.clients-copy h2 {
  color: #ffffff;
  font-size: clamp(2.05rem, 3.3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.clients-copy h3 {
  color: rgba(244, 255, 248, 0.98);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  font-weight: 600;
  margin: 0 0 22px;
}

.clients-copy p {
  color: rgba(240, 255, 246, 0.96);
  margin: 0;
  max-width: 68ch;
  line-height: 1.58;
  font-size: 1rem;
}

.clients-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.clients-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 224, 102, 0.3);
  color: #14ba48;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(20, 186, 72, 0.15);
  transition: background 0.32s ease, color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.clients-metric-badge i {
  font-size: 1.1rem;
  width: 28px;
  text-align: center;
  color: #ff7b00;
  transition: color 0.32s ease;
}

.clients-metric-badge:hover {
  background: linear-gradient(135deg, #14ba48, #20d55f);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(20, 186, 72, 0.3);
  transform: translateY(-3px);
}

.clients-metric-badge:hover i {
  color: #ffe066;
}

.clients-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  max-width: 420px;
  margin-left: auto;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.clients-visual-stage {
  position: relative;
  width: min(490px, 100%);
  min-height: 320px;
  border-radius: 28px;
  padding: 20px;
  background: linear-gradient(140deg, rgba(7, 72, 28, 0.46) 0%, rgba(8, 88, 34, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 34px rgba(5, 45, 19, 0.28);
  overflow: hidden;
  transform-style: preserve-3d;
}

.clients-core-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  min-height: 160px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 100%);
  color: #14ba48;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px;
  box-shadow: 0 20px 48px rgba(20, 186, 72, 0.25);
  border: 2px solid rgba(255, 112, 0, 0.2);
}

.clients-core-badge i {
  font-size: 1.8rem;
  color: #ff7b00;
}

.clients-core-badge strong {
  font-size: 0.88rem;
  line-height: 1.25;
  color: #14ba48;
  font-weight: 700;
}

.clients-mini-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f5b27;
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 10px 20px rgba(5, 43, 17, 0.22);
  transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
}

.clients-mini-card i {
  color: #ff7b00;
  font-size: 1rem;
  transition: color 0.32s ease;
}

.clients-mini-card:hover {
  background: linear-gradient(135deg, #ff7b00, #ffe066);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 32px rgba(255, 112, 0, 0.3);
}

.clients-mini-card:hover i {
  color: #ffffff;
}

.clients-mini-top {
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
}

.clients-mini-left {
  left: 20px;
  bottom: 34px;
}

.clients-mini-right {
  right: 20px;
  bottom: 34px;
}

.clients-sectors {
  margin-top: clamp(40px, 4vw, 58px);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.client-sector-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 100%);
  border-radius: 20px;
  padding: clamp(18px, 2.1vw, 24px);
  box-shadow: 0 16px 40px rgba(20, 186, 72, 0.15);
  border: 1px solid rgba(46, 196, 182, 0.2);
  border-left: 6px solid #ff7b00;
  display: grid;
  gap: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  transform-origin: center;
}

.client-sector-card:hover {
  background: linear-gradient(135deg, #fff8e6 0%, #fffdf7 100%);
  border-color: rgba(255, 112, 0, 0.3);
  border-left: 6px solid #ffe066;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 56px rgba(255, 112, 0, 0.2);
}

.client-sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ff7b00 0%, #ffe066 100%);
  box-shadow: 0 12px 28px rgba(255, 112, 0, 0.25);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.client-sector-card:hover .client-sector-icon {
  background: linear-gradient(135deg, #ffe066 0%, #ffa500 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}

.client-sector-card h4 {
  margin: 0;
  color: #14ba48;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  transition: color 0.35s ease;
  font-weight: 700;
}

.client-sector-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.52;
  font-size: 0.9rem;
  transition: color 0.35s ease;
}

.client-sector-card:hover h4 {
  color: #ff7b00;
}

.client-sector-card:hover p {
  color: #4b5563;
}

.clients-mini-bottom {
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

/* Clientes Logos Section */
.clients-logos-section {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 4vw, 54px) 0;
}

.clients-logos-header {
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 42px);
}

.clients-logos-header h3 {
  color: #0b4f1d;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 900px;
  margin: 0 auto;
}

.client-logo-item {
  display: grid;
  place-items: center;
  min-height: 100px;
}

.client-logo {
  width: 100%;
  height: 100%;
  min-height: 100px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f5fffe 100%);
  border: 2px solid rgba(46, 196, 182, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  filter: grayscale(80%);
  opacity: 0.8;
  box-shadow: 0 8px 20px rgba(20, 186, 72, 0.08);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 16px 40px rgba(20, 186, 72, 0.2);
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 112, 0, 0.3);
}

.closing-impact-section {
  position: relative;
  margin: 0;
  padding: clamp(62px, 8vw, 108px) clamp(14px, 2.8vw, 36px);
  min-height: clamp(620px, 74vh, 840px);
  background-image: url('../img/BannerSatisfaccion.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.closing-impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(20, 186, 72, 0.3));
}

.closing-impact-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
}

.closing-impact-copy {
  max-width: 760px;
}

.closing-impact-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.closing-impact-copy p {
  color: rgba(242, 255, 247, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  max-width: 66ch;
  margin: 0;
  line-height: 1.55;
}

.closing-commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.closing-commitment-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 255, 254, 0.9) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(46, 196, 182, 0.3);
  border-radius: 18px;
  padding: clamp(16px, 1.8vw, 22px);
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(20, 186, 72, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.closing-commitment-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 56px rgba(20, 186, 72, 0.25);
  filter: brightness(1.05);
}

.closing-commitment-card i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7b00 0%, #ffe066 100%);
  font-size: 1.2rem;
  box-shadow: 0 12px 32px rgba(255, 112, 0, 0.3);
}

.closing-commitment-card h3 {
  color: #14ba48;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.3;
  font-weight: 700;
}

.closing-commitment-card p {
  color: #6b7280;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.closing-impact-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.closing-impact-cta p {
  color: #ffffff;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 600;
}

.closing-impact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14ba48 0%, #3ddc6c 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 32px rgba(20, 186, 72, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.closing-impact-btn:hover,
.closing-impact-btn:focus-visible {
  background: linear-gradient(135deg, #0f9f3b 0%, #14ba48 100%);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(20, 186, 72, 0.4);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mission-vision-card {
  background: #f8fcf9;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}

.mission-vision-card .section-lead {
  max-width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-section {
  position: relative;
  background: #ffffff;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 14px;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(12, 64, 38, 0.04) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 84% 20%, rgba(20, 186, 72, 0.04) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(135deg, rgba(12, 64, 38, 0.025) 0 2px, transparent 2px 22px);
  background-size: 280px 280px, 240px 240px, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  animation: services-grain-drift 24s linear infinite;
  pointer-events: none;
  opacity: 1;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

.services-heading {
  text-align: center;
  margin-bottom: 8px;
}

.services-ecosystem {
  position: relative;
  width: min(1320px, 100%);
  display: grid;
  place-items: center;
  gap: 0;
  margin: 0 auto;
  min-height: 700px;
  aspect-ratio: 2.3 / 1;
  overflow: visible;
  isolation: isolate;
}

.services-ecosystem::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, 94vw);
  height: min(470px, 40vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18) 0 1.5px, transparent 1.5px 12px),
    radial-gradient(circle at 50% 50%, rgba(12, 64, 38, 0.07) 0 1px, transparent 1px 16px),
    repeating-radial-gradient(circle at 50% 50%, rgba(12, 64, 38, 0.05) 0 1px, transparent 1px 6px);
  opacity: 0.44;
  pointer-events: none;
  z-index: 0;
  animation: services-grain-float 18s ease-in-out infinite alternate;
}

.services-ecosystem::after {
  content: '';
  position: absolute;
  inset: 16% 5% 16%;
  background:
    conic-gradient(from -90deg at 50% 50%,
      transparent 0 8deg,
      rgba(209, 29, 18, 0.92) 8deg 10deg,
      transparent 10deg 26deg,
      rgba(209, 29, 18, 0.55) 26deg 28deg,
      transparent 28deg 54deg,
      rgba(209, 29, 18, 0.75) 54deg 56deg,
      transparent 56deg 82deg,
      rgba(209, 29, 18, 0.62) 82deg 84deg,
      transparent 84deg 360deg);
  -webkit-mask: radial-gradient(ellipse at center, transparent 0 39%, #000 39.2% 40.8%, transparent 41%);
  mask: radial-gradient(ellipse at center, transparent 0 39%, #000 39.2% 40.8%, transparent 41%);
  opacity: 0.64;
  pointer-events: none;
  animation: services-arrow-spin 16s linear infinite;
  z-index: 0;
}

.service-node i {
  animation: service-icon-breath 4.8s ease-in-out infinite;
}

.service-node:nth-of-type(2n) i {
  animation-duration: 5.6s;
}

.service-center-orb-logo {
  animation: center-logo-bob 7s ease-in-out infinite;
}

.service-node,
.service-center-orb {
  position: relative;
  z-index: 2;
}

.service-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
  width: min(172px, 13vw);
  max-width: 172px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  --service-x: 0px;
  --service-y: 0px;
  transform: translate(calc(-50% + var(--service-x)), calc(-50% + var(--service-y))) scale(1);
  transition: transform 0.25s ease;
}

.service-node:hover {
  transform: translate(calc(-50% + var(--service-x)), calc(-50% + var(--service-y))) scale(1.01);
}

.service-node i {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(10, 41, 24, 0.08);
  color: var(--green-700);
  font-size: 22px;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.service-node h3 {
  font-size: 0.8rem;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-node p {
  font-size: 0.73rem;
  line-height: 1.34;
  color: var(--text-soft);
}

.service-node-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
  color: #d11d12;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-node-link:hover,
.service-node-link:focus-visible {
  color: #aa120b;
  transform: translateY(-1px);
}

.service-center-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  justify-self: center;
  align-self: center;
  width: min(360px, 30vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-center-orb::before,
.service-center-orb::after {
  display: none;
}

.service-center-orb-logo {
  width: min(500px, 100%);
  height: auto;
  object-fit: contain;
  max-width: 1000px;
  image-rendering: auto;
  backface-visibility: hidden;
}

.service-node-top {
  --service-x: 0px;
  --service-y: -250px;
}

.service-node-right-1 { --service-x: 275px; --service-y: -212px; }
.service-node-right-2 { --service-x: 470px; --service-y: -117px; }

.service-node-right-3 { --service-x: 540px; --service-y: 42px; }
.service-node-right-4 { --service-x: 458px; --service-y: 186px; }
.service-node-right-5 { --service-x: 254px; --service-y: 282px; }

.service-node-left-5 { --service-x: -254px; --service-y: 282px; }
.service-node-left-4 { --service-x: -458px; --service-y: 186px; }
.service-node-left-3 { --service-x: -540px; --service-y: 42px; }
.service-node-left-2 { --service-x: -470px; --service-y: -117px; }
.service-node-left-1 { --service-x: -275px; --service-y: -212px; }

@keyframes services-grain-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 160px 110px, -120px 150px, 220px 140px;
  }
}

@keyframes services-grain-float {
  0% {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0.54;
    transform: translate(-50%, -50%) scale(1.012);
  }
}

@keyframes services-arrow-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes service-icon-breath {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 22px rgba(10, 41, 24, 0.08);
  }

  50% {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 16px 26px rgba(10, 41, 24, 0.12);
  }
}

@keyframes center-logo-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.01);
  }
}

@keyframes clients-visual-rotate {
  from {
    transform: perspective(1000px) rotateY(0deg) rotateX(2deg);
  }

  to {
    transform: perspective(1000px) rotateY(360deg) rotateX(2deg);
  }
}

.kits-grid,
.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card:hover::after {
  transform: scaleX(1);
}

.card i {
  font-size: 20px;
  color: var(--green-700);
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.card:hover i {
  transform: translateY(-2px) scale(1.05);
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 7px;
  color: var(--green-900);
}

.card p {
  font-size: 0.93rem;
  color: var(--text-soft);
}

.service-card {
  text-align: left;
}

button.service-card {
  width: 100%;
  border: 1px solid var(--border-soft);
  font-family: inherit;
  cursor: pointer;
}

.kit-card,
.value-card {
  text-align: center;
}

.kit-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.diff-item p {
  font-weight: 600;
  color: var(--text-main);
}

.coverage-section {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 224, 102, 0.16), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(255, 123, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f4fcf8 50%, #edf9f6 100%);
  background-image:
    linear-gradient(45deg, rgba(20, 186, 72, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 123, 0, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(20, 186, 72, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 123, 0, 0.03) 75%);
  background-size: 260px 260px;
  background-repeat: repeat;
  padding: 50px clamp(14px, 2.4vw, 30px);
  box-shadow: 0 18px 42px rgba(20, 186, 72, 0.08);
  border-top: 3px solid rgba(255, 123, 0, 0.34);
  border-bottom: 3px solid rgba(46, 196, 182, 0.16);
}

.coverage-layout {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.coverage-copy h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  color: #000000;
  letter-spacing: -0.02em;
  margin: 0;
}

.coverage-copy p {
  margin: 0;
}

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.coverage-summary-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 253, 247, 0.96) 100%);
  border: 1px solid rgba(255, 123, 0, 0.18);
  border-left: 5px solid #ff7b00;
  box-shadow: 0 14px 28px rgba(255, 123, 0, 0.08);
}

.coverage-summary-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7b00 0%, #ffe066 100%);
  color: #ffffff;
  font-size: 18px;
}

.coverage-summary-card strong {
  display: block;
  margin-bottom: 4px;
  color: #0f5c28;
  font-size: 15px;
}

.coverage-summary-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.coverage-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.12), rgba(255, 224, 102, 0.18));
  color: #a34800;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 123, 0, 0.2);
}

.coverage-map-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.coverage-map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0) scale(1);
  transition: transform 0.45s ease;
  isolation: isolate;
  width: 100%;
  --coverage-glow: rgba(20, 186, 72, 0.22);
}

.coverage-map-wrap[data-coverage='confirmada'] {
  --coverage-glow: rgba(20, 186, 72, 0.24);
}

.coverage-map-wrap[data-coverage='operativa'] {
  --coverage-glow: rgba(245, 158, 11, 0.22);
}

.coverage-map-wrap::before,
.coverage-map-wrap::after {
  content: none;
}

.coverage-map-wrap:hover {
  transform: translateY(-5px) scale(1.01);
}

.map-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.colombia-map-host {
  width: 100%;
  max-width: 580px;
}

.colombia-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 613 / 694;
}

.colombia-departments path {
  fill: #dbe3ea;
  stroke: #ffffff;
  stroke-width: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: deptReveal 0.85s ease forwards;
  animation-delay: calc(var(--index, 0) * 38ms);
  pointer-events: all;
}


.colombia-departments .archipelago {
  cursor: pointer;
  opacity: 0;
  animation: deptReveal 0.85s ease forwards;
  animation-delay: calc(var(--index, 0) * 38ms);
}

.colombia-departments .archipelago-frame {
  fill: rgba(255, 255, 255, 0.3);
  stroke: rgba(11, 122, 51, 0.3);
  stroke-width: 1;
  stroke-dasharray: 3 2;
  vector-effect: non-scaling-stroke;
}

.colombia-departments .archipelago-island {
  fill: #ffd166;
  stroke: #ffffff;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transition: all 0.3s ease;
}

.colombia-departments .archipelago-label {
  fill: rgba(15, 92, 40, 0.8);
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.colombia-departments .archipelago:hover .archipelago-island,
.colombia-departments .archipelago.is-hovered .archipelago-island {
  fill: #f39c12;
  filter: drop-shadow(0 6px 12px rgba(8, 47, 30, 0.12));
}

.colombia-departments path[data-coverage='confirmada'] {
  fill: #8ee3ad;
}

.colombia-departments path[data-coverage='operativa'] {
  fill: #ffd166;
}

.colombia-departments path:hover,
.colombia-departments path.is-hovered {
  filter: drop-shadow(0 6px 12px rgba(8, 47, 30, 0.12));
}

.colombia-departments path[data-coverage='confirmada']:hover,
.colombia-departments path[data-coverage='confirmada'].is-hovered {
  fill: #12a64b;
}

.colombia-departments path[data-coverage='operativa']:hover,
.colombia-departments path[data-coverage='operativa'].is-hovered {
  fill: #f39c12;
}

.colombia-departments path.is-selected {
  fill: #0b7a33;
  animation: deptPulse 2.8s ease-in-out infinite;
}

.colombia-departments path[data-coverage='operativa'].is-selected {
  fill: #d97706;
}

.colombia-departments path.is-selected:hover {
  fill: #0b7a33;
}

.colombia-departments path[data-coverage='operativa'].is-selected:hover {
  fill: #d97706;
}

.colombia-departments path:focus-visible {
  outline: none;
  fill: #12a64b;
  filter: drop-shadow(0 0 0 3px rgba(18, 166, 75, 0.22));
}

.colombia-departments path[data-coverage='operativa']:focus-visible {
  fill: #f39c12;
  filter: drop-shadow(0 0 0 3px rgba(243, 156, 18, 0.22));
}

.colombia-border {
  fill: none;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 1.5;
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(8, 47, 30, 0.16));
}

.coverage-map-tooltip {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(-50%, -125%);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(10, 67, 42, 0.96);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

.coverage-map-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(10, 67, 42, 0.96);
}

.coverage-map-tooltip.is-visible {
  opacity: 1;
}

.coverage-map-tooltip.is-visible[data-position='top'] {
  transform: translate(-50%, -125%);
}

.coverage-map-tooltip.is-visible[data-position='bottom'] {
  transform: translate(-50%, 25%);
}

.coverage-map-tooltip.is-visible[data-position='bottom']::after {
  top: -6px;
  bottom: auto;
}

.coverage-map-container[data-coverage='confirmada'] .coverage-map-tooltip,
.coverage-map-container[data-coverage='operativa'] .coverage-map-tooltip {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.coverage-legend {
  width: min(1280px, calc(100% - 28px));
  margin: 14px auto 0;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #c6ddcd;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 600;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.legend-confirmed {
  background: #0f8f3a;
}

.legend-operational {
  background: #f59e0b;
}

@media (prefers-reduced-motion: no-preference) {
  .coverage-map-wrap::before {
    animation: mapGlowShift 10s ease-in-out infinite;
  }

  .coverage-map-wrap::after {
    animation: mapGridDrift 16s linear infinite;
  }
}

@keyframes mapGlowShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes mapGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 56px, -56px -56px;
  }
}

@keyframes deptReveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes deptPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(20, 186, 72, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(20, 186, 72, 0.18));
  }
}

.contact-section {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding: clamp(42px, 5vw, 84px) clamp(14px, 2.4vw, 30px);
  background: url('../img/Contacto/Contacto.png') center/cover no-repeat;
  color: var(--text-main);
  overflow: hidden;
  isolation: isolate;
}

.contact-wrapper {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.contact-section .section-heading {
  margin-bottom: 4px;
}

.contact-section .section-lead {
  max-width: 70ch;
}

.contact-section .section-heading h2,
.contact-section .section-heading .section-lead {
  color: #083a25; /* encabezados en verde oscuro */
}

.contact-section::before,
.contact-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  inset: auto;
  border-radius: 999px;
  filter: blur(0);
}

.contact-section::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -120px;
  background: none;
  opacity: 0;
}

.contact-section::after {
  width: 460px;
  height: 460px;
  left: -220px;
  bottom: -240px;
  background: none;
  opacity: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-details,
.contact-office,
.contact-addresses {
  display: grid;
  gap: 12px;
}

.detail-item {
  background: rgba(232, 249, 244, 0.95); /* pastel verde muy claro */
  border: 1px solid rgba(16,185,129,0.06);
  border-radius: 16px;
  padding: 16px 15px;
  box-shadow: 0 14px 34px rgba(4,36,14,0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.detail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(4,36,14,0.08);
}

.detail-item h4 {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: none;
  margin-bottom: 8px;
  color: #083a25;
}

.detail-item p,
.detail-item a {
  color: #083a25;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}

.detail-item a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.detail-item a:hover {
  color: #0f8f36;
  border-color: rgba(16,185,129,0.12);
}

.contact-section.contact-section--enhanced .contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.contact-section.contact-section--enhanced .contact-heading {
  margin-bottom: 0;
}

.contact-section.contact-section--enhanced .contact-hero-card,
.contact-section.contact-section--enhanced .contact-actions-panel,
.contact-section.contact-section--enhanced .contact-cards-panel,
.contact-section.contact-section--enhanced .contact-office-panel {
  position: relative;
  border: 1px solid rgba(16,185,129,0.04);
  border-radius: 20px;
  background: rgba(236, 252, 247, 0.98); /* paneles con tenue tinte verde */
  box-shadow: 0 10px 26px rgba(4,36,14,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-section.contact-section--enhanced .contact-hero-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  align-items: center;
}

.contact-section.contact-section--enhanced .contact-hero-icon,
.contact-section.contact-section--enhanced .contact-card-icon,
.contact-section.contact-section--enhanced .contact-office-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
  color: #0f8f36;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-section.contact-section--enhanced .contact-hero-icon i,
.contact-section.contact-section--enhanced .contact-card-icon i,
.contact-section.contact-section--enhanced .contact-office-icon i {
  font-size: 1.35rem;
}

.contact-section.contact-section--enhanced .contact-hero-copy strong,
.contact-section.contact-section--enhanced .contact-card h4,
.contact-section.contact-section--enhanced .contact-office-card h4 {
  display: block;
  margin-bottom: 6px;
  color: #083a25;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.contact-section.contact-section--enhanced .contact-hero-copy p,
.contact-section.contact-section--enhanced .contact-card p,
.contact-section.contact-section--enhanced .contact-office-card p {
  color: #083a25;
  margin: 0;
  line-height: 1.6;
}

.contact-section.contact-section--enhanced .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 16px;
}

.contact-section.contact-section--enhanced .contact-actions-panel,
.contact-section.contact-section--enhanced .contact-cards-panel,
.contact-section.contact-section--enhanced .contact-office-panel {
  padding: 18px;
}

.contact-section.contact-section--enhanced .contact-actions-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-section.contact-section--enhanced .contact-action-list {
  display: grid;
  gap: 12px;
}

.contact-section.contact-section--enhanced .contact-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #083a25; /* texto oscuro en acciones para contraste */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-section.contact-section--enhanced .contact-action i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
}

.contact-section.contact-section--enhanced .contact-action--primary {
  background: linear-gradient(135deg, #ffffff 0%, #dffff0 100%);
  color: #0a4b1c;
  box-shadow: 0 16px 30px rgba(4, 36, 14, 0.18);
}

.contact-section.contact-section--enhanced .contact-action--primary i {
  background: rgba(20, 186, 72, 0.12);
}

.contact-section.contact-section--enhanced .contact-action:hover {
  transform: translateY(-2px);
}

.contact-section.contact-section--enhanced .contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-section.contact-section--enhanced .contact-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #083a25; /* badges con texto verde oscuro para legibilidad */
  font-size: 12px;
  letter-spacing: 0.02em;
}

.contact-section.contact-section--enhanced .contact-cards-panel,
.contact-section.contact-section--enhanced .contact-office-panel {
  display: grid;
  gap: 14px;
}

.contact-section.contact-section--enhanced .contact-card,
.contact-section.contact-section--enhanced .contact-office-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(4, 36, 14, 0.14);
}

.contact-section.contact-section--enhanced .contact-card p a,
.contact-section.contact-section--enhanced .contact-office-card p a {
  border-bottom: 1px solid transparent;
}

.contact-section.contact-section--enhanced .contact-card p a:hover,
.contact-section.contact-section--enhanced .contact-office-card p a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-section.contact-section--enhanced .contact-office-card--accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.contact-section.contact-section--enhanced .contact-office-card--accent p {
  display: grid;
  gap: 6px;
}

.contact-section.contact-section--enhanced {
  padding: clamp(56px, 6vw, 104px) clamp(14px, 2.5vw, 32px);
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(187, 255, 213, 0.16), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(20, 186, 72, 0.16), transparent 18%),
    linear-gradient(155deg, #051c11 0%, #0a4b1c 36%, #0f8f36 68%, #14ba48 100%);
}

.contact-section.contact-section--enhanced::before {
  width: 520px;
  height: 520px;
  top: -170px;
  right: -180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 38%, transparent 68%);
}

.contact-section.contact-section--enhanced::after {
  width: 600px;
  height: 600px;
  left: -260px;
  bottom: -280px;
  background: radial-gradient(circle, rgba(187, 255, 213, 0.16) 0%, rgba(187, 255, 213, 0.05) 42%, transparent 72%);
}

.contact-section.contact-section--enhanced .contact-wrapper {
  width: min(1380px, calc(100% - 24px));
  gap: 22px;
}

.contact-section.contact-section--enhanced .contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.contact-section.contact-section--enhanced .contact-visual-panel {
  display: none;
}

.contact-section.contact-section--enhanced .contact-copy-panel,
.contact-section.contact-section--enhanced .contact-visual-panel,
.contact-section.contact-section--enhanced .contact-location-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 52px rgba(2, 21, 12, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-section.contact-section--enhanced .contact-copy-panel {
  padding: clamp(26px, 3.4vw, 40px);
  display: grid;
  gap: 20px;
  align-content: start;
  max-width: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.contact-section.contact-section--enhanced .contact-copy-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section.contact-section--enhanced .contact-copy-panel::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(20, 186, 72, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section.contact-section--enhanced .contact-copy-panel .section-kicker {
  width: fit-content;
}

.contact-section.contact-section--enhanced .section-kicker {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #b7f8d0;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.contact-section.contact-section--enhanced .contact-copy-panel h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
  max-width: 10ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.contact-section.contact-section--enhanced .contact-copy-panel .section-lead {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.contact-section.contact-section--enhanced .contact-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-section.contact-section--enhanced .contact-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.contact-section.contact-section--enhanced .contact-trust-badges i {
  color: #bfffd9;
}

.contact-section.contact-section--enhanced .contact-action-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-section.contact-section--enhanced .contact-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  min-height: 58px;
  border-radius: 18px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 30px rgba(2, 21, 12, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.contact-section.contact-section--enhanced .contact-action span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.contact-section.contact-section--enhanced .contact-action i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

.contact-section.contact-section--enhanced .contact-action--primary {
  background: linear-gradient(135deg, #ffffff 0%, #e4fff0 100%);
  color: #063f17;
  box-shadow: 0 20px 36px rgba(2, 21, 12, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.contact-section.contact-section--enhanced .contact-action--primary i {
  background: rgba(20, 186, 72, 0.12);
  color: #14ba48;
}

.contact-section.contact-section--enhanced .contact-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(2, 21, 12, 0.24);
}

/* Social Media Links */
.contact-social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-social-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.contact-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  transition: all 0.28s ease;
}

.contact-social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 21, 12, 0.2);
}

.contact-social-icon[href*="facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.contact-social-icon[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.contact-social-icon[href*="youtube"]:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.contact-section.contact-section--enhanced .contact-visual-panel {
  padding: 18px;
  overflow: hidden;
  min-height: 560px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(187, 255, 213, 0.1), transparent 30%),
    linear-gradient(160deg, rgba(6, 31, 14, 0.96) 0%, rgba(9, 56, 24, 0.88) 58%, rgba(16, 108, 42, 0.74) 100%);
}

.contact-section.contact-section--enhanced .contact-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.contact-section.contact-section--enhanced .contact-visual-orb--a {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 60%);
  opacity: 0.9;
}

.contact-section.contact-section--enhanced .contact-visual-orb--b {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(187, 255, 213, 0.18), rgba(187, 255, 213, 0.02) 58%);
  opacity: 0.75;
}

.contact-section.contact-section--enhanced .contact-map-panel {
  position: relative;
  min-height: 100%;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 50%, rgba(20, 186, 72, 0.12), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-section.contact-section--enhanced .contact-map-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  pointer-events: none;
}

.contact-section.contact-section--enhanced .contact-map-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #ffffff;
}

.contact-section.contact-section--enhanced .contact-map-topline span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section.contact-section--enhanced .contact-map-topline strong {
  font-size: 15px;
  font-weight: 600;
}

.contact-section.contact-section--enhanced .contact-network-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 30px rgba(2, 21, 12, 0.22));
}

.contact-section.contact-section--enhanced .contact-float-card,
.contact-section.contact-section--enhanced .contact-float-pin {
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 30px rgba(2, 21, 12, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-section.contact-section--enhanced .contact-float-card {
  min-width: 190px;
  max-width: 230px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: grid;
  gap: 4px;
}

.contact-section.contact-section--enhanced .contact-float-card i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-section.contact-section--enhanced .contact-float-card span,
.contact-section.contact-section--enhanced .contact-float-pin {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section.contact-section--enhanced .contact-float-card strong {
  font-size: 14px;
  line-height: 1.35;
  color: #ffffff;
}

.contact-section.contact-section--enhanced .contact-float-card--phone {
  top: 32px;
  right: 28px;
}

.contact-section.contact-section--enhanced .contact-float-card--email {
  left: 28px;
  bottom: 38px;
}

.contact-section.contact-section--enhanced .contact-float-card--whatsapp {
  right: 36px;
  bottom: 122px;
}

.contact-section.contact-section--enhanced .contact-float-pin {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.contact-section.contact-section--enhanced .contact-float-pin--bogota {
  top: 122px;
  left: 110px;
}

.contact-section.contact-section--enhanced .contact-float-pin--medellin {
  top: 258px;
  right: 122px;
}

.contact-section.contact-section--enhanced .contact-lower-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  align-content: start;
}

.contact-section.contact-section--enhanced .contact-location-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 20px;
  align-items: start;
  height: 100%;
}

.contact-section.contact-section--enhanced .contact-location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%);
}

.contact-section.contact-section--enhanced .contact-location-card--accent {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.contact-section.contact-section--enhanced .contact-location-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.contact-section.contact-section--enhanced .contact-location-icon i {
  font-size: 1.3rem;
}

.contact-section.contact-section--enhanced .contact-location-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section.contact-section--enhanced .contact-location-card h4 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.contact-section.contact-section--enhanced .contact-location-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.contact-section.contact-section--enhanced .contact-location-card a {
  color: #ffffff;
}

.contact-section.contact-section--enhanced .contact-location-card:hover,
.contact-section.contact-section--enhanced .contact-action:hover,
.contact-section.contact-section--enhanced .contact-float-card:hover,
.contact-section.contact-section--enhanced .contact-location-card:hover {
  transform: translateY(-3px);
}

/* ============================================
   MODERN CONTACT SECTION - NEW DESIGN
   ============================================ */

.contact-section--modern {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  padding: clamp(56px, 7vw, 96px) clamp(16px, 3vw, 40px);
  background: url('../img/Contacto/Contacto.png') center/cover no-repeat;
  color: var(--text-main);
  overflow: hidden;
  isolation: isolate;
  animation: sectionEnter 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact-section--modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 16, 24, 0.72) 0%, rgba(7, 43, 44, 0.48) 46%, rgba(8, 64, 54, 0.56) 100%),
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.20), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(46, 196, 182, 0.18), transparent 30%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.contact-wrapper-modern {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px, 3vw, 32px);
}

.contact-grid-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 4vw, 48px);
  align-items: stretch;
}

/* LEFT COLUMN - CONTENT */
.contact-left-column {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
  justify-content: center;
  animation: slideInLeft 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.contact-header-block {
  display: grid;
  gap: 16px;
}

.contact-kicker {
  display: inline-block;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(181, 255, 234, 0.96);
  font-weight: 700;
  width: fit-content;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.contact-header-block h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-weight: 800;
  max-width: 12ch;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  animation: fadeInDown 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.contact-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 55ch;
  font-weight: 500;
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* BADGES */
.contact-badges-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.contact-badge-item:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(181, 255, 234, 0.34);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.contact-badge-item i {
  font-size: 16px;
  color: #7ff4d9;
}

/* CTA BUTTONS */
.contact-cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(14px, 1.2vw, 16px) clamp(14px, 1.8vw, 20px);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(12px, 0.9vw, 14px);
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.cta-btn:nth-child(3) {
  grid-column: 1 / -1;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  transform: scaleX(1);
}

/* PRIMARY CTA */
.cta-btn--primary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.cta-btn--primary:hover {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px) scale(1.03);
  background: rgba(255, 255, 255, 0.24);
}

.cta-btn--primary i {
  font-size: 18px;
}

/* SECONDARY CTA */
.cta-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  font-weight: 700;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(181, 255, 234, 0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transform: translateY(-3px) scale(1.02);
}

.cta-btn--secondary i {
  font-size: 17px;
}

/* SOCIAL SECTION */
.contact-social-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.social-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  margin: 0;
}

.social-icons-grid {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.social-icon-link:hover {
  transform: translateY(-8px) scale(1.12);
  box-shadow: 0 18px 50px rgba(127,244,217,0.16);
  border-color: rgba(181, 255, 234, 0.34);
  background: rgba(255, 255, 255, 0.18);
}

/* RIGHT COLUMN - CARDS */
.contact-right-column {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  animation: slideInRight 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.25s both;
}

.contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  height: 100%;
}

/* LOCATION CARDS */
.contact-location-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  align-items: start;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact-location-card:nth-child(1) {
  animation-delay: 0.35s;
}

.contact-location-card:nth-child(2) {
  animation-delay: 0.45s;
}

.contact-location-card:nth-child(3) {
  animation-delay: 0.55s;
}

.contact-location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 60%);
  pointer-events: none;
  border-radius: 18px;
}

.contact-location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(127, 244, 217, 0.14), transparent 70%);
  transition: opacity 0.35s ease;
}

.contact-location-card:hover::after {
  opacity: 1;
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10));
  color: #7ff4d9;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 6px 16px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(181, 255, 234, 0.95);
  font-weight: 700;
  width: fit-content;
}

.contact-location-card h4 {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 750;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.contact-location-card p {
  margin: 0;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.contact-location-card a {
  color: #7ff4d9;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.28s ease;
}

.contact-location-card a:hover {
  border-bottom-color: rgba(127, 244, 217, 0.32);
  color: #ffffff;
  font-weight: 700;
}

/* CARD VARIANTS */
.contact-location-card--bogota,
.contact-location-card--medellin,
.contact-location-card--web {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}

.contact-location-card--bogota .card-icon-wrapper,
.contact-location-card--medellin .card-icon-wrapper,
.contact-location-card--web .card-icon-wrapper {
  background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.10));
  color: #7ff4d9;
}

.contact-location-card--bogota:hover,
.contact-location-card--medellin:hover,
.contact-location-card--web:hover {
  border-color: rgba(181,255,234,0.28);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

/* GENERIC CARD HOVER */
.contact-location-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(181,255,234,0.28);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

/* VISUAL ELEMENT - DECORATIVE MAP */
.contact-visual-element {
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

.contact-map-decorative {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* ============================================
   RESPONSIVE - TABLET/MOBILE
   ============================================ */

/* Forzar color verde oscuro en todo el contenido de la sección de contacto */
.contact-section,
.contact-section--modern,
.contact-section.contact-section--enhanced,
.contact-section *,
.contact-section--modern *,
.contact-section.contact-section--enhanced * {
  color: #083a25 !important;
}

.contact-section svg,
.contact-section--modern svg,
.contact-section svg *,
.contact-section--modern svg * {
  fill: #083a25 !important;
  stroke: #083a25 !important;
}

.contact-section a,
.contact-section a:visited,
.contact-section a:hover,
.contact-section--modern a,
.contact-section--modern a:visited,
.contact-section--modern a:hover {
  color: #083a25 !important;
}

.contact-section i,
.contact-section .fa,
.contact-section .icon,
.contact-section--modern i,
.contact-section--modern .fa,
.contact-section--modern .icon {
  color: #083a25 !important;
}

.contact-section *::before,
.contact-section *::after,
.contact-section--modern *::before,
.contact-section--modern *::after {
  color: #083a25 !important;
}

/* Asegurar botones y CTAs con texto verde */
.contact-section .cta-btn--primary,
.contact-section .cta-btn--secondary,
.contact-section--modern .cta-btn--primary,
.contact-section--modern .cta-btn--secondary {
  color: #083a25 !important;
}

/* Iconos sociales y badges */
.social-icon-link,
.contact-social-icon,
.contact-badge-item i,
.contact-badge-item,
.contact-badges-modern span {
  color: #083a25 !important;
}


/* Ultra-pequeño (320px - 375px) */
@media (max-width: 375px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 8px 12px;
    min-height: 68px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
  }

  .nav-menu {
    width: min(320px, calc(100% - 12px));
    padding: 16px 10px 16px;
  }

  .nav-menu a {
    padding: 12px 10px;
    font-size: 14px;
    min-height: 44px;
  }

  .nav-submenu a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero {
    margin-top: 68px;
    min-height: 50vh;
    padding: clamp(20px, 3vw, 28px) clamp(10px, 2vw, 14px);
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .hero-content p {
    font-size: 14px;
  }

  .section {
    padding: clamp(28px, 4vw, 48px) clamp(12px, 2vw, 16px);
  }

  .modal-window {
    width: min(320px, 100%);
    padding: 20px;
  }

  .modal-window h3 {
    font-size: 1.2rem;
  }

  .modal-list {
    grid-template-columns: 1fr;
  }

  .page-main {
    margin-top: 68px;
  }

  .services-links-grid {
    gap: 10px;
  }

  .service-link-card {
    font-size: 13px;
    padding: 12px 10px;
    min-height: 70px;
  }
}

@media (max-width: 768px) {
  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 36px);
  }

  .contact-section--modern {
    padding: clamp(48px, 6vw, 80px) clamp(14px, 2.5vw, 32px);
  }

  .contact-visual-element {
    width: 300px;
    height: 300px;
    bottom: -60px;
    right: -100px;
    opacity: 0.15;
  }
}

@media (max-width: 768px) {
  .contact-cta-buttons {
    grid-template-columns: 1fr;
  }

  .contact-section--modern {
    background-position: center top;
  }

  .contact-header-block h2 {
    max-width: 100%;
  }

  .contact-location-card {
    grid-template-columns: 48px 1fr;
    padding: 16px;
    gap: 12px;
  }

  .card-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .contact-location-card {
    background: rgba(255, 255, 255, 0.14);
  }

  .contact-visual-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-section--modern {
    padding: clamp(36px, 5vw, 48px) clamp(12px, 2vw, 20px);
    background-position: center top;
  }

  .contact-grid-modern {
    gap: 20px;
  }

  .contact-header-block h2 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  .contact-header-block {
    gap: 14px;
  }

  .contact-badges-modern {
    flex-direction: column;
    gap: 10px;
  }

  .contact-badge-item {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 12px;
  }

  .contact-badge-item,
  .cta-btn,
  .contact-location-card {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13px;
  }

  .cta-btn:nth-child(3) {
    grid-column: 1 / -1;
  }

  .contact-location-card {
    padding: 14px;
    gap: 12px;
  }

  .card-icon-wrapper {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .card-content {
    gap: 6px;
  }

  .contact-location-card h4 {
    font-size: 0.95rem;
  }

  .contact-location-card p {
    font-size: 12px;
  }
}

/* Coverage Section Responsive */
@media (max-width: 1024px) {
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coverage-copy {
    gap: 12px;
    justify-content: flex-start;
  }

  .coverage-map-container {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .coverage-layout {
    gap: 24px;
  }

  .coverage-copy h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  }

  .coverage-legend {
    gap: 12px;
  }

  .legend-item {
    gap: 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .coverage-layout {
    padding: 24px clamp(12px, 2vw, 16px);
  }

  .coverage-copy h2 {
    font-size: 1.3rem;
  }

  .coverage-copy p {
    font-size: 0.95rem;
  }

  .coverage-summary-card {
    padding: 12px 14px;
  }

  .coverage-summary-card i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .coverage-summary-card strong {
    font-size: 14px;
  }

  .coverage-summary-card p {
    font-size: 13px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  background: rgba(5, 28, 17, 0.66);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-window {
  width: min(700px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-window h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--green-900);
  margin-bottom: 10px;
}

.modal-window p {
  color: var(--text-soft);
  margin-bottom: 14px;
}

.modal-list {
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.modal-list li {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f7fcf9;
  border: 1px solid #dcebe2;
  font-size: 14px;
}

.modal-highlight {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(130deg, var(--green-700), var(--green-500));
  color: var(--white);
}

.modal-highlight strong {
  font-size: 30px;
  line-height: 1;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--green-900);
  background: #eaf5ef;
}

footer {
  text-align: center;
  padding: 18px 16px;
  background: #ffffff;
  color: #8b949e;
  font-size: 14px;
  border-top: 1px solid rgba(15, 143, 54, 0.08);
  box-shadow: 0 -8px 24px rgba(2, 21, 12, 0.04);
}

footer p,
footer a {
  color: #8b949e;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatingImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    filter: blur(16px);
  }
  50% {
    opacity: 0.9;
    filter: blur(20px);
  }
}

@keyframes backgroundShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes sectionEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 0 28px;
    gap: 28px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero p,
  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .stats-strip {
    margin-top: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-ecosystem {
    width: min(1180px, 100%);
    min-height: 660px;
    aspect-ratio: 2.1 / 1;
  }

  .services-ecosystem::before {
    width: min(1060px, 92vw);
    height: min(430px, 42vw);
  }

  .service-center-orb {
    width: min(320px, 29vw);
  }

  .service-node {
    width: min(162px, 13.5vw);
    max-width: 162px;
  }

  .service-node-top { --service-y: -236px; }
  .service-node-right-1 { --service-x: 245px; --service-y: -200px; }
  .service-node-right-2 { --service-x: 420px; --service-y: -110px; }
  .service-node-right-3 { --service-x: 490px; --service-y: 34px; }
  .service-node-right-4 { --service-x: 420px; --service-y: 166px; }
  .service-node-right-5 { --service-x: 230px; --service-y: 250px; }
  .service-node-left-5 { --service-x: -230px; --service-y: 250px; }
  .service-node-left-4 { --service-x: -420px; --service-y: 166px; }
  .service-node-left-3 { --service-x: -490px; --service-y: 34px; }
  .service-node-left-2 { --service-x: -420px; --service-y: -110px; }
  .service-node-left-1 { --service-x: -245px; --service-y: -200px; }

  .closing-commitments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .section {
    padding: 52px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .kits-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-inner,
  .mission-vision-grid,
  .coverage-layout,
  .contact-content,
  .contact-section.contact-section--enhanced .contact-hero,
  .contact-section.contact-section--enhanced .contact-grid,
  .contact-section.contact-section--enhanced .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-us-media {
    min-height: 320px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  }

  .about-us-content h2,
  .about-us-content p {
    max-width: 100%;
  }

  .closing-impact-section {
    min-height: auto;
    padding: 58px 24px;
  }

  .closing-impact-copy {
    max-width: 100%;
  }

  .closing-impact-copy p {
    max-width: 100%;
  }

  .closing-commitments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-section {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .contact-section.contact-section--enhanced .contact-action-list {
    grid-template-columns: 1fr;
  }

  .services-ecosystem {
    width: min(980px, 100%);
    min-height: auto;
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, auto));
    column-gap: 12px;
    row-gap: 18px;
    align-items: start;
    justify-items: stretch;
    aspect-ratio: auto;
    padding: 18px 0 10px;
  }

  .services-ecosystem::before {
    width: min(760px, 86vw);
    height: min(310px, 44vw);
    opacity: 0.2;
    top: 52%;
  }

  .services-ecosystem::after {
    inset: 26% 12% 20%;
  }

  .service-center-orb {
    width: min(220px, 26vw);
    z-index: 1;
  }

  .service-node {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 4px 2px 0;
    transform: none !important;
  }

  .service-node i {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .service-node h3 {
    font-size: 0.78rem;
  }

  .service-node p {
    font-size: 0.7rem;
  }

  .service-node-link {
    width: auto;
    font-size: 0.65rem;
  }

  .service-node-top { grid-column: 5 / span 2; grid-row: 1; }
  .service-node-right-1 { grid-column: 7 / span 2; grid-row: 1; }
  .service-node-right-2 { grid-column: 9 / span 2; grid-row: 1; }
  .service-node-right-3 { grid-column: 11 / span 2; grid-row: 1; }
  .service-node-right-4 { grid-column: 9 / span 2; grid-row: 2; }
  .service-node-right-5 { grid-column: 7 / span 2; grid-row: 2; }
  .service-node-left-5 { grid-column: 5 / span 2; grid-row: 2; }
  .service-node-left-4 { grid-column: 3 / span 2; grid-row: 2; }
  .service-node-left-3 { grid-column: 1 / span 2; grid-row: 2; }
  .service-node-left-2 { grid-column: 1 / span 2; grid-row: 1; }
  .service-node-left-1 { grid-column: 3 / span 2; grid-row: 1; }

}

.hero-nosotros {
  margin-top: 70px;
  min-height: 60vh;
  padding: clamp(40px, 5vw, 80px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(110deg, rgba(5, 34, 13, 0.88) 0%, rgba(8, 57, 21, 0.76) 38%, rgba(11, 84, 31, 0.58) 64%, rgba(14, 110, 40, 0.42) 100%),
    image-set(url('../img/BannerInicio.webp') type('image/webp'), url('../img/BannerInicio.avif') type('image/avif'), url('../img/BannerInicio.png') type('image/png'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-nosotros-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(2, 18, 11, 0.5) 0%, rgba(6, 33, 20, 0.2) 50%, rgba(10, 62, 38, 0.4) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  background-position: center, center, center;
  z-index: 0;
  opacity: 0.8;
}

.hero-nosotros-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 760px;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-nosotros-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-nosotros-content p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(245, 255, 249, 0.92);
  max-width: 660px;
  margin: 0 auto;
}

/* ABOUT US MAIN */
.about-us-main {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 54px);
}

.about-us-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.about-us-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(20, 186, 72, 0.08);
  color: var(--green-600);
  border: 1px solid rgba(20, 186, 72, 0.24);
}

.about-us-main h2 {
  color: var(--green-900);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.about-us-description {
  color: #2d2d2d;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
}

.about-us-highlight {
  color: var(--green-600);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  max-width: 620px;
  padding: 16px 20px;
  border-left: 4px solid var(--green-600);
  background: rgba(20, 186, 72, 0.04);
  border-radius: 8px;
}

.about-us-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.highlight-card {
  background: linear-gradient(135deg, #f8fcf9 0%, #f0faf4 100%);
  border: 1px solid rgba(20, 186, 72, 0.12);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.highlight-card:hover {
  background: linear-gradient(135deg, #e8fcf0 0%, #d9f9e8 100%);
  border-color: rgba(20, 186, 72, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(20, 186, 72, 0.16);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  font-size: 1.3rem;
  box-shadow: 0 8px 16px rgba(20, 186, 72, 0.24);
}

.highlight-card h3 {
  color: var(--green-900);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.highlight-card p {
  color: #2d5f3d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.mission-vision-section {
  background: linear-gradient(135deg, #f8fcf9 0%, #f0faf4 100%);
  padding: clamp(50px, 6vw, 72px) clamp(20px, 4vw, 54px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section-header h2 {
  color: var(--green-900);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 12px 0 10px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 42px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(20, 186, 72, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s ease;
}

.mission-card:hover,
.vision-card:hover {
  background: #ffffff;
  border-color: rgba(20, 186, 72, 0.28);
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(20, 186, 72, 0.18);
}

.mission-vision-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(20, 186, 72, 0.28);
}

.mission-card h3,
.vision-card h3 {
  color: var(--green-900);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.mission-card p,
.vision-card p {
  color: #2d2d2d;
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0;
}

.corporate-values-section {
  background: #ffffff;
  padding: clamp(50px, 6vw, 72px) clamp(20px, 4vw, 54px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.value-card {
  background: linear-gradient(135deg, #f8fcf9 0%, #f0faf4 100%);
  border: 1px solid rgba(20, 186, 72, 0.12);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.value-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8fcf9 100%);
  border-color: rgba(20, 186, 72, 0.28);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 32px rgba(20, 186, 72, 0.16);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(20, 186, 72, 0.24);
  margin: 0 auto;
  transition: all 0.35s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 14px 28px rgba(20, 186, 72, 0.32);
}

.value-card h3 {
  color: var(--green-900);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.value-card p {
  color: #2d5f3d;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.principles-section {
  background: linear-gradient(135deg, #f8fcf9 0%, #f0faf4 100%);
  padding: clamp(50px, 6vw, 72px) clamp(20px, 4vw, 54px);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
  max-width: 1000px;
  margin: 0 auto;
}

.principle-item {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(20, 186, 72, 0.12);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.principle-item:hover {
  border-color: rgba(20, 186, 72, 0.28);
  background: linear-gradient(135deg, #f8fcf9 0%, #f0faf4 100%);
  transform: translateX(8px);
  box-shadow: 0 12px 28px rgba(20, 186, 72, 0.14);
}

.principle-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.principle-content h3 {
  color: var(--green-900);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.principle-content h3 i {
  color: var(--green-600);
  font-size: 1.2rem;
}

.principle-content p {
  color: #2d5f3d;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.process-section {
  background: #ffffff;
  padding: clamp(50px, 6vw, 72px) clamp(20px, 4vw, 54px);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(20, 186, 72, 0.3) 10%, rgba(20, 186, 72, 0.3) 90%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.process-step {
  background: linear-gradient(135deg, #f8fcf9 0%, #f0faf4 100%);
  border: 1px solid rgba(20, 186, 72, 0.12);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8fcf9 100%);
  border-color: rgba(20, 186, 72, 0.28);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(20, 186, 72, 0.16);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(20, 186, 72, 0.28);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(20, 186, 72, 0.24);
}

.process-step h3 {
  color: var(--green-900);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.process-step p {
  color: #2d5f3d;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  color: #ffffff;
  text-align: center;
  padding: clamp(50px, 6vw, 80px) clamp(20px, 4vw, 54px);
  border-radius: var(--radius-xl);
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.cta-section .section-lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-buttons .btn-primary {
  background: #ffffff;
  color: var(--green-600);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.32);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.page-cta-section {
  background: linear-gradient(135deg, var(--green-600) 0%, #0e9e3c 100%);
  color: #ffffff;
  text-align: center;
  padding: clamp(50px, 6vw, 80px) clamp(20px, 4vw, 54px);
  border-radius: var(--radius-xl);
}

.page-cta-section h2 {
  color: #ffffff;
  margin: 0 0 12px;
}

.page-cta-section .section-lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 32px;
}

/* ANIMACIONES ADICIONALES */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación reveal para scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease 0.1s both;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1002;
    box-shadow: 0 8px 24px rgba(10, 16, 12, 0.1);
    min-height: 72px;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(15, 143, 54, 0.08);
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 1003;
  }

  /* Overlay para el menú */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 16, 12, 0.42);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.is-open {
    display: block;
    opacity: 1;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: min(360px, calc(100% - 16px));
    max-width: 360px;
    height: calc(100vh - 70px);
    border-radius: 24px 0 0 24px;
    box-shadow: -16px 0 40px rgba(10, 16, 12, 0.16);
    padding: 20px 12px 18px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 143, 54, 0.08);
    overflow-y: auto;
  }

  .nav-menu.is-open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu > li {
    border-bottom: 1px solid rgba(15, 143, 54, 0.08);
    margin: 0 6px;
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    font-size: clamp(14px, 3.5vw, 15px);
    font-weight: 600;
    color: var(--green-900);
    min-height: 48px;
    text-align: center;
  }

  .nav-menu a:hover {
    background: rgba(20, 186, 72, 0.08);
    color: var(--green-800);
  }

  .nav-item-has-dropdown {
    width: 100%;
  }

  .nav-parent-link {
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 14px 8px;
  }

  .nav-parent-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: var(--green-600);
  }

  .nav-item-has-dropdown.is-open .nav-parent-link i {
    transform: rotate(180deg);
  }

  .nav-submenu {
    position: static;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    box-shadow: none;
    border: none;
    background: rgba(248, 252, 249, 0.9);
    margin: 0 4px 10px 4px;
    padding: 0;
    border-radius: 14px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-item-has-dropdown.is-open .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    max-height: 600px;
    padding: 8px;
  }

  .nav-submenu li {
    border-bottom: 1px solid #e8f5e9;
    margin: 0;
  }

  .nav-submenu li:last-child {
    border-bottom: none;
  }

  .nav-submenu li::before {
    display: none;
  }

  .nav-submenu a {
    padding: 12px 16px;
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
    border-radius: 10px;
    justify-content: center;
  }

  .nav-submenu a:hover {
    background: rgba(20, 186, 72, 0.08);
    color: var(--green-800);
  }

  .nav-menu > li:last-child {
    margin-left: 6px;
  }

  .nav-menu > li:last-child > a {
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #0f8f36 0%, #14ba48 100%);
    box-shadow: 0 12px 24px rgba(15, 143, 54, 0.22);
  }

  .nav-menu > li:last-child > a:hover {
    color: #ffffff;
  }

  .nav-item-has-dropdown:hover .nav-submenu,
  .nav-item-has-dropdown:focus-within .nav-submenu {
    transform: none;
  }

  .hero {
    margin-top: 110px;
  }

  .services-hero,
  .servicio-hero,
  .support-hero {
    margin-top: 102px;
  }

  .page-main {
    margin-top: 102px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .section {
    width: 100%;
    margin: 0 0 16px;
    padding: 40px 16px;
    border-radius: 0;
  }

  .stats-grid,
  .services-grid,
  .kits-grid,
  .values-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .services-links-grid {
    grid-template-columns: 1fr;
  }

  .services-ecosystem {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    margin-top: 10px;
    aspect-ratio: auto;
    justify-items: stretch;
    padding: 0;
  }

  .service-center-orb {
    width: min(220px, 44vw);
  }

  .service-node {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 6px 0 0;
    transform: none !important;
  }

  .service-node p {
    font-size: 0.63rem;
  }

  .service-node-link {
    width: auto;
    font-size: 0.58rem;
  }

  .service-center-orb,
  .services-ecosystem::before,
  .services-ecosystem::after {
    display: none;
  }

  .service-node-top,
  .service-node-left-1,
  .service-node-left-2,
  .service-node-left-3,
  .service-node-left-4,
  .service-node-left-5,
  .service-node-right-1,
  .service-node-right-2,
  .service-node-right-3,
  .service-node-right-4,
  .service-node-right-5 {
    --service-x: 0px;
    --service-y: 0px;
    grid-column: auto;
    grid-row: auto;
  }

  .clients-section {
    padding: 46px 16px;
  }

  .clients-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 20px;
  }

  .clients-copy {
    order: 1;
  }

  .clients-copy h2 {
    font-size: clamp(1.82rem, 8vw, 2.2rem);
  }

  .clients-metrics {
    grid-template-columns: 1fr;
    gap: 9px;
    max-width: 100%;
  }

  .clients-metric-badge {
    min-height: 46px;
    font-size: 0.86rem;
  }

  .clients-visual {
    order: 2;
  }

  .clients-visual-stage {
    width: min(420px, 100%);
    min-height: 280px;
    border-radius: 22px;
  }

  .clients-core-badge {
    width: 148px;
    min-height: 148px;
    border-radius: 18px;
  }

  .clients-mini-card {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .clients-mini-left {
    left: 14px;
    bottom: 22px;
  }

  .clients-mini-right {
    right: 14px;
    bottom: 22px;
  }

  .clients-grid {
    order: 3;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
  }

  .clients-mini-bottom {
    display: none;
  }

  .closing-impact-section {
    padding: 52px 16px;
  }

  .closing-impact-copy {
    text-align: center;
  }

  .closing-impact-copy h2,
  .closing-impact-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .closing-commitments-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .closing-impact-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .client-sector-card {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .stats-heading {
    text-align: center;
  }

  .stats-kicker {
    justify-content: center;
  }

  .stats-footer {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .about-us-split {
    padding: 0;
  }

  .about-us-inner {
    gap: 0;
  }

  .about-us-media {
    order: 1;
    min-height: 260px;
  }

  .about-us-content {
    order: 2;
    padding: 28px 18px;
  }

  .about-us-content h2 {
    max-width: 18ch;
  }

  .about-us-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details,
  .contact-office,
  .contact-addresses {
    text-align: center;
  }

  .coverage-legend {
    justify-content: center;
  }

  .map-container {
    padding: 12px;
  }

  .colombia-map {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .services-ecosystem {
    min-height: auto;
    margin-top: 8px;
    gap: 10px;
  }

  .service-node {
    width: 100%;
    max-width: 100%;
    gap: 5px;
  }

  .service-node i {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .service-node h3 {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .service-node p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .service-node-link {
    font-size: 0.62rem;
  }

  .service-node-top,
  .service-node-left-1,
  .service-node-left-2,
  .service-node-left-3,
  .service-node-left-4,
  .service-node-left-5,
  .service-node-right-1,
  .service-node-right-2,
  .service-node-right-3,
  .service-node-right-4,
  .service-node-right-5 {
    --service-x: 0px;
    --service-y: 0px;
  }

  .about-us-split {
    padding: 0;
  }

  .about-us-inner {
    width: 100%;
    gap: 0;
  }

  .about-us-media {
    display: none;
    min-height: 210px;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  }

  .about-us-content {
    padding: 24px 12px;
  }

  .about-us-label {
    font-size: 11px;
  }

  .about-us-content h2 {
    font-size: clamp(1.55rem, 7.2vw, 1.95rem);
  }

  .about-us-content p {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }

  .about-us-kpi-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-us-kpi-card {
    min-height: auto;
    padding: 14px 12px;
  }

  .about-us-kpi-card i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .navbar {
    width: calc(100% - 18px);
  }

  .logo-img {
    width: auto;
    max-height: 46px;
  }

  .logo-text {
    font-size: 0.94rem;
  }

  /* Menú móvil */
  .nav-menu {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding: 14px 10px;
  }

  .nav-menu a {
    padding: 12px 10px;
    font-size: 14px;
  }

  .nav-submenu a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 90vh;
    margin-top: 76px;
  }

  .hero-inner {
    padding: 24px 0 20px;
    gap: 22px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6.8vw, 2.35rem);
    max-width: 100%;
    line-height: 1.02;
    color: #ffffff;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-badges {
    gap: 8px;
    justify-content: center;
    margin-bottom: 22px;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
    text-align: center;
  }

  .section h2 {
    font-size: 22px;
  }

  p,
  .section-lead,
  .card p,
  .detail-item p,
  .detail-item a {
    font-size: 16px;
  }

  .section {
    width: calc(100% - 16px);
    padding: 40px 14px;
    margin-bottom: 16px;
  }

  .legend-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .map-container {
    padding: 10px;
  }

  /* RESPONSIVE - NOSOTROS PAGE */
  .hero-nosotros-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-nosotros-content p {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
  }

  .about-us-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  .value-card {
    padding: 16px 12px;
  }

  .value-card h3 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }

  .value-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .principle-item {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .principle-number {
    font-size: 1.5rem;
    min-height: 50px;
  }

  .principle-content h3 {
    font-size: 1rem;
  }

  .principle-content p {
    font-size: 0.8rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    padding: 20px 16px;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  .contact-section {
    padding: 34px 12px;
  }

  .contact-wrapper {
    width: calc(100% - 16px);
    gap: 16px;
  }

  .contact-section.contact-section--enhanced .contact-copy-panel,
  .contact-section.contact-section--enhanced .contact-visual-panel,
  .contact-section.contact-section--enhanced .contact-location-card {
    border-radius: 18px;
    padding: 14px;
  }

  .contact-section.contact-section--enhanced .contact-action {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-section.contact-section--enhanced .contact-action-list,
  .contact-section.contact-section--enhanced .contact-badges {
    gap: 10px;
  }

  .contact-section.contact-section--enhanced .contact-shell,
  .contact-section.contact-section--enhanced .contact-lower-grid {
    gap: 14px;
  }

  .contact-section.contact-section--enhanced .contact-visual-panel {
    min-height: 420px;
    padding: 12px;
  }

  .contact-section.contact-section--enhanced .contact-map-panel {
    min-height: 390px;
    padding: 16px;
  }

  .contact-section.contact-section--enhanced .contact-float-card {
    position: relative;
    inset: auto;
    max-width: none;
    min-width: 0;
    margin-top: 10px;
  }

  .contact-section.contact-section--enhanced .contact-float-pin {
    position: relative;
    inset: auto;
    display: inline-flex;
    margin: 10px 8px 0 0;
  }

  .contact-section.contact-section--enhanced .contact-network-svg {
    margin-bottom: 8px;
  }

  .cta-section,
  .page-cta-section {
    padding: 36px 16px;
  }

  .cta-section h2,
  .page-cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section .section-lead,
  .page-cta-section .section-lead {
    font-size: 0.9rem;
  }

  .cta-buttons,
  .cta-section .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn,
  .cta-section .cta-buttons .btn {
    width: 100%;
  }

  .highlight-card {
    padding: 16px 14px;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .highlight-card h3 {
    font-size: 0.95rem;
  }

  .highlight-card p {
    font-size: 0.85rem;
  }

  .mission-card,
  .vision-card {
    padding: 24px 18px;
  }

  .mission-card h3,
  .vision-card h3 {
    font-size: 1.2rem;
  }

  .mission-card p,
  .vision-card p {
    font-size: 0.9rem;
  }

  .mission-vision-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (min-width: 1440px) {
  .navbar,
  .hero-inner,
  .section {
    width: min(1440px, calc(100% - 40px));
  }
}

@media (min-width: 1920px) {
  .navbar,
  .hero-inner,
  .section {
    width: min(1600px, calc(100% - 64px));
  }
}