/* =============================================================
   PATA'PALS — Guardería canina, Envigado Rural
   1. Tokens
   ============================================================= */
:root {
  /* Marca */
  --green:        #2A4A1E;
  --green-deep:   #1C3213;
  --green-darker: #14250C;
  --green-light:  #3B6429;
  --cream:        #EEE9D8;
  --cream-2:      #E3DCC5;
  --cream-3:      #C9C2A8;
  --gold:         #B8923A;
  --gold-light:   #D8B65F;
  --gold-dark:    #8C6C24;
  --ink:          #16240E;
  --ink-soft:     #35452B;
  --ink-mute:     #6B7663;

  --line-dark:    rgba(238, 233, 216, 0.16);
  --line-light:   rgba(22, 36, 14, 0.14);

  --display: 'Anton', Impact, 'Haettenschweiler', 'Franklin Gothic Bold', 'Arial Narrow Bold', sans-serif;
  --serif:   'Noto Serif', Georgia, 'Times New Roman', serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);

  --gut: 1.25rem;
  --nav-h: 68px;
  --radius: 4px;
}

@property --mesh-a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--gold); color: var(--green-darker); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--gold); color: var(--green-darker);
  border-radius: var(--radius); font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilidades
   ============================================================= */
.wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap-narrow { max-width: 840px; }

.section { padding-block: 4.5rem; position: relative; }
.section-cream { background: var(--cream); color: var(--ink); }
.section-green { background: var(--green); color: var(--cream); }

/* Transición diagonal sutil entre secciones verdes y crema */
.section-green + .section-cream,
.section-cream + .section-green { position: relative; }

.grain {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none; opacity: .28; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* =============================================================
   4. Tipografía
   ============================================================= */
.kicker {
  font-family: var(--serif);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
}
.kicker-light { color: var(--gold-light); }
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(216,182,95,.6);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(216,182,95,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(216,182,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,182,95,0); }
}

.sec-title,
.hero-title,
.cta-title {
  font-family: var(--display);
  font-weight: 400;
  line-height: .94;
  letter-spacing: .004em;
  text-transform: uppercase;
  text-wrap: balance;
}

.sec-title {
  font-size: clamp(2.1rem, 8.6vw, 4.4rem);
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.sec-title em { font-style: normal; color: var(--gold-dark); }
.sec-title-light { color: var(--cream); }
.sec-title-light em { color: var(--gold-light); }

.sec-head { max-width: 42rem; margin-bottom: 2.75rem; }
.sec-lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.sec-lead-light { color: rgba(238,233,216,.78); }

h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; line-height: 1; }
h4 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; }

/* =============================================================
   5. Botones
   ============================================================= */
.btn {
  --btn-py: .85rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--btn-py) 1.5rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .3s var(--ease-out), color .3s var(--ease-out);
  will-change: transform;
  text-align: center;
}
.btn .ico-wa { width: 19px; height: 19px; fill: currentColor; flex: none; }

.btn-gold {
  background: var(--gold);
  color: var(--green-darker);
  box-shadow: 0 8px 26px -10px rgba(184,146,58,.85), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(184,146,58,.95); }
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:active { transform: translateY(0); }

.btn-ghost-light {
  color: var(--cream);
  border: 1px solid rgba(238,233,216,.4);
  backdrop-filter: blur(6px);
  background: rgba(20,37,12,.22);
}
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.btn-sm  { --btn-py: .6rem; padding-inline: 1.1rem; font-size: .8rem; }
.btn-lg  { --btn-py: 1rem; padding-inline: 1.85rem; font-size: .95rem; }
.btn-xl  { --btn-py: 1.15rem; padding-inline: 2.2rem; font-size: 1rem; }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9998;
  display: grid; place-items: center;
  background: var(--green-darker);
  transition: opacity .7s var(--ease-out), visibility .7s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.splash-inner { display: grid; justify-items: center; gap: 1.6rem; }
.splash-logo {
  width: 118px;
  animation: splashLogo 2.4s var(--ease-out) infinite alternate;
}
@keyframes splashLogo {
  from { transform: translateY(0) scale(1); opacity: .85; }
  to   { transform: translateY(-8px) scale(1.03); opacity: 1; }
}
.splash-bar { width: 120px; height: 2px; background: rgba(238,233,216,.15); overflow: hidden; }
.splash-bar span {
  display: block; height: 100%; width: 40%;
  background: var(--gold);
  animation: splashBar 1.15s var(--ease-soft) infinite;
}
@keyframes splashBar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background-color .45s var(--ease-out), box-shadow .45s var(--ease-out), backdrop-filter .45s;
}
.nav-inner {
  max-width: 1220px; margin-inline: auto;
  padding: .7rem var(--gut);
  display: flex; align-items: center; gap: 1rem;
  height: var(--nav-h);
}
.nav-brand { display: flex; align-items: center; gap: .55rem; }
.nav-brand img {
  width: 38px; height: auto; flex: none;
  transition: width .4s var(--ease-out);
  filter: drop-shadow(0 2px 8px rgba(10,20,6,.5));
}
.nav-brand-text { display: grid; gap: 1px; }
.nav-brand-text strong {
  font-family: var(--display); font-weight: 400;
  text-transform: uppercase; letter-spacing: .025em;
  font-size: 1.08rem; line-height: 1; color: var(--cream);
  text-shadow: 0 2px 10px rgba(10,20,6,.55);
}
.nav-brand-text small {
  font-size: .5rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-light); line-height: 1;
}

.nav.is-stuck {
  background: rgba(20,37,12,.93);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-dark), 0 14px 40px -22px rgba(0,0,0,.9);
}
.nav.is-stuck .nav-brand img { width: 32px; }

.nav-links { display: none; margin-left: auto; gap: 1.6rem; }
.nav-links a {
  font-size: .84rem; font-weight: 500; letter-spacing: .02em;
  color: var(--cream); position: relative; padding-block: .3rem;
  opacity: .85; transition: opacity .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; margin-left: 1rem; }

.nav-burger {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid; align-content: center; gap: 5px; justify-items: end;
  padding: 0 6px;
}
.nav-burger span {
  display: block; height: 2px; width: 24px; background: var(--cream);
  transition: transform .4s var(--ease-out), opacity .3s, width .3s;
}
.nav-burger span:nth-child(2) { width: 17px; }
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0;
  background: var(--green-darker);
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem var(--gut) 2rem;
  display: grid; gap: .35rem;
  transform: translateY(-120%);
  transition: transform .55s var(--ease-out);
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.nav.is-open .nav-drawer { transform: translateY(0); }
.nav-drawer a {
  font-family: var(--display); text-transform: uppercase;
  font-size: 1.55rem; color: var(--cream);
  padding-block: .5rem; border-bottom: 1px solid var(--line-dark);
  transition: color .3s, padding-left .3s var(--ease-out);
}
.nav-drawer a:hover { color: var(--gold-light); padding-left: .4rem; }
.nav-drawer .drawer-cta {
  margin-top: 1.1rem; border-bottom: 0; font-family: var(--serif);
  font-size: .92rem; text-transform: none; color: var(--green-darker);
}
.nav-drawer .drawer-cta:hover { padding-left: 0; color: var(--green-darker); }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--green-darker);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); }
}

.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,37,12,.72) 0%, rgba(20,37,12,.28) 32%, rgba(20,37,12,.72) 68%, rgba(20,37,12,.96) 100%),
    linear-gradient(90deg, rgba(28,50,19,.78) 0%, rgba(28,50,19,.15) 65%);
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 2;
  background:
    radial-gradient(38% 34% at 78% 22%, rgba(216,182,95,.42), transparent 70%),
    radial-gradient(46% 40% at 18% 74%, rgba(42,74,30,.75), transparent 72%),
    conic-gradient(from var(--mesh-a) at 62% 44%, rgba(184,146,58,.24), rgba(28,50,19,0) 42%, rgba(184,146,58,.18) 78%, rgba(28,50,19,0) 100%);
  filter: blur(58px);
  mix-blend-mode: screen;
  opacity: .85;
  animation: meshSpin 24s linear infinite;
}
@keyframes meshSpin { to { --mesh-a: 360deg; } }

.hero-inner {
  position: relative; z-index: 4;
  width: 100%; max-width: 1220px;
  margin-inline: auto;
  padding: calc(var(--nav-h) + 1.4rem) var(--gut) 2.6rem;
  color: var(--cream);
}
.hero-title {
  font-size: clamp(2.7rem, 13.2vw, 7.6rem);
  color: var(--cream);
  max-width: 15ch;
  margin-bottom: 1rem;
  text-shadow: 0 4px 34px rgba(10,20,6,.6);
}
.hero-title em { font-style: normal; color: var(--gold-light); }

.hero-sub {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(238,233,216,.9);
  max-width: 34rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(10,20,6,.65);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.5rem; }
.hero-actions .btn { flex: 1 1 auto; min-width: 230px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-dark);
  font-size: .78rem; letter-spacing: .03em;
  color: rgba(238,233,216,.72);
}
.hero-trust li { display: flex; align-items: center; gap: .5rem; }
.hero-trust li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex: none;
}

.hero-scroll {
  position: absolute; z-index: 5; bottom: 1.1rem; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid rgba(238,233,216,.35);
  border-radius: 12px; display: none; place-items: start center; padding-top: 6px;
}
.hero-scroll span {
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold-light);
  animation: scrollDot 1.8s var(--ease-soft) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* =============================================================
   9. Ticker
   ============================================================= */
.ticker {
  background: var(--green-darker);
  border-block: 1px solid var(--line-dark);
  overflow: hidden;
  padding-block: .85rem;
}
.ticker-track {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: tickerRun 34s linear infinite;
}
.ticker-track span {
  font-family: var(--display); text-transform: uppercase;
  font-size: 1.05rem; letter-spacing: .05em;
  color: var(--cream); opacity: .9;
}
.ticker-track i { color: var(--gold); font-style: normal; font-size: .75rem; }
@keyframes tickerRun { to { transform: translateX(-50%); } }

/* =============================================================
   10. La diferencia rural
   ============================================================= */
.campo-figure { margin-bottom: 3rem; }
.campo-figure img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.08);
}
.campo-figure figcaption {
  margin-top: .85rem; font-size: .82rem; font-style: italic;
  color: var(--ink-mute);
}

.pillars { display: grid; gap: 2.5rem; }
.pillar { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line-light); }
.pillar-num {
  position: absolute; top: 1.6rem; right: 0;
  font-family: var(--display); font-size: 2.6rem;
  color: rgba(184,146,58,.22); line-height: 1;
}
.pillar-ico { width: 44px; height: 44px; color: var(--gold-dark); margin-bottom: 1.1rem; }
.pillar h3 {
  font-size: 1.45rem; color: var(--ink);
  margin-bottom: .7rem; max-width: 14ch;
}
.pillar p { font-size: .95rem; color: var(--ink-soft); }

/* =============================================================
   11. Servicios
   ============================================================= */
.svc-grid { display: grid; gap: 1.1rem; }

.svc-card {
  background: var(--green-deep);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s var(--ease-out);
  transform-style: preserve-3d;
}
.svc-card:hover {
  border-color: rgba(184,146,58,.5);
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.9);
}
.svc-media { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) brightness(.94);
  transition: transform .9s var(--ease-out), filter .6s;
}
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,50,19,0) 40%, rgba(28,50,19,.9) 100%);
}
.svc-card:hover .svc-media img { transform: scale(1.07); filter: saturate(1.18) brightness(1.02); }

.svc-body { padding: 1.5rem 1.4rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.svc-tag {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-light); margin-bottom: .85rem;
}
.svc-card h3 {
  font-size: 1.55rem; color: var(--cream);
  margin-bottom: .9rem; line-height: .98;
}
.svc-detail { font-size: .9rem; color: rgba(238,233,216,.7); margin-bottom: 1.3rem; flex: 1; }
.svc-link {
  align-self: flex-start;
  font-size: .82rem; font-weight: 700; letter-spacing: .03em;
  color: var(--gold-light);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--gold-light), var(--gold-light));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size .45s var(--ease-out);
}
.svc-link:hover { background-size: 100% 1px; }

.svc-cta {
  background: var(--gold);
  color: var(--green-darker);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: .8rem;
}
.svc-cta-kicker { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; opacity: .75; }
.svc-cta h3 { font-size: 1.8rem; line-height: .98; }
.svc-cta p { font-size: .9rem; }
.svc-cta .btn {
  background: var(--green-darker); color: var(--cream);
  box-shadow: none; align-self: flex-start; margin-top: .4rem;
}
.svc-cta .btn:hover { background: var(--green); color: var(--gold-light); }
.svc-cta .btn::after { display: none; }

/* =============================================================
   12. Timeline — Un día en PATA'PALS
   ============================================================= */
.timeline { position: relative; padding-left: 2.6rem; }

.tl-rail {
  position: absolute; left: 9px; top: .6rem; bottom: 3rem;
  width: 2px; background: rgba(22,36,14,.13);
  border-radius: 2px; overflow: hidden;
}
.tl-rail i {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  transform-origin: top; transform: scaleY(0);
  transition: transform .12s linear;
}

.tl-item { position: relative; padding-bottom: 2.8rem; }
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute; left: -2.6rem; top: .35rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  transition: transform .5s var(--ease-bounce), background-color .5s;
}
.tl-dot::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); transform: scale(0);
  transition: transform .5s var(--ease-bounce) .1s;
}
.tl-item.is-visible .tl-dot::after { transform: scale(1); }

.tl-time {
  font-family: var(--display); text-transform: uppercase;
  font-size: 1.6rem; color: var(--gold-dark); line-height: 1;
  margin-bottom: .55rem;
}
.tl-time small { font-size: .55em; letter-spacing: .04em; }

.tl-body h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: .6rem; }
.tl-body p { font-size: .93rem; color: var(--ink-soft); max-width: 34rem; }

.tl-media { margin-top: 1.1rem; max-width: 20rem; }
.tl-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.05);
}

/* =============================================================
   13. Confianza
   ============================================================= */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  border-block: 1px solid var(--line-dark);
  padding-block: 1.8rem;
  margin-bottom: 3rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 12vw, 4.6rem);
  line-height: 1;
  color: var(--gold-light);
}
.stat-lab {
  display: block; margin-top: .5rem;
  font-size: .72rem; line-height: 1.4; letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(238,233,216,.62);
}

.trust-grid { display: grid; gap: 2.5rem; }
.trust-list { display: grid; gap: 1.6rem; }

.trust-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line-dark);
}
.trust-item:last-child { border-bottom: 0; padding-bottom: 0; }
.trust-num {
  font-family: var(--display); font-size: 1.1rem;
  color: var(--gold); line-height: 1.4;
  padding-top: .15rem;
}
.trust-item h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: .5rem; letter-spacing: .015em; }
.trust-item p { font-size: .9rem; color: rgba(238,233,216,.68); }

.trust-figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.02) brightness(.95);
}
.trust-figure figcaption {
  margin-top: .8rem; font-size: .82rem; font-style: italic;
  color: var(--gold-light);
}

/* =============================================================
   14. Testimonios (carrusel)
   ============================================================= */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 1rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem var(--gut) 1.6rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.tcard {
  flex: 0 0 86%;
  max-width: 26rem;
  scroll-snap-align: center;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.7rem;
  position: relative;
  box-shadow: 0 22px 50px -32px rgba(22,36,14,.7);
}
.tcard::before {
  content: "\201C";
  position: absolute; top: -.35rem; right: 1.2rem;
  font-family: var(--serif); font-size: 6rem; line-height: 1;
  color: rgba(184,146,58,.32);
}
.tcard-photo {
  width: 78px; height: 78px; border-radius: 50%;
  overflow: hidden; margin-bottom: 1.2rem;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(184,146,58,.16);
}
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.tcard blockquote {
  font-size: 1.05rem; line-height: 1.65; font-style: italic;
  color: var(--cream); margin-bottom: 1.2rem;
}
.tcard-meta {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(238,233,216,.6);
  padding-top: .9rem; border-top: 1px solid var(--line-dark);
}
.tcard-meta strong { color: var(--gold-light); font-weight: 700; }

.carousel-nav {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  margin-top: .4rem;
}
.car-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: background-color .35s, color .35s, border-color .35s, transform .35s var(--ease-out);
}
.car-btn:hover { background: var(--green); color: var(--gold-light); border-color: var(--green); transform: translateY(-2px); }

.car-dots { display: flex; gap: .45rem; }
.car-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(22,36,14,.2);
  transition: background-color .35s, transform .35s var(--ease-out), width .35s var(--ease-out);
}
.car-dots button.is-active { background: var(--gold-dark); width: 22px; border-radius: 6px; }

/* =============================================================
   15. Galería
   ============================================================= */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.g-item img {
  width: 100%; height: 100%; aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.04) brightness(.96);
  transition: transform .9s var(--ease-out), filter .6s;
}
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(184,146,58,0) 55%, rgba(184,146,58,.4));
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.g-item:hover img { transform: scale(1.09); filter: saturate(1.2) brightness(1.04); }
.g-item:hover::after { opacity: 1; }

/* =============================================================
   16. FAQ
   ============================================================= */
.faq { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0;
  font-family: var(--display); text-transform: uppercase;
  font-size: 1.12rem; line-height: 1.15; letter-spacing: .015em;
  color: var(--ink);
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dark); }

.faq-item summary i {
  position: relative; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-light);
  transition: background-color .4s var(--ease-out), border-color .4s, transform .4s var(--ease-out);
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out), background-color .4s;
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary { color: var(--gold-dark); }
.faq-item[open] summary i { background: var(--green); border-color: var(--green); transform: rotate(180deg); }
.faq-item[open] summary i::before,
.faq-item[open] summary i::after { background: var(--cream); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-body { padding-bottom: 1.4rem; }
.faq-body p { font-size: .95rem; color: var(--ink-soft); max-width: 44rem; }
.faq-body p + .faq-list { margin-top: .9rem; }
.faq-list + p { margin-top: 1rem; }
.faq-list {
  display: grid; gap: .55rem;
  max-width: 44rem; margin-bottom: .2rem;
}
.faq-list li {
  position: relative; padding-left: 1.6rem;
  font-size: .95rem; color: var(--ink-soft);
}
.faq-list li::before {
  content: "✓"; position: absolute; left: 0; top: -.05em;
  width: 1.15rem; height: 1.15rem; line-height: 1.15rem; text-align: center;
  border-radius: 50%; background: var(--green); color: var(--cream);
  font-size: .72rem; font-weight: 700;
}
.faq-item[open] .faq-body { animation: faqIn .45s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =============================================================
   17. CTA final
   ============================================================= */
.cta-final {
  position: relative; isolation: isolate;
  min-height: 82vh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--green-darker);
}
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(65% 60% at 50% 45%, rgba(20,37,12,.5), rgba(20,37,12,.88)),
    linear-gradient(180deg, rgba(20,37,12,.55) 0%, rgba(42,74,30,.28) 45%, rgba(20,37,12,.92) 100%);
}
.cta-inner {
  position: relative; z-index: 4;
  padding: 5rem var(--gut);
  max-width: 46rem;
  color: var(--cream);
}
.cta-inner .kicker { justify-content: center; }
.cta-title {
  font-size: clamp(2.7rem, 13vw, 6.4rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(10,20,6,.55);
}
.cta-sub {
  font-size: 1.02rem; color: rgba(238,233,216,.85);
  max-width: 32rem; margin: 0 auto 2rem;
}
.cta-note { margin-top: 1.2rem; font-size: .8rem; color: rgba(238,233,216,.55); letter-spacing: .04em; }

/* =============================================================
   18. Footer
   ============================================================= */
.footer {
  background: var(--green-darker);
  color: rgba(238,233,216,.75);
  padding-top: 3.5rem;
  font-size: .9rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand { text-align: center; }
.footer-brand img { width: 160px; margin-bottom: 1.1rem; margin-inline: auto; }
.footer-claim { color: rgba(238,233,216,.68); margin-bottom: 1.2rem; }

.footer-social { display: grid; gap: .7rem; justify-items: center; }
.footer-social a {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--cream); transition: color .3s, transform .3s var(--ease-out);
  width: fit-content;
}
.footer-social a:hover { color: var(--gold-light); transform: translateX(3px); }
.footer-social svg { width: 20px; height: 20px; flex: none; }

.footer-col h4 { font-size: .95rem; color: var(--gold-light); margin-bottom: .8rem; }
.footer-col h4.mt { margin-top: 1.6rem; }
.footer-col p { margin-bottom: .3rem; }
.footer-fine { font-size: .8rem; color: rgba(238,233,216,.5); margin-top: .6rem; max-width: 26rem; }
.footer-list li { margin-bottom: .35rem; }
.footer-list a { transition: color .3s, padding-left .3s var(--ease-out); }
.footer-list a:hover { color: var(--gold-light); padding-left: .3rem; }

.footer-map { display: flex; flex-direction: column; gap: .7rem; }
.footer-map iframe {
  width: 100%; height: 100%; min-height: 220px; border: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  filter: grayscale(.3) sepia(.2) hue-rotate(48deg) saturate(.95) brightness(.9);
  transition: filter .5s var(--ease-out);
}
.footer-map:hover iframe { filter: none; }
.footer-map-link {
  align-self: flex-start;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  color: var(--gold-light);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--gold-light), var(--gold-light));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size .45s var(--ease-out);
}
.footer-map-link:hover { background-size: 100% 1px; }

.footer-bottom {
  margin-top: 3rem; padding-block: 1.4rem 5.5rem;
  border-top: 1px solid var(--line-dark);
  display: grid; gap: .5rem;
  font-size: .78rem; color: rgba(238,233,216,.45);
}
.footer-credits a { color: rgba(238,233,216,.7); text-decoration: underline; text-underline-offset: 3px; }
.footer-credits a:hover { color: var(--gold-light); }

/* =============================================================
   19. Botón flotante WhatsApp
   ============================================================= */
.wa-float {
  position: fixed; z-index: 950;
  right: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-darker);
  box-shadow: 0 10px 30px -8px rgba(20,37,12,.65), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(120%) scale(.85);
  opacity: 0;
  transition: transform .6s var(--ease-bounce), opacity .5s var(--ease-out), background-color .3s;
}
.wa-float.is-in { transform: none; opacity: 1; }
.wa-float:hover { background: var(--gold-light); }
.wa-float svg { width: 28px; height: 28px; flex: none; }
.wa-float-label {
  font-weight: 700; font-size: .86rem; letter-spacing: .02em;
  max-width: 0; overflow: hidden; white-space: nowrap;
  transition: max-width .5s var(--ease-out), padding-right .5s var(--ease-out);
  padding-right: 0;
}
.wa-float.is-wide .wa-float-label,
.wa-float:hover .wa-float-label { max-width: 8rem; padding-right: .45rem; }

.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 1.5px solid var(--gold);
  animation: waPing 2.8s var(--ease-out) infinite;
}
@keyframes waPing {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* =============================================================
   20. Reveals
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease-out), transform .95s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* DEFENSIVO — elementos con reveal + split nunca quedan invisibles */
.reveal[data-split] { opacity: 1; transform: none; }

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(2deg);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
.split-word.is-in { opacity: 1; transform: none; }

.pillar { transition-delay: 0ms; }
.pillars .pillar:nth-child(2) { transition-delay: 100ms; }
.pillars .pillar:nth-child(3) { transition-delay: 200ms; }
.svc-grid > *:nth-child(2) { transition-delay: 70ms; }
.svc-grid > *:nth-child(3) { transition-delay: 140ms; }
.gallery > *:nth-child(2n) { transition-delay: 90ms; }
.gallery > *:nth-child(3n) { transition-delay: 160ms; }

/* =============================================================
   21. Responsive
   ============================================================= */
@media (min-width: 540px) {
  :root { --gut: 1.75rem; }
  .gallery { gap: .75rem; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 720px) {
  .section { padding-block: 6rem; }
  .hero-scroll { display: grid; }
  .hero-inner { padding-bottom: 7rem; }
  .hero-title { margin-bottom: 1.4rem; }
  .hero-sub { margin-bottom: 2rem; }
  .hero-actions { margin-bottom: 2.2rem; gap: .8rem; }
  .hero-trust { padding-top: 1.4rem; gap: .5rem 1.5rem; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { gap: 1rem; }
  .trust-grid { grid-template-columns: 1.35fr .85fr; gap: 3rem; align-items: start; }
  .trust-figure { position: sticky; top: calc(var(--nav-h) + 2rem); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .tcard { flex-basis: 50%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-map { grid-column: span 2; min-height: 260px; }
  .wa-float { right: 1.5rem; bottom: 1.5rem; }
}

@media (min-width: 960px) {
  :root { --gut: 2.5rem; --nav-h: 82px; }
  .section { padding-block: 8rem; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-brand img { width: 46px; }
  .nav.is-stuck .nav-brand img { width: 38px; }
  .nav-brand-text strong { font-size: 1.3rem; }
  .nav-brand-text small { font-size: .55rem; }

  .sec-head { margin-bottom: 4rem; }
  .sec-lead { font-size: 1.08rem; }

  .hero-inner { padding-bottom: 8rem; }
  /* La foto del hero es vertical: en pantallas anchas subimos el encuadre
     para que se vean las cabezas y la pelota, no solo los cuerpos. */
  .hero-media img { object-position: center 26%; }
  .hero-sub { font-size: 1.12rem; }
  .hero-actions .btn { flex: 0 0 auto; }
  .hero-trust { font-size: .82rem; gap: .5rem 2.5rem; }

  .campo-figure img { aspect-ratio: 21/9; }

  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card h3 { font-size: 1.7rem; }

  /* Timeline alternado */
  .timeline { padding-left: 0; max-width: 62rem; margin-inline: auto; }
  .tl-rail { left: 50%; transform: translateX(-50%); }
  .tl-item {
    display: grid;
    grid-template-columns: 1fr 4rem 1fr;
    align-items: start;
    padding-bottom: 3.5rem;
  }
  .tl-dot { left: 50%; transform: translateX(-50%); top: .5rem; }
  /* nth-of-type y no nth-child: el riel (.tl-rail) es el primer hijo
     y si no, invierte la alternancia. */
  .tl-item:nth-of-type(odd) .tl-time,
  .tl-item:nth-of-type(odd) .tl-body { grid-column: 1; text-align: right; }
  .tl-item:nth-of-type(odd) .tl-body p { margin-left: auto; }
  .tl-item:nth-of-type(odd) .tl-media { grid-column: 3; grid-row: 1 / span 2; }
  .tl-item:nth-of-type(even) .tl-time,
  .tl-item:nth-of-type(even) .tl-body { grid-column: 3; }
  .tl-item:nth-of-type(even) .tl-media { grid-column: 1; grid-row: 1 / span 2; margin-left: auto; }
  .tl-time { grid-row: 1; font-size: 2rem; }
  .tl-body { grid-row: 2; }
  .tl-media { margin-top: 0; max-width: 100%; }
  .tl-media img { aspect-ratio: 3/2; }

  .trust-list { gap: 2rem; }
  .trust-item { grid-template-columns: 3rem 1fr; }
  .trust-num { font-size: 1.4rem; }
  .trust-item h3 { font-size: 1.3rem; }

  .carousel-track { padding-inline: max(var(--gut), calc((100vw - 1220px) / 2)); }
  .tcard { flex-basis: 30%; min-width: 22rem; }

  .footer { padding-top: 5rem; }
  .footer-grid { grid-template-columns: 1.2fr .9fr .8fr 1.1fr; }
  .footer-map { grid-column: auto; min-height: 100%; }

  .wa-float { right: 2rem; bottom: 2rem; }
}

@media (min-width: 1280px) {
  .hero-title { max-width: 13ch; }
  .sec-title { letter-spacing: 0; }
  .gallery { gap: 1rem; }
}

/* =============================================================
   22. Reduced motion — SOLO efectos intrusivos
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: scale(1.02); }
  .ticker-track { animation: none; }
  .wa-float::before { animation: none; }
  .kicker .dot { animation: none; }
  .splash-logo { animation: none; }
  .hero-scroll span { animation: none; }
}

/* Impresión mínima */
@media print {
  .nav, .wa-float, .splash, .hero-scroll, .ticker { display: none !important; }
  .reveal, .split-word { opacity: 1 !important; transform: none !important; }
}
