/* =============================================================
   NATIVA VET · styles.css
   1. Tokens              5. Componentes        9. Responsive
   2. Reset y base        6. Secciones         10. Reduced-motion
   3. Utilidades          7. Efectos
   4. Tipografía          8. Cursor
   ============================================================= */

/* ============================== 1. TOKENS ============================== */
:root {
  --bg:        #f6f1e7;   /* crema cálida */
  --bg-2:      #efe7d6;   /* arena */
  --paper:     #fffdf8;
  --ink:       #21302a;   /* verde pino profundo */
  --ink-soft:  #3a4a42;
  --ink-mute:  #6d7b71;
  --accent:    #3f7d5c;   /* verde Nativa */
  --accent-deep:#2f5f46;
  --accent-2:  #6ea7bd;   /* azul cielo suave */
  --sun:       #e2a749;   /* ámbar cálido (detalles/estrellas) */
  --whatsapp:  #1fa855;
  --alert:     #c15f3c;   /* terracota (urgencias) */
  --line:      rgba(33, 48, 42, 0.14);
  --line-soft: rgba(33, 48, 42, 0.08);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-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.56, 0.64, 1);

  --container: 1180px;
  --gutter: clamp(1.15rem, 5vw, 3rem);
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(33, 48, 42, 0.06), 0 1px 3px rgba(33, 48, 42, 0.05);
  --shadow-md: 0 18px 44px -18px rgba(33, 48, 42, 0.24), 0 8px 20px -12px rgba(33, 48, 42, 0.18);
  --shadow-lg: 0 44px 90px -30px rgba(47, 95, 70, 0.34), 0 20px 44px -22px rgba(33, 48, 42, 0.22);
}

@property --halo-x { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --halo-y { syntax: "<percentage>"; inherits: false; initial-value: 50%; }

/* ============================== 2. RESET Y BASE ======================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { 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 { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.015em; font-weight: 400; }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2.5px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--paper);
  border-radius: 10px; font-weight: 600; font-size: .9rem;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ============================== 3. UTILIDADES ======================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.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;
}
.section { padding-block: clamp(3.6rem, 9vw, 7.5rem); position: relative; }
.section--tint { background: var(--bg-2); }
.section-head { max-width: 44ch; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-deep);
}
.kicker::before {
  content: ""; width: 22px; height: 1.5px; background: var(--accent);
  display: inline-block;
}
.section-head--center .kicker::before { display: none; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-top: .8rem;
  font-optical-sizing: auto;
}
.section-title em { font-style: italic; color: var(--accent-deep); }
.section-lead {
  margin-top: 1rem; color: var(--ink-soft); font-size: 1.06rem; max-width: 52ch;
}
.section-head--center .section-lead { margin-inline: auto; }

/* ============================== 4. TIPOGRAFÍA ======================== */
.display {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 380;
  letter-spacing: -0.02em;
}

/* ============================== 5. COMPONENTES ======================= */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .92rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 999px;
  font-weight: 600; font-size: .96rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-color .3s;
  will-change: transform;
}
.btn svg { flex: none; }
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); transition-duration: .1s; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--accent); background: var(--paper); }
.btn--wa { --btn-bg: var(--whatsapp); }
.btn--alert { --btn-bg: var(--alert); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line-soft);
  font-size: .82rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(63, 125, 92, 0.18);
}

.icon-badge {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(150deg, rgba(63,125,92,0.16), rgba(110,167,189,0.16));
  color: var(--accent-deep);
  flex: none;
}
.icon-badge svg { width: 26px; height: 26px; }

/* ---- Barra de urgencias ---- */
.topbar {
  background: var(--ink); color: var(--bg);
  font-size: .84rem;
  position: relative; z-index: 60;
}
.topbar .container {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem 1.4rem; flex-wrap: wrap;
  padding-block: .5rem;
  text-align: center;
}
.topbar strong { color: #fff; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.topbar a:hover { color: var(--sun); }
.topbar svg { width: 15px; height: 15px; }

/* ---- Navegación ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background-color .35s var(--ease-out), box-shadow .35s var(--ease-out), backdrop-filter .35s;
}
.nav.is-scrolled {
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -22px rgba(33,48,42,0.3);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .9rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-size: 1.28rem; font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--paper);
  flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand em { font-style: italic; color: var(--accent-deep); }

.nav-links {
  display: none;
  align-items: center; gap: clamp(1rem, 2.4vw, 2rem);
}
.nav-link {
  position: relative; font-size: .95rem; font-weight: 500; padding: .3rem 0;
  color: var(--ink-soft);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-actions .btn { padding: .7rem 1.2rem; font-size: .9rem; }
.nav-cta-desktop { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 10px; margin: -10px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.nav-menu[aria-hidden="false"] ~ .nav-actions .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu[aria-hidden="false"] ~ .nav-actions .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-menu[aria-hidden="false"] ~ .nav-actions .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Menú móvil ---- */
.nav-menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--bg);
  padding: 6rem var(--gutter) 3rem;
  display: flex; flex-direction: column; gap: .4rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--ease-soft);
}
.nav-menu[aria-hidden="false"] { clip-path: inset(0 0 0 0); }
.nav-menu a {
  font-family: var(--serif); font-size: 1.7rem; padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav-menu .btn { margin-top: 1.4rem; }

/* ---- Formulario ---- */
.field { position: relative; margin-bottom: 1rem; }
.field label {
  display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft); margin-bottom: .4rem;
}
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 12px; color: var(--ink); font: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(63, 125, 92, 0.14);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-wrap { position: relative; }
.cta-form { transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.cta-submit { position: relative; overflow: hidden; }
.cta-form.is-sending .cta-submit { pointer-events: none; opacity: .8; }
.form-success {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center; gap: .5rem;
  background: var(--paper); border-radius: var(--radius);
  padding: 2rem;
  opacity: 0; transform: scale(.96); pointer-events: none;
  transition: opacity .5s var(--ease-out) .1s, transform .6s var(--ease-bounce) .1s;
}
.form-success.is-visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.form-success .check {
  width: 54px; height: 54px; border-radius: 50%; margin-inline: auto;
  display: grid; place-items: center; background: var(--accent); color: #fff;
}
.form-success h3 { font-family: var(--serif); font-size: 1.5rem; }

/* ============================== 6. SECCIONES ======================= */

/* ---- Hero ---- */
.hero { position: relative; padding-top: clamp(2rem, 6vw, 4rem); overflow: clip; }
.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.6vw, 4.6rem);
  margin: 1.1rem 0 0;
  font-weight: 370;
}
.hero h1 em { font-style: italic; color: var(--accent-deep); }
.hero-sub {
  margin-top: 1.3rem; font-size: 1.15rem; color: var(--ink-soft);
  max-width: 40ch;
}
.hero-actions {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem;
}
.hero-trust {
  margin-top: 2rem; display: flex; align-items: center; gap: .8rem;
  font-size: .9rem; color: var(--ink-mute);
}
.hero-stars { color: var(--sun); letter-spacing: 2px; }

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-blob {
  position: absolute; inset: -14% -12% -10% -14%; z-index: -1;
  background: radial-gradient(45% 40% at 30% 30%, rgba(63,125,92,0.28), transparent 70%),
              radial-gradient(50% 45% at 78% 75%, rgba(110,167,189,0.3), transparent 72%);
  filter: blur(46px);
}
.hero-card {
  position: absolute; left: -6%; bottom: 8%;
  background: var(--paper); border-radius: 16px;
  padding: .9rem 1.1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem;
  max-width: 230px;
}
.hero-card .icon-badge { width: 40px; height: 40px; border-radius: 12px; }
.hero-card .icon-badge svg { width: 20px; height: 20px; }
.hero-card b { display: block; font-size: .92rem; }
.hero-card span { font-size: .78rem; color: var(--ink-mute); }

/* ---- Stats ---- */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--bg); padding: 1.5rem 1.2rem; text-align: center; }
.stat b {
  font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--accent-deep); font-weight: 420; display: block;
}
.stat span { font-size: .86rem; color: var(--ink-mute); }

/* ---- Sobre nosotros ---- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 5 / 4;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-values { margin-top: 1.6rem; display: grid; gap: 1rem; }
.about-value { display: flex; gap: .9rem; align-items: flex-start; }
.about-value svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.about-value b { display: block; }
.about-value p { font-size: .95rem; color: var(--ink-soft); margin-top: 2px; }

/* ---- Servicios (bento) ---- */
.services-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
.service {
  position: relative; isolation: isolate;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow: hidden;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .3s;
}
.service::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(240px circle at var(--halo-x) var(--halo-y), rgba(63,125,92,0.14), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(63,125,92,0.3); }
.service:hover::before { opacity: 1; }
.service h3 { font-family: var(--serif); font-size: 1.28rem; margin: 1rem 0 .5rem; }
.service p { font-size: .94rem; color: var(--ink-soft); }
.service-photo {
  margin: -1.5rem -1.5rem 1.2rem; height: 170px; overflow: hidden;
  background: var(--bg-2);
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-soft); }
.service:hover .service-photo img { transform: scale(1.05); }
.service--wide .icon-badge { margin-bottom: .2rem; }

@media (min-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Marquesina ---- */
.marquee {
  overflow: hidden; position: relative;
  padding-block: 1.3rem;
  border-block: 1px solid var(--line-soft);
  background: var(--bg);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; gap: 2.6rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 2.6rem;
}
.marquee-track span::after { content: "•"; color: var(--accent); font-style: normal; }

/* ---- Equipo ---- */
.team-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member-photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); }
.member-body { padding: 1.3rem; }
.member-body h3 { font-family: var(--serif); font-size: 1.24rem; }
.member-role { color: var(--accent-deep); font-size: .84rem; font-weight: 600; margin-top: .25rem; letter-spacing: .02em; }
.member-bio { font-size: .92rem; color: var(--ink-soft); margin-top: .7rem; }

/* ---- Testimonios ---- */
.tst-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .tst-grid { grid-template-columns: repeat(3, 1fr); } }
.tst {
  background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.6rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.section--tint .tst { background: var(--paper); }
.tst-stars { color: var(--sun); letter-spacing: 2px; font-size: .95rem; }
.tst-text { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--ink-soft); line-height: 1.5; }
.tst-who { font-size: .88rem; color: var(--ink-mute); margin-top: auto; }
.tst-who b { color: var(--ink); font-weight: 600; }

/* ---- Galería ---- */
.gallery {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure {
  position: relative; overflow: hidden; border-radius: 14px;
  aspect-ratio: 1 / 1; background: var(--bg-2);
}
.gallery figure:nth-child(1) { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft);
}
.gallery figure:hover img { transform: scale(1.06); }

/* ---- Horario y ubicación ---- */
.info-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .info-grid { grid-template-columns: 1fr 1.2fr; } }
.info-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.7rem;
}
.hours-list { margin-top: 1rem; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list b { font-weight: 600; }
.info-contact { margin-top: 1.4rem; display: grid; gap: .7rem; }
.info-contact a, .info-contact p {
  display: flex; align-items: center; gap: .65rem; font-size: .95rem; color: var(--ink-soft);
}
.info-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.map-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft);
  min-height: 340px; height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(0.9); }

.emergency-band {
  margin-top: 1.4rem;
  background: linear-gradient(120deg, var(--alert), #a94e2f);
  color: #fff; border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.emergency-band b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.emergency-band p { font-size: .9rem; opacity: .9; }
.emergency-band .btn { --btn-bg: #fff; --btn-fg: var(--alert); }

/* ---- Contacto ---- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-aside h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .8rem; }
.contact-aside .info-contact { margin-top: 1rem; }
.contact-socials { margin-top: 1.4rem; display: flex; gap: .7rem; }
.contact-socials a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line-soft); color: var(--ink-soft);
  transition: transform .3s var(--ease-out), color .3s, border-color .3s;
}
.contact-socials a:hover { transform: translateY(-3px); color: var(--accent-deep); border-color: var(--accent); }
.contact-socials svg { width: 20px; height: 20px; }
.contact-form-card {
  background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem);
}
.section--tint .contact-form-card { background: var(--paper); }

/* ---- Footer ---- */
.footer {
  background: var(--ink); color: rgba(246, 241, 231, 0.82);
  padding-block: clamp(3rem, 7vw, 5rem) 2rem;
}
.footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  padding-bottom: 2.4rem; border-bottom: 1px solid rgba(246,241,231,0.14);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .brand { color: #fff; }
.footer-about { margin-top: 1rem; font-size: .92rem; max-width: 36ch; }
.footer h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,241,231,0.6); margin-bottom: 1rem; }
.footer-links { display: grid; gap: .55rem; font-size: .93rem; }
.footer-bottom {
  padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; font-size: .82rem; color: rgba(246,241,231,0.6);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---- Botón flotante WhatsApp ---- */
.fab {
  position: fixed; right: clamp(1rem, 3vw, 1.7rem); bottom: clamp(1rem, 3vw, 1.7rem);
  z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(31, 168, 85, 0.6);
  transition: transform .35s var(--ease-bounce);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }

/* ============================== 7. EFECTOS ======================= */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty, 0));
}

/* ============================== 8. CURSOR (ninguno — nativo) ==== */

/* ============================== 9. RESPONSIVE ======================= */
@media (min-width: 620px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 720px) {
  .hero-sub { font-size: 1.22rem; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-menu { display: none; }
  .nav-toggle { display: none; }
  .nav-cta-desktop { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid .about-figure { aspect-ratio: 4 / 5; }
}
@media (min-width: 1120px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4.5rem; }
}

/* ============================== 10. REDUCED-MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-blob { animation: none; }
  /* Se mantienen: hover, tilt, fades, marquesina, count-up */
}
