/* ============================================================
   WOOF · Elite Dog Sitting — playful, friendly, bouncy landing
   Art direction: sky-blue + sunshine yellow on cream, rounded,
   blobby, hand-drawn energy. Keeps paw cursor + parallax.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Caveat:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root{
  --sky:      #4FA3E3;   /* brand primary */
  --sky-deep: #2477C0;
  --sky-ink:  #15436E;   /* deep friendly navy for text */
  --sky-soft: #E7F2FC;   /* soft section bg */
  --sky-mist: #F3F9FE;
  --yellow:   #FFC23C;   /* sunshine accent */
  --yellow-d: #F2A413;
  --coral:    #FF8E6B;   /* playful pop / hearts */
  --mint:     #6FD3B6;
  --cream:    #FFFDF6;
  --paper:    #FFFFFF;

  --bg: var(--cream);
  --fg: var(--sky-ink);

  --maxw: 1480px;
  --gutter: clamp(18px, 4.5vw, 60px);

  --ff-display: 'Fredoka', system-ui, sans-serif;
  --ff-body:    'Nunito', system-ui, sans-serif;
  --ff-hand:    'Caveat', cursive;

  --r-lg: 38px;
  --r-md: 26px;
  --r-sm: 16px;

  --shadow: 0 24px 50px -22px rgba(36,119,192,.42);
  --shadow-sm: 0 12px 26px -14px rgba(36,119,192,.4);

  --ease: cubic-bezier(.22,1,.36,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
  --motion: 1;
}

/* ---------- Reset ---------- */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-weight: 600;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection{ background: var(--yellow); color: var(--sky-ink); }

body.paw-on, body.paw-on a, body.paw-on button{ cursor: none; }

/* ---------- Paw cursor + trail ---------- */
.cursor{
  position: fixed; top:0; left:0; z-index: 9500; pointer-events:none;
  width: 42px; height: 42px; margin:-21px 0 0 -21px;
  transition: opacity .3s, transform .18s var(--bounce);
  will-change: transform; opacity: 0;
}
.cursor svg{ width:100%; height:100%; }
.cursor.is-hot{ transform: scale(1.6) rotate(-8deg); }
.cursor .pad{ fill: var(--sky); transition: fill .2s; }
.cursor.is-hot .pad{ fill: var(--yellow); }
.paw-stamp{
  position: fixed; z-index: 9400; pointer-events:none;
  width: 28px; height: 28px; margin:-14px 0 0 -14px;
  opacity: 0; transform: scale(.4);
  animation: pawpop .14s var(--bounce) forwards, pawfade 1.3s ease-out forwards;
}
.paw-stamp svg{ width:100%; height:100%; }
.paw-stamp .pad{ fill: var(--sky); opacity:.6; }
@keyframes pawpop{ to{ transform: scale(1);} }
@keyframes pawfade{ 0%,28%{opacity:.55;} 100%{opacity:0;} }

/* ============================================================ PRELOADER */
.preloader{
  position: fixed; inset:0; z-index: 9800; background: var(--sky-soft);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 26px;
  transition: opacity .6s ease .3s, transform .7s var(--ease) .3s;
}
.preloader.done{ opacity:0; transform: translateY(-3%); pointer-events:none; }
.pl-logo{ width: min(58vw, 230px); animation: bobble 1.4s var(--ease) infinite; }
@keyframes bobble{ 0%,100%{ transform: translateY(0) rotate(-1.5deg);} 50%{ transform: translateY(-12px) rotate(1.5deg);} }
.pl-walk{ position:relative; width: min(70vw, 320px); height: 56px; }
.pl-walk .paw{ position:absolute; width: 26px; height:26px; opacity:0; transform: scale(.3); }
.pl-walk .paw svg .pad{ fill: var(--sky); }
.pl-walk .paw.lit{ animation: plpaw .45s var(--bounce) forwards; }
@keyframes plpaw{ to{ opacity:.9; transform: scale(1) rotate(6deg);} }
.pl-meta{ font-family: var(--ff-display); font-weight:600; color: var(--sky-deep); display:flex; gap:10px; align-items:baseline; }
.pl-meta .pct{ color: var(--yellow-d); font-variant-numeric: tabular-nums; }

/* ============================================================ NAV */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 8000;
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px var(--gutter); transition: background .35s var(--ease), box-shadow .35s, padding .35s;
}
.nav.solid{ background: rgba(255,253,246,.86); backdrop-filter: blur(12px); box-shadow: 0 10px 30px -20px rgba(36,119,192,.5); padding: 8px var(--gutter); }
.nav__brand{ display:flex; align-items:center; gap:10px; }
.nav__brand img{ height: 46px; width:auto; transition: height .35s; }
.nav.solid .nav__brand img{ height: 38px; }
.nav__right{ display:flex; align-items:center; gap: clamp(12px,2vw,26px); }
.nav__links{ display:flex; gap: clamp(12px,2vw,26px); font-family:var(--ff-display); font-weight:500; font-size:16px; }
.nav__links a{ position:relative; color: var(--sky-ink); transition: color .2s; }
.nav__links a:hover{ color: var(--sky-deep); }
.nav__links a::after{ content:''; position:absolute; left:0; bottom:-5px; height:8px; width:0; background: var(--yellow); border-radius:8px; z-index:-1; opacity:.0; transition: width .3s var(--bounce), opacity .3s;}
.nav__links a:hover::after{ width:100%; opacity:.7; }
.lang{ display:flex; align-items:center; gap:5px; font-family:var(--ff-display); font-weight:600; font-size:15px; }
.lang button{ opacity:.4; transition:opacity .2s, color .2s; }
.lang button.on{ opacity:1; color: var(--sky-deep); }
.lang span{ opacity:.35; }
.nav__cta{ font-family:var(--ff-display); font-weight:600; font-size:15px; background:var(--sky); color:#fff; padding:9px 18px; border-radius:999px; box-shadow: var(--shadow-sm); transition: transform .25s var(--bounce), background .2s;}
.nav__cta:hover{ background: var(--sky-deep); transform: translateY(-2px) rotate(-2deg); }
@media (max-width: 760px){
  /* keep the "Reservar" CTA ALWAYS visible — only hide the text links */
  .nav__links{ display:none; }
  .nav__cta{ font-size:14px; padding:8px 15px; }
  .nav__brand img{ height: 52px; }
  .nav.solid .nav__brand img{ height: 44px; }
  .nav__right{ gap: 10px; }
}

/* ============================================================ shared */
.wrap{ width:100%; max-width: var(--maxw); margin:0 auto; padding-inline: var(--gutter); }
.eyebrow{
  font-family: var(--ff-hand); font-weight:700; font-size: clamp(22px,2.4vw,30px);
  color: var(--sky); display:inline-flex; align-items:center; gap:8px; transform: rotate(-2deg);
}
.eyebrow svg{ width:26px; height:26px; }
.hero .eyebrow{ display:inline-flex; white-space:nowrap; margin-bottom: 14px; }
.eyebrow svg .pad{ fill: var(--yellow); }
.hand{ font-family: var(--ff-hand); }

[data-reveal]{ transition: opacity .8s var(--ease), transform .8s var(--bounce); }
html.canim [data-reveal]{ opacity:0; transform: translateY(30px); }
html.canim [data-reveal].in{ opacity:1; transform:none; }
[data-reveal][data-d="1"]{ transition-delay:.09s;}
[data-reveal][data-d="2"]{ transition-delay:.18s;}
[data-reveal][data-d="3"]{ transition-delay:.27s;}

/* wavy section divider */
.wave{ display:block; width:100%; height: clamp(40px,6vw,90px); }
.wave path{ fill: currentColor; }

/* buttons */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--ff-display); font-weight:600; font-size:17px;
  padding: 15px 28px; border-radius: 999px; position:relative;
  transition: transform .28s var(--bounce), background .25s, color .25s, box-shadow .25s;
  will-change: transform;
}
.btn--primary{ background: var(--sky); color:#fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover{ background: var(--sky-deep); transform: translateY(-3px) rotate(-1.5deg) scale(1.03); }
.btn--yellow{ background: var(--yellow); color: var(--sky-ink); box-shadow: 0 12px 26px -14px rgba(242,164,19,.7); }
.btn--yellow:hover{ background: var(--yellow-d); transform: translateY(-3px) rotate(1.5deg) scale(1.03); }
.btn--ghost{ border:2.5px solid var(--sky); color: var(--sky-deep); }
.btn--ghost:hover{ background: var(--sky); color:#fff; transform: translateY(-3px); }
.btn{ white-space: nowrap; }
.btn .arr{ transition: transform .3s var(--bounce); }
.btn:hover .arr{ transform: translateX(5px); }
.btn--big{ font-size: clamp(18px,2.2vw,24px); padding: 19px 38px; }

/* ============================================================ HERO */
.hero{ position:relative; min-height: 100svh; display:flex; align-items:center; overflow:hidden; padding-top: 90px; background: linear-gradient(180deg, var(--sky-soft), var(--cream) 78%); }
.blob{ position:absolute; border-radius:50%; filter: blur(2px); z-index:0; will-change: transform; }
.blob--1{ width: 46vw; height:46vw; max-width:560px; max-height:560px; background: radial-gradient(circle at 35% 35%, #cfe7fb, #a9d2f4); top:-12%; right:-8%; opacity:.7; }
.blob--2{ width: 30vw; height:30vw; max-width:340px; max-height:340px; background: radial-gradient(circle at 40% 40%, #ffe6a8, #ffd166); bottom:-10%; left:-6%; opacity:.55; }
.hero__bgword{
  position:absolute; left:50%; top:14%; transform: translateX(-50%);
  font-family:var(--ff-display); font-weight:700; font-size: clamp(120px,30vw,440px);
  color:#fff; opacity:.5; letter-spacing:-.02em; pointer-events:none; z-index:0; white-space:nowrap;
}
.hero__inner{ position:relative; z-index:3; display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px,4vw,60px); align-items:center; width:100%; }
.hero h1{
  font-family: var(--ff-display); font-weight:700; line-height:1.0;
  font-size: clamp(44px, 6.6vw, 100px); letter-spacing:-.02em; color: var(--sky-ink);
}
.hero h1 .line{ padding-block: 2px; }
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .line > span{ display:block; transform: translateY(110%); transition: transform .9s var(--bounce); }
.hero.in h1 .line > span{ transform:none; }
.hero h1 .line:nth-child(2) > span{ transition-delay:.08s; }
.hero h1 .line:nth-child(3) > span{ transition-delay:.16s; }
.hero h1 .hl{ position:relative; color: var(--sky-deep); white-space:nowrap; }
.hero h1 .hl svg{ position:absolute; left:-2%; bottom:-14px; width:104%; height:22px; }
.hero h1 .hl svg path{ stroke: var(--yellow); stroke-width:9; fill:none; stroke-linecap:round; stroke-dasharray: 600; stroke-dashoffset:600; }
.hero.in h1 .hl svg path{ animation: draw 1s var(--ease) .9s forwards; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
.hero__sub{ margin-top: 26px; max-width: 38ch; font-size: clamp(16px,1.5vw,20px); color: #3f6489; font-weight:600; opacity:0; transform: translateY(18px); transition: opacity .8s ease .55s, transform .8s var(--bounce) .55s; }
.hero.in .hero__sub{ opacity:1; transform:none; }
.hero__cta{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; opacity:0; transition: opacity .8s ease .7s; }
.hero.in .hero__cta{ opacity:1; }
.hero__trust{ display:flex; align-items:center; gap:14px; margin-top:26px; font-size:14px; color:#5b7da0; opacity:0; transition: opacity .8s ease .85s;}
.hero.in .hero__trust{ opacity:1; }
.hero__trust .dots{ display:flex; }
.hero__trust .dots i{ width:34px; height:34px; border-radius:50%; border:3px solid var(--cream); margin-left:-10px; background-size:cover; background-position:center; box-shadow: var(--shadow-sm);}
.hero__trust b{ color: var(--sky-deep); }

.hero__art{ position:relative; justify-self:center; }
.hero__photo{
  position:relative; z-index:2; width: clamp(280px, 38vw, 460px); aspect-ratio: 1007/1300;
  border-radius: 48% 48% 46% 46% / 40% 40% 60% 60%;
  overflow:hidden; box-shadow: var(--shadow); border:8px solid #fff;
  will-change: transform;
}
.hero__photo img{ width:100%; height:100%; object-fit:cover; object-position: center 22%; }
.hero__art .ring{ position:absolute; z-index:1; inset:-6% -6% -6% -6%; border-radius:50%; border: 3px dashed var(--sky); opacity:.4; }
.hero__badge{
  position:absolute; z-index:4; width: 118px; height:118px; border-radius:50%;
  background: var(--yellow); color: var(--sky-ink); display:grid; place-items:center; text-align:center;
  font-family:var(--ff-display); font-weight:600; font-size:13px; line-height:1.15; padding:10px;
  box-shadow: var(--shadow-sm); top:-22px; right:-18px; transform: rotate(-12deg);
  animation: wiggle 5s var(--ease) infinite;
}
@keyframes wiggle{ 0%,100%{ transform: rotate(-12deg);} 50%{ transform: rotate(-6deg);} }
.hero__chip{
  position:absolute; z-index:4; background:#fff; color:var(--sky-ink); white-space:nowrap;
  font-family:var(--ff-display); font-weight:500; font-size:14px; padding:10px 16px; border-radius:999px;
  box-shadow: var(--shadow-sm); display:flex; align-items:center; gap:8px;
}
.hero__chip svg{ width:18px; height:18px; }
.hero__chip svg .pad{ fill: var(--coral); }
.hero__chip--1{ bottom: 10%; left:-4%; transform: rotate(-4deg); }
.hero__chip--2{ top: 24%; left:-7%; transform: rotate(5deg); }
.scrollcue{ position:absolute; bottom: 90px; left: 50%; transform: translateX(-50%); z-index:4; font-family:var(--ff-hand); font-size:20px; color:var(--sky); display:flex; flex-direction:column; align-items:center; gap:4px; }
.scrollcue .a{ animation: down 1.6s var(--ease) infinite; font-size:22px; }
@keyframes down{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(7px);} }
@media (max-width: 860px){
  .hero{ padding-top: 110px; }
  .hero__inner{ grid-template-columns: 1fr; text-align:center; }
  .hero .eyebrow{ }
  .hero__sub{ margin-inline:auto; }
  .hero__cta, .hero__trust{ justify-content:center; }
  .hero__art{ margin-top: 18px; }
  .scrollcue{ display:none; }
}

/* ============================================================ MARQUEE */
.marquee{ position:relative; overflow:hidden; background: var(--sky); padding: 14px 0; transform: rotate(-1.4deg) scale(1.04); margin: -10px 0; }
.marquee__row{ display:flex; gap:0; white-space:nowrap; width:max-content; will-change:transform; }
.marquee span{ font-family:var(--ff-display); font-weight:600; font-size: clamp(22px,3.4vw,40px); color:#fff; display:inline-flex; align-items:center; gap:22px; padding:0 22px; }
.marquee .pw{ width:.7em; height:.7em; display:inline-block; }
.marquee .pw .pad{ fill: var(--yellow); }

/* ============================================================ MANIFESTO */
.manifesto{ background: var(--cream); padding: clamp(80px,14vh,160px) 0; position:relative; }
.manifesto .wrap{ position:relative; z-index:2; }
.manifesto h2{ font-family:var(--ff-display); font-weight:600; font-size: clamp(28px,4.6vw,66px); line-height:1.12; margin-top: 22px; max-width: 19ch; letter-spacing:-.01em;}
.manifesto h2 .w{ color: rgba(21,67,110,.18); transition: color .3s var(--ease); }
.manifesto h2 .w.lit{ color: var(--sky-ink); }
.manifesto h2 .w.lit.c1{ color: var(--sky); }
.manifesto h2 .w.lit.c2{ color: var(--yellow-d); }
.manifesto .deco-paw{ position:absolute; right: 4%; top: 18%; width: clamp(80px,12vw,160px); opacity:.12; transform: rotate(14deg); }
.manifesto .deco-paw .pad{ fill: var(--sky); }

/* ============================================================ HORIZONTAL GALLERY */
.pinh{ position:relative; background: var(--sky-soft); }
.pinh__sticky{ position:sticky; top:0; height:100svh; overflow:hidden; display:flex; flex-direction:column; }
.pinh__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; padding: clamp(26px,5vh,56px) var(--gutter) 0; }
.pinh__head h2{ font-family:var(--ff-display); font-weight:700; font-size: clamp(34px,5.2vw,72px); line-height:.95; color: var(--sky-ink); letter-spacing:-.02em; white-space:nowrap;}
.pinh__head h2 .y{ color: var(--yellow-d); }
.pinh__count{ font-family:var(--ff-hand); font-size: clamp(18px,2vw,26px); color:var(--sky); text-align:right; }
.pinh__track{ display:flex; align-items:center; gap: clamp(18px,2.6vw,40px); padding: 0 var(--gutter); flex:1 1 auto; min-height:0; width:max-content; will-change:transform; }
.dogcard{ position:relative; flex:0 0 auto; width: clamp(220px, 24vw, 330px); }
.dogcard__ph{ position:relative; aspect-ratio: 3/4; max-height: 58vh; border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow); border:6px solid #fff; transition: transform .4s var(--bounce);}
.dogcard:hover .dogcard__ph{ transform: translateY(-8px) rotate(-1.2deg); }
.dogcard__ph img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.dogcard:hover .dogcard__ph img{ transform: scale(1.06); }
.dogcard__no{ position:absolute; top:12px; left:14px; z-index:2; font-family:var(--ff-display); font-weight:700; font-size:30px; color:#fff; text-shadow: 0 2px 10px rgba(21,67,110,.5); }
.dogcard__tag{ position:absolute; bottom:14px; left:14px; z-index:2; background:var(--yellow); color:var(--sky-ink); font-family:var(--ff-display); font-weight:600; font-size:13px; padding:7px 14px; border-radius:999px; box-shadow: var(--shadow-sm);}
.dogcard__meta{ display:flex; justify-content:space-between; align-items:baseline; margin-top:14px; padding:0 4px;}
.dogcard__name{ font-family:var(--ff-display); font-weight:600; font-size: clamp(19px,2vw,24px); color:var(--sky-ink); }
.dogcard__breed{ font-family:var(--ff-hand); font-size:18px; color:var(--sky); }
.dogcard--wide{ width: clamp(360px, 42vw, 600px); }
.dogcard--wide .dogcard__ph{ aspect-ratio: 16/10; }
.pinh__progress{ position:absolute; left: var(--gutter); right: var(--gutter); bottom: 30px; height:8px; background: #fff; border-radius:999px; box-shadow: inset 0 1px 4px rgba(36,119,192,.2);}
.pinh__progress i{ position:absolute; inset:0 auto 0 0; width:10%; background: var(--sky); border-radius:999px; }
.pinh__progress .paw{ position:absolute; top:50%; width:30px; height:30px; transform: translate(-50%,-50%);}
.pinh__progress .paw svg .pad{ fill: var(--yellow-d); }
/* phones: KEEP the scroll-jacked gallery — only stop the heading from hiding under the fixed nav + from being cut */
@media (max-width: 760px){
  .pinh__head{ flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 80px; }
  .pinh__head h2{ white-space: normal; }
  .pinh__count{ text-align: left; }
}

/* ============================================================ SERVICES */
.services{ background: var(--cream); padding: clamp(70px,11vh,130px) 0 clamp(40px,7vh,90px); position:relative; }
.services__intro{ display:flex; align-items:flex-end; justify-content:space-between; gap:30px; flex-wrap:wrap; margin-bottom: clamp(34px,5vh,60px);}
.services__intro h2{ font-family:var(--ff-display); font-weight:700; font-size:clamp(38px,6.5vw,92px); line-height:.95; color:var(--sky-ink); letter-spacing:-.02em;}
.services__intro p{ max-width: 34ch; color:#4a6c8d; font-size: clamp(15px,1.4vw,18px); }
.svc-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,30px); }
.svc{
  position:relative; border-radius: var(--r-lg); padding: clamp(24px,2.4vw,36px); overflow:hidden;
  box-shadow: var(--shadow); transition: transform .35s var(--bounce); min-height: 460px;
  display:flex; flex-direction:column;
}
.svc:hover{ transform: translateY(-10px) rotate(-1deg); }
.svc--sky{ background: var(--sky); color:#fff; }
.svc--yellow{ background: var(--yellow); color: var(--sky-ink); }
.svc--coral{ background: var(--coral); color:#fff; }
.svc__no{ font-family:var(--ff-display); font-weight:700; font-size: 22px; width:48px; height:48px; border-radius:50%; background: rgba(255,255,255,.28); display:grid; place-items:center; }
.svc--yellow .svc__no{ background: rgba(21,67,110,.14); }
.svc__media{ margin: 18px 0; border-radius: var(--r-md); overflow:hidden; aspect-ratio: 16/11; box-shadow: var(--shadow-sm); }
.svc__media img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.svc:hover .svc__media img{ transform: scale(1.07); }
.svc__title{ font-family:var(--ff-display); font-weight:600; font-size: clamp(26px,2.6vw,34px); line-height:1; }
.svc__desc{ margin-top: 12px; font-size: 15.5px; opacity:.92; }
.svc__foot{ margin-top:auto; padding-top: 20px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.svc__price{ font-family:var(--ff-display); font-weight:600; font-size: 20px; }
.svc__price small{ font-weight:400; opacity:.75; font-size:.62em; font-family:var(--ff-body); }
.svc__go{ width:46px; height:46px; border-radius:50%; background:#fff; color:var(--sky-deep); display:grid; place-items:center; font-size:20px; transition: transform .25s var(--bounce);}
.svc--yellow .svc__go{ color: var(--yellow-d); }
.svc--coral .svc__go{ color: var(--coral); }
.svc:hover .svc__go{ transform: rotate(45deg) scale(1.08); }
@media (max-width: 880px){ .svc-grid{ grid-template-columns:1fr; } .svc{ min-height:auto; } }

/* ============================================================ ABOUT */
.about{ background: var(--sky-soft); padding: clamp(80px,14vh,170px) 0; position:relative; overflow:hidden; }
.about__grid{ display:grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px,5vw,80px); align-items:center; }
.about__media{ position:relative; justify-self:center; }
.about__media .frame{ width: clamp(260px,34vw,420px); aspect-ratio:4/5; border-radius: 46% 46% 44% 44% / 38% 38% 62% 62%; overflow:hidden; border:8px solid #fff; box-shadow: var(--shadow); will-change:transform; }
.about__media img{ width:100%; height:115%; object-fit:cover; object-position:center 16%; }
.about__media .tagfloat{ position:absolute; bottom:-14px; right:-6px; background:var(--yellow); color:var(--sky-ink); font-family:var(--ff-display); font-weight:600; padding:12px 20px; border-radius:999px; transform: rotate(-5deg); font-size:15px; box-shadow: var(--shadow-sm); }
.about__media .spark{ position:absolute; top:-18px; left:-18px; width:60px; height:60px; color:var(--coral); animation: spin 9s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg);} }
.about h2{ font-family:var(--ff-display); font-weight:600; font-size: clamp(30px,5vw,68px); line-height:1.04; color:var(--sky-ink); margin-top:18px; letter-spacing:-.01em;}
.about h2 .y{ color: var(--yellow-d); }
.about p{ margin-top:20px; max-width: 46ch; color:#3f6489; font-size: clamp(15px,1.4vw,18px); }
.stats{ display:flex; gap: clamp(18px,3vw,46px); margin-top:36px; flex-wrap:wrap; }
.stat .n{ font-family:var(--ff-display); font-weight:700; font-size: clamp(38px,5.5vw,64px); line-height:.9; color: var(--sky); font-variant-numeric: tabular-nums; }
.stat .n .suf{ color: var(--yellow-d); }
.stat .l{ font-size:13.5px; color:#5b7da0; margin-top:6px; max-width:15ch; font-weight:700; }
@media (max-width: 880px){ .about__grid{ grid-template-columns:1fr; } .about__media{ margin-bottom: 10px; } }

/* ============================================================ CTA */
.cta{ background: var(--sky); color:#fff; padding: clamp(70px,12vh,150px) 0; position:relative; overflow:hidden; }
.cta__paws{ position:absolute; inset:0; pointer-events:none; opacity:.16; }
.cta__paws .paw{ position:absolute; width:42px; height:42px; }
.cta__paws .paw svg .pad{ fill:#fff; }
.cta .wrap{ position:relative; z-index:2; text-align:center; }
.cta__big{ font-family:var(--ff-display); font-weight:700; font-size: clamp(40px,9vw,128px); line-height:.96; letter-spacing:-.02em; }
.cta__big .y{ color: var(--yellow); }
.cta__lead{ max-width: 46ch; margin: 22px auto 0; font-size: clamp(16px,1.6vw,20px); opacity:.94; }
.cta__btns{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:34px; }
.cta__wa{ white-space:nowrap; display:inline-flex; align-items:center; gap:12px; background:#fff; color:var(--sky-deep); font-family:var(--ff-display); font-weight:600; font-size: clamp(17px,2vw,22px); padding: 18px 32px; border-radius:999px; box-shadow: var(--shadow); transition: transform .28s var(--bounce);}
.cta__wa:hover{ transform: translateY(-4px) rotate(-2deg) scale(1.03); }
.cta__wa .ic{ width:24px; height:24px; }

/* ============================================================ FOOTER */
.footer{ background: var(--sky-ink); color: #cfe2f4; padding: clamp(50px,8vh,86px) 0 36px; }
.footer__top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; border-bottom:1px solid rgba(255,255,255,.14); padding-bottom:32px;}
.footer__brand img{ height: 84px; filter: brightness(0) invert(1); opacity:.95; }
.footer__links{ display:flex; gap: clamp(28px,5vw,68px); flex-wrap:wrap; }
.footer__col h4{ font-family:var(--ff-display); font-weight:600; font-size:14px; color:#fff; margin-bottom:12px; }
.footer__col a{ display:block; padding:5px 0; font-weight:600; font-size:15px; transition: color .2s; }
.footer__col a:hover{ color: var(--yellow); }
.footer__bot{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:24px; font-size:13.5px; color:#8fb3d4; }

/* lang visibility */
.lang-es [data-en]{ display:none !important; }
.lang-en [data-es]{ display:none !important; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.2s !important; }
  .hero h1 .line > span{ transform:none; }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
}
