/* =====================================================================
   PETAXY & SERVICES LLC — Pet Travel Coordinator (Puerto Rico)
   Tema "la ruta punteada".

   De dónde sale el diseño: de la ÚNICA gráfica promocional del negocio.
   Ahí ya está todo — el sello circular de doble aro con el gato y el perro,
   la estela punteada del avión, las huellas, los corazones y la paleta teal
   + terracota sobre crema. El sitio no inventa una estética nueva: toma esos
   cuatro elementos y los vuelve estructura.

     · .sello    — marco circular de doble aro: repite el logo. Toda foto de
                   persona/mascota va en círculo, nunca en rectángulo.
     · .route    — la estela punteada con el avión, como divisor de sección.
     · .paw      — la huella, como viñeta de lista y como decoración de fondo.
     · .doc      — tarjeta con borde discontinuo tipo documento: es donde
                   viven los sellos de "empresa registrada y asegurada".

   Tipos: Baloo 2 (redondeada, del mismo aire que el lettering del logo) para
   títulos, Figtree para texto/UI, Sacramento solo para el lema propio de la
   marca ("Más que un servicio, una responsabilidad."), que en su gráfica va
   escrito a mano.
   ===================================================================== */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
/* height:auto obligatorio: el atributo height del HTML le gana a aspect-ratio */
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }

:root {
  /* paleta medida con PIL sobre el logo y la gráfica (saturación > .18) */
  --cream:    #f7f6f1;
  --paper:    #ffffff;
  --teal:     #0a879d;
  --teal-d:   #22565c;
  --teal-dd:  #163b41;
  --teal-l:   #62c0cc;
  --tint:     #e4f1f3;
  --terra:    #df9a43;
  --terra-d:  #ad5d29;
  --ink:      #1d3238;
  --body:     #4d6167;
  --line:     #dfe6e5;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --sh-sm: 0 2px 10px rgba(22, 59, 65, .07);
  --sh-md: 0 14px 34px rgba(22, 59, 65, .10);
  --sh-lg: 0 26px 60px rgba(22, 59, 65, .16);

  --f-head: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --f-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-hand: "Sacramento", "Baloo 2", cursive;
}

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(1160px, 100% - 44px); margin-inline: auto; }

h1, h2, h3, .brand__txt b, .step__n {
  font-family: var(--f-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.005em;
}
h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.1vw, 24px); font-weight: 700; }
em { font-style: normal; color: var(--teal); }

.lead { font-size: clamp(17px, 1.6vw, 19.5px); color: var(--body); }
.script { font-family: var(--f-hand); font-weight: 400; line-height: 1.05; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--terra-d);
}
/* los símbolos del sprite son de LÍNEA: sin esto heredan fill:black y en la
   banda oscura el ícono del eyebrow desaparece. `#i-paw`, `#i-wa` y `#i-fb`
   traen fill/stroke en línea y no les afecta. */
.eyebrow svg {
  width: 17px; height: 17px; flex: 0 0 auto; color: var(--terra);
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}

.sec { padding: clamp(64px, 8vw, 108px) 0; }
.sec__head { max-width: 62ch; }
.sec__head h2 { margin: 12px 0 0; }
.sec__head p { margin: 16px 0 0; }
.sec--center .sec__head { margin-inline: auto; text-align: center; }
.sec--center .eyebrow { justify-content: center; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  padding: 12px 18px; background: var(--teal-d); color: #fff; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------- iconos ---------- */
.ic { width: 20px; height: 20px; flex: 0 0 auto; fill: none;
      stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ic--f { stroke: none; fill: currentColor; }

/* =====================================================================
   Botones
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(10, 135, 157, .30); }
.btn--primary:hover { background: #0b7a8e; }
.btn--wa { background: var(--terra); color: #43290e; box-shadow: 0 10px 24px rgba(223, 154, 67, .34); }
.btn--wa:hover { background: #e9a84f; }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--teal-l); background: var(--paper); }
.btn--light { background: #fff; color: var(--teal-d); }

/* =====================================================================
   Header
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 246, 241, .93);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__row { display: flex; align-items: center; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { width: 48px; height: 48px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.brand__txt b { font-size: 19px; font-weight: 800; color: var(--teal-d); }
.brand__txt span { font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
                   text-transform: uppercase; color: var(--terra-d); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 12px; border-radius: 999px; text-decoration: none;
  font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.nav__links a:hover { background: var(--tint); color: var(--teal-d); }

.nav__tools { display: flex; align-items: center; gap: 10px; }

.lang { display: inline-flex; align-items: center; gap: 2px;
        padding: 3px; background: var(--tint); border-radius: 999px; }
/* ojo: sube la especificidad, si no `.nav__links a` no aplica pero
   sí lo hacen los estilos genéricos de enlace del header */
.lang a {
  padding: 5px 11px; border-radius: 999px; text-decoration: none;
  font-size: 12.5px; font-weight: 800; letter-spacing: .05em; color: var(--teal-d);
}
.lang a.is-active { background: var(--teal-d); color: #fff; }

/* el CTA del nav tiene que ganarle a `.nav__links a` si algún día se mueve
   dentro de esa lista — por eso va con doble clase, no con una sola */
.nav .nav__cta {
  padding: 11px 20px; white-space: nowrap; border-radius: 999px;
  background: var(--teal); color: #fff;
  font-size: 14.5px; font-weight: 700; text-decoration: none;
}
.nav .nav__cta:hover { background: #0b7a8e; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; }
.burger span { display: block; width: 21px; height: 2px; margin: 4.5px auto;
               background: var(--ink); border-radius: 2px; transition: transform .22s, opacity .22s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(46px, 6vw, 86px) 0 clamp(56px, 7vw, 100px); }
.hero::before {
  content: ""; position: absolute; inset: auto -12% 0 auto;
  width: min(760px, 82vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(98, 192, 204, .20), rgba(98, 192, 204, 0) 68%);
  transform: translateY(-14%); pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; gap: clamp(38px, 5vw, 60px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
}
.hero h1 { margin: 14px 0 0; font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; }
.hero__tag {
  display: block; margin: 12px 0 0;
  font-family: var(--f-hand); font-size: clamp(31px, 3.9vw, 46px);
  line-height: 1.14; color: var(--teal);
}
.hero__lead { margin: 20px 0 0; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__pts { display: grid; gap: 9px; margin-top: 26px; }
.hero__pts li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--teal-d); }
.hero__pts .paw { width: 16px; height: 16px; color: var(--terra); }

/* --- marco circular de doble aro (repite el sello del logo) --- */
.sello { position: relative; width: min(440px, 100%); margin-inline: auto; }
.sello::before {
  content: ""; position: absolute; inset: -18px; border-radius: 50%;
  border: 2px solid var(--teal-l); opacity: .55;
}
.sello::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 9px solid var(--paper); box-shadow: var(--sh-md);
}
.sello img { position: relative; z-index: 1; width: 100%; border-radius: 50%; }

/* insignia del avión arriba a la derecha del retrato — su propia gráfica pone
   ahí un círculo con un avión, esto lo repite (y de paso tapa el arco teal que
   asoma en el borde del recorte circular) */
.sello__badge {
  position: absolute; z-index: 2; top: 2%; right: -2%;
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center; gap: 0;
  background: var(--teal-d); color: #fff;
  border: 6px solid var(--cream); box-shadow: var(--sh-md);
}
.sello__badge svg { width: 34px; height: 34px; fill: currentColor; stroke: none; }
/* La píldora del nombre NO puede depender del ancho de `.sello`.
   Al ir en position:absolute, su ancho shrink-to-fit lo topa el bloque
   contenedor (el círculo), que en móvil es más angosto que el texto: con
   `white-space:nowrap` el texto se salía del óvalo. Ahora se dimensiona a su
   contenido (`width:max-content`), se limita al ancho de la pantalla y, si aun
   así no cabe — p. ej. si Figtree no cargó y entra la fuente del sistema, que
   es más ancha —, envuelve DENTRO del óvalo en vez de desbordarlo.
   Cada pieza (nombre / rol) va nowrap para que el salto caiga entre ellas. */
.sello__note {
  position: absolute; z-index: 2; left: 50%; bottom: -26px; transform: translateX(-50%);
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 2px 9px;
  width: max-content; max-width: min(calc(100vw - 40px), 380px);
  padding: 11px 26px; border-radius: 999px; text-align: center; line-height: 1.3;
  background: var(--paper); box-shadow: var(--sh-md);
  font-size: 13.5px; font-weight: 700; color: var(--teal-d);
}
.sello__note b { color: var(--ink); }
.sello__note b, .sello__note > span { white-space: nowrap; }

/* =====================================================================
   Estela punteada (divisor) + huella
   ===================================================================== */
.route { display: block; width: 100%; height: 46px; color: var(--teal-l); overflow: visible; }
.route path { fill: none; stroke: currentColor; stroke-width: 2.4;
              stroke-linecap: round; stroke-dasharray: 1 11; opacity: .75; }
.route .plane { fill: var(--terra); stroke: none; opacity: 1; }
.paw { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }

/* =====================================================================
   Franja de credenciales (bajo el hero)
   ===================================================================== */
.creds { background: var(--paper); border-block: 1px solid var(--line); }
.creds__row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 26px; padding: 22px 0;
}
.creds__row li { display: flex; align-items: center; gap: 11px;
                 font-size: 14.5px; font-weight: 600; color: var(--teal-d); }
.creds__row .ic { color: var(--teal); }

/* =====================================================================
   Servicios
   ===================================================================== */
.svcs { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 46px; }
.svc {
  display: flex; flex-direction: column;
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
/* OJO: `.svc__pic` NO puede llevar `overflow:hidden`. El ícono cuelga por debajo
   del marco de la foto (bottom:-22px) y ese overflow lo cortaba por la mitad.
   Las esquinas redondeadas de la foto ya las recorta `.svc` (que sí tiene
   overflow:hidden + border-radius), y la <img> no se sale del marco porque va
   con object-fit:cover dentro del aspect-ratio. */
.svc__pic { position: relative; z-index: 1; aspect-ratio: 4 / 3; background: var(--tint); }
.svc__pic img { width: 100%; height: 100%; object-fit: cover; }
.svc__ico {
  position: absolute; z-index: 2; left: 16px; bottom: -26px; width: 52px; height: 52px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--paper); color: var(--teal);
  box-shadow: 0 4px 14px rgba(22, 59, 65, .16);
}
.svc__ico .ic { width: 24px; height: 24px; }
.svc__body { padding: 42px 22px 26px; }
.svc__body h3 { font-size: 19.5px; }
.svc__body p { margin-top: 9px; font-size: 15px; }

/* la 5.ª (soluciones personalizadas) ocupa el ancho y no lleva foto */
.svc--wide {
  grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 26px;
  padding: 30px 32px; background: var(--teal-dd); color: #dff0f2;
}
.svc--wide h3 { color: #fff; }
.svc--wide p { margin-top: 8px; font-size: 15.5px; max-width: 62ch; }
.svc--wide .svc__ico { position: static; width: 62px; height: 62px; background: rgba(255, 255, 255, .12); color: #fff; box-shadow: none; }
.svc--wide .svc__ico .ic { width: 28px; height: 28px; }
.svc--wide .btn { margin-left: auto; flex: 0 0 auto; }

/* =====================================================================
   Cómo funciona
   ===================================================================== */
.pasos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 48px; }
.paso { position: relative; padding: 30px 26px 28px; background: var(--paper);
        border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.paso__n {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--tint); color: var(--teal-d);
  font-family: var(--f-head); font-size: 21px; font-weight: 800;
}
.paso h3 { margin-top: 16px; font-size: 20px; }
.paso p { margin-top: 8px; font-size: 15px; }

/* =====================================================================
   Valores (sus propias palabras) + retrato
   ===================================================================== */
.vals { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
        gap: clamp(34px, 5vw, 62px); align-items: center; }
.vals__list { display: grid; gap: 14px; margin-top: 30px; }
.vals__list li { display: flex; gap: 14px; align-items: flex-start;
                 padding: 16px 20px; background: var(--paper);
                 border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.vals__list .paw { margin-top: 4px; color: var(--terra); }
.vals__list b { display: block; font-family: var(--f-head); font-size: 18px;
                font-weight: 700; color: var(--ink); line-height: 1.2; }
.vals__list span { font-size: 14.8px; }
.quote {
  margin-top: 30px; padding: 26px 28px; border-radius: var(--r-lg);
  background: var(--teal-d); color: #e2f1f2;
}
.quote p { font-family: var(--f-hand); font-size: 30px; line-height: 1.15; color: #fff; }
.quote cite { display: block; margin-top: 12px; font-style: normal;
              font-size: 13.5px; font-weight: 700; letter-spacing: .05em;
              text-transform: uppercase; color: var(--teal-l); }

/* =====================================================================
   Sellos — empresa registrada y asegurada (banda oscura)
   ===================================================================== */
.dark { background: var(--teal-dd); color: #cfe4e6; }
.dark h2, .dark h3 { color: #fff; }
.dark .eyebrow { color: var(--terra); }
.dark .eyebrow svg { color: var(--terra); }

.doc {
  margin-top: 46px; padding: clamp(26px, 3.4vw, 42px);
  border: 2px dashed rgba(148, 200, 205, .42); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .035);
}
.doc__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.sello-card__ico {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(98, 192, 204, .16); color: var(--teal-l);
}
.sello-card__ico .ic { width: 26px; height: 26px; }
.sello-card h3 { margin-top: 16px; font-size: 17.5px; letter-spacing: .01em; }
.sello-card p { margin-top: 8px; font-size: 14.6px; color: #b9d4d7; }
.doc__foot {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 26px; border-top: 1px dashed rgba(148, 200, 205, .32);
  font-size: 15px;
}
.doc__foot b { color: #fff; }

/* =====================================================================
   Sobre Yasmin
   ===================================================================== */
.about { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
         gap: clamp(34px, 5vw, 64px); align-items: center; }
.about__card { padding: 26px 28px; background: var(--paper); border-radius: var(--r-lg);
               box-shadow: var(--sh-sm); margin-top: 26px; }
.about__card ul { display: grid; gap: 10px; }
.about__card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.2px; }
.about__card .ic { margin-top: 3px; color: var(--teal); width: 18px; height: 18px; }

/* =====================================================================
   Formas de pago — marquee (mismo patrón que yotemudo.com)
   La pista lleva 4 copias idénticas de la fila y se mueve -25%: el corte del
   loop cae sobre contenido igual y no se nota. Copias 2-4 con aria-hidden.
   ===================================================================== */
.pagos__marquee {
  margin-top: 38px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.pagos__track { display: flex; width: max-content; animation: pay-scroll 36s linear infinite; }
.pagos__marquee:hover .pagos__track, .pagos__track:focus-within { animation-play-state: paused; }
.pagos__row { display: flex; align-items: center; gap: 18px; padding: 0 9px; }
@keyframes pay-scroll { to { transform: translateX(-25%); } }

.pay {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  min-width: 186px; height: 82px; padding: 0 28px;
  background: var(--paper); border-radius: var(--r-md); box-shadow: var(--sh-sm);
}
.pay__logo { width: auto; height: 30px; }
.pay__logo--visa  { height: 23px; }
.pay__logo--mc    { height: 40px; }
.pay__logo--pp    { height: 26px; }
.pay__logo--venmo { height: 21px; }
.pay__logo--athb  { height: 25px; }

/* =====================================================================
   Formulario de cotización
   ===================================================================== */
.form { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
        gap: clamp(32px, 4.6vw, 56px); align-items: start; }
.form__panel { padding: clamp(24px, 3vw, 36px); background: var(--paper);
               border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.field { display: block; margin-top: 16px; }
.field > span {
  display: block; margin-bottom: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--teal-d);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.6px solid var(--line);
  border-radius: var(--r-sm); background: #fbfbf9; font-size: 15.5px; color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal-l); box-shadow: 0 0 0 4px rgba(98, 192, 204, .22);
}

/* los checkboxes NO usan `.field label` — esa regla los aplastaría */
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 8px; }
.check { display: flex; align-items: center; gap: 10px;
         padding: 12px 14px; border: 1.6px solid var(--line); border-radius: var(--r-sm);
         background: #fbfbf9; cursor: pointer; transition: border-color .16s, background-color .16s; }
.check input { width: 18px; height: 18px; accent-color: var(--teal); flex: 0 0 auto; margin: 0; }
.check span { font-size: 14.6px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.check:has(input:checked) { border-color: var(--teal); background: var(--tint); }
.check:hover { border-color: var(--teal-l); }

.form__send { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.form__note { margin-top: 16px; font-size: 13.6px; color: #6b7f84; }
.form__side ul { display: grid; gap: 14px; margin-top: 24px; }
.form__side li { display: flex; gap: 13px; align-items: flex-start; }
.form__side .ic { margin-top: 3px; color: var(--teal); }
.form__side a { font-weight: 600; text-decoration: none; color: var(--ink); }
.form__side a:hover { color: var(--teal); }

/* =====================================================================
   Banda de foto
   ===================================================================== */
.band { position: relative; overflow: hidden; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0;
               background: linear-gradient(100deg, rgba(22, 59, 65, .93) 34%, rgba(22, 59, 65, .55)); }
.band__in { position: relative; z-index: 1; padding: clamp(56px, 7vw, 96px) 0; max-width: 58ch; color: #d5e8ea; }
.band__in h2 { color: #fff; }
.band__in p { margin-top: 16px; }
.band__in .btn { margin-top: 26px; }

/* =====================================================================
   Footer
   ===================================================================== */
.foot { background: var(--teal-dd); color: #a9c9cd; padding: clamp(50px, 6vw, 76px) 0 34px; }
.foot__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, .9fr));
              gap: 34px; }
.foot__brand { display: flex; align-items: center; gap: 12px; }
.foot__brand img { width: 62px; height: 62px; }
.foot__brand b { display: block; font-family: var(--f-head); font-size: 21px; font-weight: 800; color: #fff; }
.foot__brand span { font-size: 11px; font-weight: 700; letter-spacing: .1em;
                    text-transform: uppercase; color: var(--terra); }
.foot__tag { margin-top: 18px; font-family: var(--f-hand); font-size: 30px; line-height: 1.05; color: var(--teal-l); }
.foot h4 { font-family: var(--f-head); font-size: 15px; font-weight: 700; letter-spacing: .06em;
           text-transform: uppercase; color: #fff; }
.foot ul { display: grid; gap: 10px; margin-top: 16px; }
.foot li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.foot .ic { margin-top: 3px; color: var(--teal-l); width: 18px; height: 18px; }
.foot a { text-decoration: none; }
.foot a:hover { color: #fff; }
.foot__bar { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center;
             margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(148, 200, 205, .2);
             font-size: 13.4px; }
.foot__bar a { color: var(--teal-l); }

/* botón flotante de WhatsApp */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}
.fab svg { width: 30px; height: 30px; fill: currentColor; }

/* =====================================================================
   Reveal
   ===================================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1060px) {
  .svcs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .doc__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creds__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1060px) {
  /* el toggle del menú va pegado a la derecha en móvil — regla de todos los builds */
  .burger { display: block; order: 99; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; z-index: 39;
    display: none; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px 22px 22px; background: var(--cream);
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 14px; font-size: 16px; }
  .nav .nav__cta { display: none; }

  .hero__grid, .vals, .about, .form { grid-template-columns: minmax(0, 1fr); }
  .hero__art { order: -1; }
  .sello { width: min(340px, 78%); }
  .sello__badge { width: 76px; height: 76px; }
  .sello__badge svg { width: 28px; height: 28px; }
  .pasos { grid-template-columns: minmax(0, 1fr); }
  .svc--wide { flex-direction: column; align-items: flex-start; }
  .svc--wide .btn { margin-left: 0; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .wrap { width: min(1160px, 100% - 34px); }
  .svcs { grid-template-columns: minmax(0, 1fr); }
  .doc__grid, .creds__row { grid-template-columns: minmax(0, 1fr); }
  .grid2, .grid3, .checks { grid-template-columns: minmax(0, 1fr); }
  .pay { min-width: 156px; height: 70px; padding: 0 22px; }
  .pay__logo { height: 25px; }
  .pay__logo--visa { height: 20px; }
  .pay__logo--mc { height: 34px; }
  .pay__logo--pp { height: 22px; }
  .pay__logo--venmo { height: 18px; }
  .pay__logo--athb { height: 21px; }
  .sello__note { font-size: 12.5px; padding: 10px 22px; bottom: -22px; }
}

/* Pantallas muy angostas (iPhone SE 1.ª gen y similares, ~320px).
   El nav desbordaba 30px y la página hacía scroll horizontal: la marca lleva
   `white-space:nowrap` y no podía encoger frente al toggle de idioma más la
   hamburguesa. Aquí la marca sí puede partir en dos líneas y se esconde el
   rótulo "Pet Travel Coordinator", que a ese ancho no cabe. */
@media (max-width: 400px) {
  .nav__row { gap: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand__txt { white-space: normal; }
  .brand__txt b { font-size: 16.5px; line-height: 1.12; }
  .brand__txt > span { display: none; }
  .lang a { padding: 5px 9px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .pagos__marquee { -webkit-mask-image: none; mask-image: none; }
  .pagos__track { width: auto; animation: none; }
  .pagos__track .pagos__row + .pagos__row { display: none; }
  .pagos__row { flex-wrap: wrap; justify-content: center; width: 100%; }
  .btn:hover, .svc:hover { transform: none; }
}
