:root {
  --bg: #ffffff;
  --bg-dark: #080c16;
  --bg-card-dark: #0f1624;
  --bg-soft: #f6f8fb;
  --bg-subtle: #edf1f7;
  --ink: #090d16;
  --ink-2: #343f54;
  --muted: #7b879d;
  --line: #e3e7f0;
  --line-dark: rgba(255, 255, 255, 0.08);
  
  --turq: #00d4c7;
  --turq-deep: #069e94;
  --turq-glow: rgba(0, 212, 199, 0.14);
  
  --violet: #069e94;
  --violet-glow: rgba(0, 212, 199, 0.14);
  
  --green: #069e94;
  --green-glow: rgba(0, 212, 199, 0.14);
  
  --blue: #069e94;
  --blue-glow: rgba(0, 212, 199, 0.14);
  
  --amber: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.12);
  
  --maxw: 1240px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(10, 14, 26, 0.04);
  --shadow-md: 0 16px 40px -15px rgba(10, 14, 26, 0.08);
  --shadow-lg: 0 25px 60px -20px rgba(10, 14, 26, 0.12);
  --shadow-glow: 0 20px 50px -15px rgba(0, 212, 199, 0.25);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--turq-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px var(--turq-deep);
}

.btn-turq {
  background: var(--turq);
  color: var(--ink);
  font-weight: 700;
}

.btn-turq:hover {
  background: #ffffff;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px rgba(0, 212, 199, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(37, 211, 102, 0.5);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turq-deep);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--turq-deep);
  border-radius: 2px;
}

.eyebrow.eyebrow-white {
  color: var(--turq);
}

.eyebrow.eyebrow-white::before {
  background: var(--turq);
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

nav.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.88;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  height: 68px;
  width: auto;
  max-width: 340px;
  display: block;
  object-fit: contain;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links > a:not(.nav-cta),
.nav-dropdown-toggle {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.25s;
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}

.nav-links > a:not(.nav-cta):hover,
.nav-dropdown-toggle:hover,
.nav-links > a:not(.nav-cta).active {
  color: var(--turq-deep);
}

/* Nav Dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #ffffff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background-color: var(--bg-soft);
}

.dropdown-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.dot-sl { background-color: var(--violet); box-shadow: 0 0 8px var(--violet-glow); }
.dot-fp { background-color: var(--green); box-shadow: 0 0 8px var(--green-glow); }
.dot-to { background-color: var(--blue); box-shadow: 0 0 8px var(--blue-glow); }

.dropdown-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.dropdown-desc {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.nav-links > a.nav-cta,
.nav-cta {
  background: var(--ink) !important;
  color: #ffffff !important;
  padding: 11px 24px !important;
  border-radius: var(--r-sm) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(9, 13, 22, 0.15) !important;
  margin-left: 12px !important;
  white-space: nowrap !important;
}

.nav-links > a.nav-cta:hover,
.nav-cta:hover {
  background: var(--turq-deep) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(0, 168, 150, 0.35) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 212, 199, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 199, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero h1 .accent {
  color: var(--turq-deep);
  position: relative;
  display: inline-block;
}

.hero p.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
}

/* Hero Floating Visual Cards */
.hero-visual {
  position: relative;
  height: 500px;
}

.float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.float-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.float-card.f1 {
  top: 10px;
  right: 0;
  width: 300px;
  animation: float1 6s ease-in-out infinite;
}

.float-card.f2 {
  top: 175px;
  left: 0;
  width: 270px;
  animation: float2 7s ease-in-out infinite;
}

.float-card.f3 {
  bottom: 10px;
  right: 20px;
  width: 260px;
  animation: float1 8s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.fc-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--ink);
}

.fc-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.fc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 10px;
}

.tag-v { background: var(--violet-glow); color: var(--violet); }
.tag-g { background: var(--green-glow); color: var(--green); }
.tag-b { background: var(--blue-glow); color: var(--blue); }

/* SECTIONS COMMON */
section {
  padding: 100px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 16px;
  color: var(--ink);
}

.section-head p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
}

.section-head-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: flex-end;
  margin-bottom: 56px;
}

.section-head-split .head-left h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  margin-bottom: 0;
}

.section-head-split .head-right p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

.services-summary-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--turq-deep);
  border-radius: var(--r-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}

.services-summary-card p {
  font-size: 15.5px !important;
  color: var(--ink-2);
  line-height: 1.65 !important;
  margin: 0;
}

.services-stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-2);
  white-space: nowrap;
}

.svc-stage-pill strong {
  font-weight: 700;
  color: var(--ink);
}

.svc-stage-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-stage-pill .dot-sl { background: var(--violet); box-shadow: 0 0 6px var(--violet-glow); }
.svc-stage-pill .dot-fp { background: var(--green); box-shadow: 0 0 6px var(--green-glow); }
.svc-stage-pill .dot-to { background: var(--blue); box-shadow: 0 0 6px var(--blue-glow); }

@media (max-width: 1024px) {
  .section-head-split {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}

/* SECTION: PROPUESTA / PILARES */
.nosotros-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.nosotros-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
  position: relative;
}

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

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: var(--transition);
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--turq);
  box-shadow: 0 25px 50px -20px rgba(0, 212, 199, 0.2);
}

.pillar-num {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--turq-deep);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.pillar h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* SECTION: SERVICIOS GRID 3 CARDS */
.services-section {
  background: var(--bg-soft);
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.1);
}

.svc-banner {
  height: 170px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}

.svc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .svc-banner img {
  transform: scale(1.06);
}

/* Accent top stripes */
.service-card.sl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--violet);
  z-index: 5;
}

.service-card.fp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  z-index: 5;
}

.service-card.to::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  z-index: 5;
}

.svc-body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card.sl .svc-tag { color: var(--violet); }
.service-card.fp .svc-tag { color: var(--green); }
.service-card.to .svc-tag { color: var(--blue); }

.svc-body h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.svc-subtitle {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}

.svc-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.svc-list {
  list-style: none;
  margin-bottom: 28px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.svc-list li {
  font-size: 13px;
  color: var(--ink-2);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card.sl .svc-list li::before { background: var(--violet); }
.service-card.fp .svc-list li::before { background: var(--green); }
.service-card.to .svc-list li::before { background: var(--blue); }

.svc-link {
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.service-card.sl .svc-link { color: var(--violet); }
.service-card.fp .svc-link { color: var(--green); }
.service-card.to .svc-link { color: var(--blue); }

.service-card:hover .svc-link {
  gap: 14px;
}

/* SECTION: AUDIENCE / A QUIEN ACOMPAÑAMOS */
.audience-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.diag-card {
  background: linear-gradient(145deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--turq-deep);
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.diag-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.diag-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turq-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.diag-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.diag-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.diag-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.diag-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.diag-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.diag-pill-dot.sl { background: var(--violet); }
.diag-pill-dot.fp { background: var(--green); }
.diag-pill-dot.to { background: var(--blue); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.aud-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
  transition: var(--transition);
  background: #ffffff;
}

.aud-card:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.aud-card:hover .aud-title {
  color: #ffffff;
}

.aud-card:hover .aud-desc {
  color: #c4c9d4;
}

.aud-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
  transition: background 0.3s ease;
  color: var(--turq-deep);
}

.aud-card:hover .aud-icon {
  background: rgba(0, 212, 199, 0.2);
  color: var(--turq);
}

.aud-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.aud-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  transition: color 0.3s ease;
}

/* SECTION: INFRAESTRUCTURA & TECNOLOGÍA */
.infra-section {
  background: #ffffff;
}

.infra-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.infra-text .eyebrow {
  margin-bottom: 14px;
}

.infra-text h2 {
  margin-bottom: 18px;
}

.infra-text p.infra-lead {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.infra-features {
  display: grid;
  gap: 18px;
}

.infra-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.infra-feat:hover {
  border-color: var(--turq);
  transform: translateX(4px);
}

.infra-feat svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--turq-deep);
}

.infra-feat div h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.infra-feat div p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.infra-visual {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.infra-visual::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 199, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.infra-visual-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.infra-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.infra-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.infra-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--turq);
  box-shadow: 0 0 12px var(--turq);
  flex-shrink: 0;
}

.infra-block h5 {
  font-size: 13.5px;
  color: #ffffff;
  margin-bottom: 2px;
}

.infra-block span {
  font-size: 11.5px;
  color: var(--muted);
}

/* SECTION: EXPERIENCIA STATS BANNER */
.experience-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.exp-stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.exp-stat-card {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.exp-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--turq);
}

.exp-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.exp-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* SECTION: HISTORIA / TIMELINE */
.history-section {
  background: var(--bg-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 199, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.history-section .section-head h2 {
  color: #ffffff;
}

.history-section .section-head p {
  color: #9fb0c7;
}

.timeline {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.tl-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: flex-start;
}

.tl-year {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--turq);
}

.tl-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.tl-content p {
  color: #9fb0c7;
  font-size: 14px;
  line-height: 1.6;
}

.tl-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--turq);
  background: rgba(0, 212, 199, 0.08);
  border: 1px solid rgba(0, 212, 199, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
}

/* SECTION: CTA FINAL */
.cta-final-section {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line-dark);
}

.cta-final-section::before {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 199, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-box h2 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.cta-box p {
  color: #9fb0c7;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-box-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SECTION: CONTACTO FORM PAGE/SECTION */
.contact-section {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.contact-left h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  margin-bottom: 18px;
  color: #ffffff;
}

.contact-left p {
  color: #9fb0c7;
  font-size: 16.5px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(0, 212, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turq);
  flex-shrink: 0;
}

.ci-item h5 {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}

.ci-item span, .ci-item a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.ci-item a:hover {
  color: var(--turq);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #a0a8b8;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--turq);
  background: rgba(0, 212, 199, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 212, 199, 0.15);
}

.form-row select option {
  background: var(--bg-dark);
  color: #ffffff;
}

.form-row textarea {
  resize: vertical;
  min-height: 95px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: #050810;
  color: var(--muted);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line-dark);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.foot-brand .logo {
  color: #ffffff;
  margin-bottom: 16px;
}

.foot-brand p {
  font-size: 13px;
  max-width: 290px;
  line-height: 1.65;
}

.foot-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.foot-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--muted);
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--turq);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.foot-socials {
  display: flex;
  gap: 10px;
}

.foot-socials a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}

.foot-socials a:hover {
  background: var(--turq);
  color: var(--ink);
}

/* ==========================================================================
   SUBPAGE STYLING (Nosotros, Soft Landing, Finance, Talent)
   ========================================================================== */

/* Subpage Hero */
.subpage-hero {
  padding: 140px 0 70px;
  background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.subpage-hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  margin-bottom: 20px;
}

.subpage-hero p.lead {
  font-size: 17.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Process Steps 5-Columns / 5-Rows */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.process-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--turq);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--turq-deep);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* What includes: Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--turq);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* About Page Milestone Cards & Quote Box */
.about-milestone-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.about-milestone-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--turq);
}

.about-milestone-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.about-milestone-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-milestone-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.about-milestone-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.about-milestone-body {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

.about-quote-box {
  background: #ffffff;
  border-left: 4px solid var(--turq-deep);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-quote-box.quote-violet { border-left-color: var(--violet); }
.about-quote-box.quote-green { border-left-color: var(--green); }
.about-quote-box.quote-blue { border-left-color: var(--blue); }

.about-quote-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

.about-disciplines-wrap {
  margin-top: 24px;
}

.about-disciplines-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

.about-disciplines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-discipline-pill {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-discipline-pill:hover {
  border-color: var(--turq);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-discipline-pill i {
  font-size: 14px;
}

/* Countries Tag Grid */
.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.country-badge {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.country-badge:hover {
  border-color: var(--turq-deep);
  color: var(--turq-deep);
  transform: translateY(-2px);
}

.country-badge.dark-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: none;
}

.country-badge.dark-badge:hover {
  background: rgba(0, 212, 199, 0.18);
  border-color: var(--turq);
  color: var(--turq);
  transform: translateY(-2px);
}

/* Visual Placeholder Mockup Container */
.mockup-container {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mockup-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--turq), var(--turq-deep));
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 22, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-soft);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink-2);
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--line);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .nosotros-header, .infra-wrap, .exp-grid, .subpage-hero-grid, .contact-grid, .audience-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid-3, .pillars, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .logo-img {
    height: 50px;
    max-width: 240px;
  }
  .logo-img-footer {
    height: 54px;
    max-width: 260px;
  }
  .nav-inner {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-item-dropdown {
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 1px solid var(--line);
    margin-top: 8px;
    width: 100%;
  }
  .burger {
    display: flex;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pillars, .services-grid-3, .audience-grid, .features-grid, .features-grid-2, .process-grid, .process-grid-3, .exp-stats-box, .foot-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .feature-box {
    grid-column: span 1 !important;
  }
  section {
    padding: 70px 0;
  }
  .wrap {
    padding: 0 20px;
  }
  .tl-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
