/* ==========================================================================
   Frutos Tropicales · Landing 2026
   Autocontenido. Dark-first. Sin imports externos.
   ========================================================================== */

/* Reset moderno
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

/* Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Superficies dark-first */
  --bg-base:        #06090F;
  --bg-elevated:    #0B0F17;
  --bg-deep:        #03050A;
  --bg-glass:       rgba(20, 26, 36, 0.6);

  /* Bordes */
  --border-soft:    rgba(255, 255, 255, 0.06);
  --border-bright:  rgba(255, 255, 255, 0.12);
  --border-accent:  rgba(22, 163, 74, 0.28);

  /* Texto */
  --text-primary:   #F4F6F8;
  --text-muted:     #8A95A5;
  --text-dim:       #4F5867;
  --text-bright:    #FFFFFF;

  /* Acentos de marca */
  --accent-1:       #16A34A;
  --accent-2:       #34D399;
  --accent-3:       #06B6D4;
  --accent-glow:    rgba(22, 163, 74, 0.18);

  /* Gradientes */
  --grad-hero:      linear-gradient(135deg, #16A34A 0%, #06B6D4 100%);
  --grad-text:      linear-gradient(180deg, #F4F6F8 0%, #8A95A5 100%);
  --grad-card:      linear-gradient(180deg, rgba(20,26,36,0.7) 0%, rgba(11,15,23,0.4) 100%);

  /* Estados */
  --success:        #16A34A;
  --warning:        #EAB308;
  --danger:         #DC2626;

  /* Sombras */
  --shadow-card:    0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 48px -12px rgba(0,0,0,0.6);
  --shadow-elev:    0 1px 0 rgba(255,255,255,0.06) inset, 0 32px 64px -16px rgba(0,0,0,0.7);
  --shadow-glow:    0 0 48px var(--accent-glow);

  /* Tipografía: escala fluida */
  --fs-display-1: clamp(56px, 9vw, 128px);
  --fs-display-2: clamp(44px, 7vw, 96px);
  --fs-h1:        clamp(32px, 4.2vw, 56px);
  --fs-h2:        clamp(26px, 3vw, 40px);
  --fs-h3:        clamp(20px, 2vw, 26px);
  --fs-body-lg:   18px;
  --fs-body:      16px;
  --fs-caption:   13px;
  --fs-eyebrow:   12px;

  --lh-tight:     1.05;
  --lh-snug:      1.2;
  --lh-base:      1.55;
  --lh-loose:     1.7;

  --ls-display:   -0.04em;
  --ls-h1:        -0.025em;
  --ls-h2:        -0.02em;
  --ls-eyebrow:   0.18em;

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --dur-fast:      150ms;
  --dur-base:      280ms;
  --dur-slow:      600ms;
  --dur-narrative: 800ms;

  /* Layout */
  --container-max:        1280px;
  --container-narrow-max: 920px;
  --container-pad:        clamp(16px, 4vw, 64px);
  --section-pad:          clamp(64px, 8vw, 112px);
  --navbar-h:             72px;
}

/* Body base
   ------------------------------------------------------------------------- */
body {
  font-family: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-base);
  color: var(--text-primary);
  background: var(--bg-base);
  font-feature-settings: "ss01" 1, "cv11" 1;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-1);
  color: var(--text-bright);
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Layout primitives
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-h1);
  color: var(--text-primary);
  margin-bottom: 16px;
  max-width: 18ch;
}

.section-sub {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-base);
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 56px;
}

/* Glass utility
   ------------------------------------------------------------------------- */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-soft);
}

/* Navbar
   ------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease);
}

.navbar-scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border-soft);
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .navbar__logo img {
    height: 52px;
  }
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}

.navbar__link:hover {
  color: var(--text-primary);
}

.navbar__cta {
  display: none;
}

.navbar__lang {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-soft);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.navbar__lang:hover {
  color: var(--text-primary);
  border-color: var(--border-bright);
}

.navbar__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  color: var(--text-primary);
  transition: background var(--dur-fast) var(--ease);
}

.navbar__menu-toggle:hover {
  background: var(--border-soft);
}

/* Botones
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              color var(--dur-fast) var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--accent-1);
  color: var(--text-bright);
  border-color: var(--accent-1);
}

.btn--primary:hover {
  background: #15803D;
  border-color: #15803D;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-bright);
}

.btn--ghost:hover {
  background: var(--border-soft);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--lg svg {
  width: 20px;
  height: 20px;
}

/* Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-h) + 40px);
  padding-bottom: 80px;
  background: radial-gradient(ellipse at top, rgba(22, 163, 74, 0.08), transparent 60%),
              var(--bg-base);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__video.is-playing {
  opacity: 0.42;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,9,15,0.55) 0%, rgba(6,9,15,0.85) 70%, var(--bg-base) 100%),
    radial-gradient(ellipse at top, rgba(22, 163, 74, 0.18), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

.hero__eyebrow {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-full);
}

.hero__title {
  font-size: var(--fs-display-1);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: var(--ls-display);
  color: var(--text-primary);
  margin-bottom: 32px;
  max-width: 14ch;
}

.hero__sub {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-base);
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
}

.hero__trust {
  margin-top: auto;
}

/* Trust strip
   ------------------------------------------------------------------------- */
.trust {
  padding-block: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust__label {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-align: center;
}

.trust__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.trust__logos > * {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}

.trust__logos > *:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Infrastructure
   ------------------------------------------------------------------------- */
.infra {
  background: var(--bg-base);
}

.infra__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.infra__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.infra__card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-elev), var(--shadow-glow);
}

.infra__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-glow);
  color: var(--accent-2);
  margin-bottom: 24px;
}

.infra__card-icon svg {
  width: 24px;
  height: 24px;
}

.infra__card-title {
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.infra__card-body {
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.infra__card-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-caption);
  font-weight: 500;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

/* Bento productos
   ------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bento__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.bento__item:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.bento__item--lg {
  min-height: 420px;
}

.bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--dur-slow) var(--ease);
}

.bento__item:hover .bento__img {
  transform: scale(1.04);
}

.bento__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,5,10,0) 0%, rgba(3,5,10,0.85) 100%);
  z-index: 1;
}

.bento__title,
.bento__tagline,
.bento__data {
  position: relative;
  z-index: 2;
}

.bento__title {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.bento__tagline {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bento__data {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bento__data > * {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-full);
  font-variant-numeric: tabular-nums;
}

/* Coverage map
   ------------------------------------------------------------------------- */
.coverage {
  background: var(--bg-base);
}

.coverage__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.coverage__map svg {
  width: 100%;
  height: 100%;
}

.coverage__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.coverage__legend > * {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coverage__pin {
  fill: var(--accent-2);
  stroke: var(--bg-base);
  stroke-width: 2;
  transition: r var(--dur-base) var(--ease),
              fill var(--dur-base) var(--ease);
}

.coverage__pin:hover {
  fill: var(--accent-3);
}

/* From field stages
   ------------------------------------------------------------------------- */
.field {
  background: var(--bg-base);
}

.field__stages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: stage;
}

.field__stage {
  position: relative;
  padding: 32px;
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  transition: border-color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.field__stage:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.field__stage-num {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--accent-2);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.field__stage-title {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.field__stage-body {
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--text-muted);
}

/* Numbers
   ------------------------------------------------------------------------- */
.numbers {
  background: var(--bg-base);
}

.numbers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.numbers__value {
  font-size: var(--fs-display-2);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}

.numbers__label {
  font-size: var(--fs-body);
  color: var(--text-muted);
  max-width: 24ch;
}

/* Testimonial
   ------------------------------------------------------------------------- */
.testimonial {
  background: var(--bg-base);
}

.testimonial > .container-narrow {
  text-align: center;
}

.testimonial__quote {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-wrap: balance;
}

.testimonial__attribution {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.testimonial__photo {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 1px solid var(--border-bright);
}

/* Contact form
   ------------------------------------------------------------------------- */
.contact {
  background: var(--bg-base);
}

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

.contact__field {
  position: relative;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 24px 16px 8px 16px;
  font-size: var(--fs-body);
  line-height: 1.4;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.contact__field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__field input:hover,
.contact__field textarea:hover {
  border-color: var(--border-bright);
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background: var(--bg-base);
}

.contact__field label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: var(--fs-body);
  color: var(--text-muted);
  pointer-events: none;
  transition: top var(--dur-fast) var(--ease),
              font-size var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.contact__field input:focus + label,
.contact__field input:not(:placeholder-shown) + label,
.contact__field textarea:focus + label,
.contact__field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 500;
}

.contact__submit {
  margin-top: 8px;
  justify-self: flex-start;
}

/* Footer
   ------------------------------------------------------------------------- */
.footer {
  padding-block: clamp(64px, 10vw, 120px);
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: var(--fs-caption);
}

.footer__top {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 48px;
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-h2);
  color: var(--text-primary);
  max-width: 24ch;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer__col h4 {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}

.footer__col a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  font-size: var(--fs-caption);
  color: var(--text-dim);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.footer__social a:hover {
  color: var(--text-primary);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* Utilidades
   ------------------------------------------------------------------------- */
.gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal on scroll
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}

.reveal--up {
  transform: translateY(40px);
}

.reveal--scale {
  transform: scale(0.96);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Responsive: sm
   ------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .trust__logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__form {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__field--full {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Responsive: lg (desktop)
   ------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .navbar__links,
  .navbar__cta,
  .navbar__lang {
    display: inline-flex;
  }

  .navbar__menu-toggle {
    display: none;
  }

  .trust__logos {
    grid-template-columns: repeat(8, 1fr);
    gap: 40px;
  }

  .infra__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 24px;
  }

  .bento__item--lg {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 520px;
  }

  .field__stages {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
  }

  .hero__actions {
    margin-bottom: 120px;
  }
}

/* Responsive: xl
   ------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  .infra__card {
    padding: 40px;
  }

  .field__stage {
    padding: 40px 32px;
  }
}

/* Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal--up,
  .reveal--scale,
  .reveal--left {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .infra__card:hover,
  .bento__item:hover,
  .field__stage:hover,
  .footer__social a:hover {
    transform: none;
  }

  .bento__item:hover .bento__img {
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════
   MERGE EXTRAS (clases usadas por el HTML que faltaban)
   ════════════════════════════════════════════════════════ */

/* Navbar wrappers */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  height: 64px;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Trust strip embebido en hero (variante compacta) */
.trust__logos--inline {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-start;
  opacity: 0.7;
}
.trust__logos--inline > .trust__logo {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

/* Trust strip — chips placeholder (no logos reales) */
.trust__logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
  list-style: none;
}
.trust__logo:hover {
  border-color: var(--border-bright);
  color: var(--text-primary);
}

/* Bento content wrapper */
.bento__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

/* Coverage map sub-elementos */
.coverage__continents path {
  transition: fill var(--dur-base) var(--ease);
}
.coverage__origin circle {
  transform-origin: center;
}
.coverage__origin circle:nth-child(2) {
  animation: coverage-pulse 2.4s var(--ease) infinite;
}
.coverage__origin circle:nth-child(3) {
  animation: coverage-pulse 2.4s var(--ease) 0.6s infinite;
}
@keyframes coverage-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.8); }
}
.coverage__pin {
  filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.6));
  transition: r var(--dur-base) var(--ease), filter var(--dur-base) var(--ease);
}
.coverage__pin:hover {
  filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.9));
}

/* Field — wrapper ordenado */
.field__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 1024px) {
  .field__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* CTA final — fondo y centrado */
.cta-final {
  text-align: center;
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(22, 163, 74, 0.10), transparent 70%),
    var(--bg-base);
}
.cta-final .section-title {
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* Footer — extras */
.footer__tagline {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
  padding-block: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}
.footer__dev {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}
.footer__dev a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer__dev a:hover {
  color: var(--text-primary);
}

/* Contact — nota debajo del botón */
.contact__note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
  text-align: center;
}

/* Mobile menu open state */
.navbar.is-open .navbar__links {
  display: flex;
}
@media (max-width: 1023px) {
  .navbar__links {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    padding: 32px 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-soft);
    gap: 16px;
    z-index: 90;
  }
  .navbar.is-open .navbar__links {
    display: flex;
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .navbar__menu-toggle {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════
   ITERACIÓN 2 · Secciones nuevas
   Certificaciones · Eventos · Footer triple sede ·
   Coverage share · Footer legal disclaimer
   ════════════════════════════════════════════════════════ */

/* ════ Sección Certs ════ */
.certs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: clamp(40px, 6vw, 64px);
}

.certs__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.certs__item:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.certs__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(22, 163, 74, 0.10);
  border-radius: var(--r-md);
  color: var(--accent-2);
}

.certs__badge svg {
  width: 28px;
  height: 28px;
}

.certs__name {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}

.certs__desc {
  font-size: var(--fs-caption);
  line-height: var(--lh-base);
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .certs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .certs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ════ Sección Eventos · Agenda 2026 ════ */
.events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: clamp(40px, 6vw, 64px);
}

.events__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  transition: transform var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.events__item:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.events__date {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: rgba(22, 163, 74, 0.10);
}

.events__name {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}

.events__location {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.events__desc {
  font-size: var(--fs-caption);
  line-height: var(--lh-base);
  color: var(--text-muted);
  margin: 0;
  margin-top: auto;
}

.events__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.events__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════ Coverage · Share porcentajes destinos ════ */
.coverage__share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.coverage__share-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-soft);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.coverage__share-pct {
  color: var(--accent-2);
  font-weight: 600;
}

/* ════ Footer · Triple sede ════ */
.footer__sedes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-block: 32px;
  padding-block: 24px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.footer__sede {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
}

.footer__sede-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
}

.footer__sede-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .footer__sedes {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ════ Footer · Legal disclaimer marca FLAMINGO ════ */
.footer__legal {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 8px;
  font-style: italic;
}

/* ════ Reduced motion · cards iteración 2 ════ */
@media (prefers-reduced-motion: reduce) {
  .certs__item:hover,
  .events__item:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ════════════════════════════════════════════════════════
   FLAMINGO co. — sub-marca con paleta rosa scopeada
   ════════════════════════════════════════════════════════ */

.flamingo {
  --flamingo-pink:        #F472B6;       /* rosa flamenco principal */
  --flamingo-coral:       #FB7185;       /* coral acento */
  --flamingo-pink-soft:   rgba(244, 114, 182, 0.12);
  --flamingo-pink-glow:   rgba(244, 114, 182, 0.24);
  --flamingo-grad:        linear-gradient(135deg, #F472B6 0%, #FB7185 100%);
}

.flamingo__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-2xl);
  border: 1px solid rgba(244, 114, 182, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(244, 114, 182, 0.08), transparent 60%),
    var(--bg-glass);
  overflow: hidden;
}

.flamingo__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 56ch;
}

.flamingo__eyebrow {
  color: var(--flamingo-pink);
}

.flamingo__title {
  background: var(--flamingo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0;
  letter-spacing: -0.025em;
  max-width: none;
}

.flamingo__slogan {
  font-size: var(--fs-body-lg);
  font-style: italic;
  font-weight: 500;
  color: var(--flamingo-pink);
  letter-spacing: 0.01em;
  margin: 0;
}

.flamingo__body {
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--text-muted);
  margin: 0;
}

.flamingo__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.flamingo__meta > li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  border-radius: var(--r-full);
  background: var(--flamingo-pink-soft);
  font-size: 12px;
  color: var(--text-muted);
}

.flamingo__meta-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--flamingo-pink);
  font-size: 10px;
}

.flamingo__meta-value {
  color: var(--text-primary);
  font-weight: 500;
}

.flamingo__visual {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--flamingo-pink);
  filter: drop-shadow(0 0 32px var(--flamingo-pink-glow));
  opacity: 0.92;
}

.flamingo__bird {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  transition: transform var(--dur-slow) var(--ease);
}

.flamingo__card:hover .flamingo__bird {
  transform: translateY(-4px) rotate(-2deg);
}

@media (min-width: 1024px) {
  .flamingo__card {
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }
  .flamingo__visual {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flamingo__card:hover .flamingo__bird {
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════
   Motion premium tier-Awwwards
   Gradient shimmer · Magnetic · Cursor halo · Page loader
   Scroll progress · Hover depth · Navbar polish ·
   Mobile menu · Reveal stagger · View-timeline · Reduced
   ════════════════════════════════════════════════════════ */

/* ── 1. Gradient text shimmer ──────────────────────────── */
/* (.gradient-text base ya definido ~L1022; solo extiende.) */
.gradient-text {
  background-size: 200% auto;
}

.gradient-text.is-shimmering {
  animation: gradient-shimmer 4.5s var(--ease) infinite;
}

@keyframes gradient-shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 200% center; }
  100% { background-position: 0% center; }
}

/* ── 2. Magnetic interaction smoothing ─────────────────── */
[data-magnetic] {
  transition: transform 200ms var(--ease);
  will-change: transform;
}

/* ── 3. Cursor halo ────────────────────────────────────── */
.cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 280ms var(--ease),
              height 280ms var(--ease),
              opacity 280ms var(--ease);
  opacity: 0.6;
  mix-blend-mode: screen;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-halo {
    display: block;
  }
}

.cursor-halo.is-active {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

/* ── 4. Page loader (top progress bar) ─────────────────── */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-2);
  z-index: 10000;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 200ms ease-out, opacity 400ms ease-out;
  pointer-events: none;
}

.page-loader.is-loading {
  transform: scaleX(0.8);
}

.page-loader.is-done {
  transform: scaleX(1);
  opacity: 0;
}

/* ── 5. Scroll progress polish ─────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10001;
  pointer-events: none;
}

/* ── 6. Hover depth refinement (cards) ─────────────────── */
/* Sobreescribe los hover existentes con specificity media-query. */
@media (hover: hover) and (pointer: fine) {
  .bento__item,
  .infra__card,
  .events__item,
  .certs__item,
  .flamingo__card {
    transition: transform 280ms var(--ease),
                box-shadow 280ms var(--ease),
                border-color 280ms var(--ease);
  }

  .bento__item:hover,
  .infra__card:hover,
  .events__item:hover,
  .certs__item:hover {
    transform: translateY(-4px) scale(1.005);
  }
}

/* ── 7. Navbar refinement on scroll ────────────────────── */
/* Extiende la transition base para incluir padding-block. */
.navbar {
  transition: background 300ms var(--ease),
              backdrop-filter 300ms var(--ease),
              -webkit-backdrop-filter 300ms var(--ease),
              border-color 300ms var(--ease),
              padding 300ms var(--ease);
}

.navbar-scrolled {
  padding-block: 4px;
}

/* ── 8. Mobile menu animation ──────────────────────────── */
/* Compatibilidad con regla previa (.navbar__links display:none). */
/* Aquí promovemos a flex permanente + transform para animación. */
@media (max-width: 1023px) {
  .navbar__links {
    display: flex;
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
    pointer-events: none;
  }

  .navbar.is-open .navbar__links {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ── 9. Reveal stagger refinement ──────────────────────── */
.reveal[style*="--stagger-delay"] {
  transition-delay: var(--stagger-delay);
}

/* ── 10. Section reveal · view-timeline (progressive) ──── */
@supports (animation-timeline: scroll()) {
  .section-title {
    view-timeline-name: --section-reveal;
    view-timeline-axis: block;
  }

  .reveal-on-view {
    animation: reveal-fade linear both;
    animation-timeline: --section-reveal;
    animation-range: entry 0% entry 60%;
  }

  @keyframes reveal-fade {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
/* Browsers sin support (<Chrome 115): fallback usa IntersectionObserver
   en el JS existente sobre .reveal — no se aplica reveal-on-view. */

/* ── 11. prefers-reduced-motion compliance (motion premium) */
@media (prefers-reduced-motion: reduce) {
  .gradient-text.is-shimmering,
  .cursor-halo,
  [data-magnetic] {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .cursor-halo {
    display: none !important;
  }

  .page-loader,
  #scrollProgress,
  .navbar__links {
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════
   A11Y FIXES post-audit (skip-link, touch-targets, reveal fallback)
   ════════════════════════════════════════════════════════ */

/* Skip link visible al focus */
a.sr-only:focus,
a.sr-only:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 20px;
  clip: auto;
  clip-path: none;
  overflow: visible;
  white-space: normal;
  background: var(--accent-1);
  color: var(--text-bright);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  z-index: 100000;
  text-decoration: none;
  box-shadow: var(--shadow-elev);
}

/* Touch targets WCAG 2.5.5 min 44x44 */
.btn {
  min-height: 44px;
}
.navbar__menu-toggle {
  width: 44px;
  height: 44px;
}
.navbar__lang {
  min-height: 36px;
}

/* Cert badges con logo PNG real */
.certs__badge--logo {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid var(--border-soft);
  width: 64px !important;
  height: 64px !important;
  padding: 8px;
}
.certs__badge--logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Reveal sin JS fallback — si JS falla o esta deshabilitado, contenido visible */
@media (scripting: none) {
  .reveal,
  .reveal--up,
  .reveal--scale,
  .reveal--left {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ════════════════════════════════════════════════════════
   TIMELINE — Nuestra historia (4 hitos 2021-2026)
   ════════════════════════════════════════════════════════ */
.timeline__list {
  list-style: none;
  padding: 0;
  margin: clamp(40px, 6vw, 64px) 0 0;
  display: grid;
  gap: 0;
  position: relative;
}
.timeline__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(38px, 6vw, 90px);
  width: 1px;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent-1) 50%, transparent 100%);
  opacity: 0.35;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(72px, 12vw, 180px) 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding-block: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--border-soft);
}
.timeline__item:last-child {
  border-bottom: none;
}
.timeline__year {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--accent-2);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.timeline__year::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(-6vw, -38px, -28px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16), 0 0 20px var(--accent-glow);
  transform: translate(-50%, -50%);
}
.timeline__title {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.timeline__body p {
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 56ch;
}

/* ════════════════════════════════════════════════════════
   NEWSLETTER strip
   ════════════════════════════════════════════════════════ */
.newsletter {
  padding-block: clamp(48px, 7vw, 80px);
  background: var(--bg-base);
}
.newsletter__card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(22, 163, 74, 0.08), transparent 60%),
    var(--bg-glass);
  border: 1px solid rgba(22, 163, 74, 0.15);
}
.newsletter__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.newsletter__sub {
  color: var(--text-muted);
  font-size: var(--fs-body);
  margin: 0;
}
.newsletter__form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}
.newsletter__form input[type="email"] {
  flex: 1 1 240px;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-bright);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
}
.newsletter__form input[type="email"]:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-color: var(--accent-2);
}
@media (min-width: 1024px) {
  .newsletter__card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
}

/* ════════════════════════════════════════════════════════
   CONTACT MAP iframe (Google Maps embed)
   ════════════════════════════════════════════════════════ */
.contact__map {
  margin-bottom: clamp(32px, 4vw, 48px);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--bg-elevated);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.95);
}

/* ════════════════════════════════════════════════════════
   WHATSAPP floating button
   ════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32), 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
  text-decoration: none;
  animation: whatsapp-pulse 3s infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.35);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32), 0 4px 12px rgba(0,0,0,0.3), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32), 0 4px 12px rgba(0,0,0,0.3), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab {
    animation: none;
  }
}
@media (min-width: 1024px) {
  .whatsapp-fab {
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
  }
}
