/* ============================================================
   escanea.pet · single page
   Tipografía y estructura inspiradas en new.html
   Colores originales del sitio (paleta escanea.pet)
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores originales */
  --primary: #66d0a4;
  --secondary: #298c4b;
  --tertiary: #d0fcd8;
  --highlight: #f7924a;
  --ink: #1c1c1c;
  --title-green: #65c27b;
  --text: #535353;
  --grad-a: #66d0a4;
  --grad-b: #9cfab0;
  --bg-soft: #f6fafd;
  --bg-mint: #d0fcd8;
  --footer-bg: #01070e;
  --footer-text: #c7c7c7;

  /* Derivados para el layout nuevo */
  --tint: #edf8f1;
  --tint-deep: #1f6b44;
  --line: #e6eeea;
  --dark: #0a1f14;
  --on-dark: #ffffff;
  --on-dark-soft: #bcd8c8;
  --shadow: 0 16px 40px rgba(23, 99, 60, 0.14);
  --shadow-soft: 0 6px 18px rgba(23, 99, 60, 0.08);

  --content-max: 1280px;
  --page-pad: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}

section[id],
footer[id] {
  scroll-margin-top: 92px;
}

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.hidden-input {
  display: none;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--title-green);
}

/* ---------------- Botones ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--brand {
  background: linear-gradient(86deg, var(--grad-a) 0%, var(--grad-b) 95.38%);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn--solid {
  background: var(--secondary);
  color: #ffffff;
}

.btn--dark {
  background: var(--ink);
  color: #ffffff;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.btn--outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--title-green);
  color: var(--title-green);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 14px;
}

/* ---------------- Header ---------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo__img {
  height: 46px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
}

.header__nav a:hover {
  color: var(--secondary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  place-items: center;
  position: relative;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 100px;
  background: var(--ink);
  position: absolute;
  left: 11px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger span {
  top: 20px;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hidden-input:checked ~ .header__inner .hamburger span {
  background: transparent;
}

.hidden-input:checked ~ .header__inner .hamburger span::before {
  transform: translateY(6px) rotate(45deg);
}

.hidden-input:checked ~ .header__inner .hamburger span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 13, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 980;
}

.hidden-input:checked ~ .backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: #ffffff;
  z-index: 990;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}

.hidden-input:checked ~ .mobile-menu {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__logo {
  height: 42px;
  width: auto;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  background: var(--bg-soft);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__links a {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---------------- Sociales ---------------- */
.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.15s ease;
}

.socials a:hover {
  transform: translateY(-2px);
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- Secciones ---------------- */
.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--dark);
  color: var(--on-dark);
}

.section--dark .h2 {
  color: var(--on-dark);
}

.section--dark .eyebrow {
  color: #8fe6b4;
}

.section--dark .lede {
  color: var(--on-dark-soft);
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section__grid--flip .section__media {
  order: -1;
}

.section__text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.section__media {
  display: flex;
  justify-content: center;
}

.section__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 520px;
}

.section__media--fit img {
  max-height: none;
}

.section__head {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section__head--center {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 0;
}

.lede {
  font-size: 17px;
  color: var(--text);
  max-width: 560px;
}

.section__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------------- Checklist ---------------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

.checklist strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

.checklist p {
  font-size: 14.5px;
  color: var(--text);
}

/* ---------------- Hero ---------------- */
.hero {
  padding: 48px 0 88px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tint);
  color: var(--tint-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

.hero__title {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 20px 0;
  line-height: 1.08;
}

.hero__title .mark {
  color: var(--title-green);
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__sub {
  font-size: 18px;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__media img {
  width: 100%;
}

/* ---------------- Pasos / infografías ---------------- */
.steps,
.infs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.infs picture img {
  width: 100%;
  height: auto;
}

.secondary-shadow {
  box-shadow: 0 12px 20px 4px rgba(0, 0, 0, 0.1);
}

/* ---------------- Panel de privacidad ---------------- */
.panel {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.panel__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.panel__demo {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid #eef3f0;
}

.panel__row:last-child {
  border-bottom: none;
}

.switch {
  width: 40px;
  height: 22px;
  border-radius: 100px;
  background: var(--primary);
  position: relative;
  flex-shrink: 0;
}

.switch::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 2px;
  right: 2px;
}

.switch--off {
  background: #e1e8e3;
}

.switch--off::after {
  right: auto;
  left: 2px;
}

/* ---------------- Nosotros ---------------- */
.mission {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.mission__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.mission__tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tint-deep);
  background: var(--tint);
  padding: 5px 12px;
  border-radius: 100px;
}

.mission__card p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

.dev-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.dev-tag img {
  width: 44px;
  height: 44px;
}

.dev-tag small {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.dev-tag strong {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

/* ---------------- FAQ ---------------- */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.faq-q .faq-icon {
  font-size: 22px;
  color: var(--title-green);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.faq-item.open .faq-a {
  display: block;
}

.faq-more {
  display: none;
}

.faq-more.show {
  display: block;
}

.faq-toggle-wrap {
  text-align: center;
  margin-top: 28px;
}

/* ---------------- Newsletter ---------------- */
.newsletter {
  background: linear-gradient(135deg, #f1fbf4 0%, #dff6e8 100%);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
}

.newsletter .h2 {
  margin-top: 8px;
}

.newsletter p {
  font-size: 15px;
  color: var(--text);
  margin-top: 8px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 440px;
  margin: 24px auto 0;
}

.newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 100px;
  border: 1px solid #cde7d6;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  color: var(--ink);
}

.newsletter__form input:focus {
  border-color: var(--primary);
}

/* ---------------- Contacto ---------------- */
.contact-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.contact-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease;
}

.contact-tag:hover {
  box-shadow: var(--shadow);
}

.contact-tag__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--tint);
  color: var(--tint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-tag__icon .ti {
  font-size: 24px;
}

.contact-tag small {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.contact-tag strong {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.contact-tag a:hover strong {
  color: var(--secondary);
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #cde7d6;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--primary);
}

.form-card textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 110px;
}

.form-card .field-error {
  color: #6e1616;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 12px 0;
}

.form-card__submit {
  align-self: stretch;
  border: none;
}

/* ---------------- Modal ---------------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(6, 20, 13, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  padding: 24px;
}

.modal.active {
  display: grid;
}

.modal__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal__card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.modal__card p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  max-width: 300px;
  line-height: 1.6;
  margin-top: 16px;
}

.footer__logo {
  width: 170px;
}

.footer h4 {
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  font-size: 14.5px;
  color: var(--footer-text);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #ffffff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 16px;
}

.footer__bottom-links a {
  color: var(--footer-text);
}

.footer__bottom-links a:hover {
  color: #ffffff;
}

.footer__bottom-links a + a {
  border-left: 1px solid var(--footer-text);
  padding-left: 16px;
}

/* ---------------- Placeholders de imágenes ---------------- */
.phone {
  width: min(300px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  border: 1.5px dashed #b6d4c2;
  background: var(--bg-soft);
}

.phone--dark {
  border-color: rgba(143, 230, 180, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.phone--content {
  width: 300px;
  max-width: 100%;
  aspect-ratio: auto;
  min-height: 533px;
  border-style: solid;
  background: #ffffff;
  padding: 18px;
}

.phone--dark.phone--content {
  background: #14251b;
  border-color: rgba(143, 230, 180, 0.35);
}

.phone__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phone__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    135deg,
    #e8f6ee,
    #e8f6ee 8px,
    #f3fbf7 8px,
    #f3fbf7 16px
  );
  margin-bottom: 12px;
}

.phone__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

.phone__meta {
  font-size: 13px;
  color: var(--text);
}

.phone__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 12px;
}

.phone__fields div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 10px;
}

.phone__fields span {
  color: var(--text);
}

.phone__fields strong {
  font-weight: 600;
  color: var(--ink);
}

.phone__lang {
  background: var(--tint);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--tint-deep);
  width: 100%;
}

.phone__alert {
  background: #c2503a;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
}

.phone__map {
  margin-top: 14px;
  width: 100%;
  aspect-ratio: 1.4;
  border-radius: 16px;
  background: repeating-linear-gradient(
    45deg,
    #1d2c24,
    #1d2c24 10px,
    #19251f 10px,
    #19251f 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 11px;
  color: #9fb5a8;
}

.phone__share {
  margin-top: 14px;
  width: 100%;
  background: var(--secondary);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

.phone__code-label {
  margin-top: 16px;
  font-size: 11px;
  color: #9fb5a8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone__code {
  margin-top: 6px;
  display: flex;
  gap: 6px;
}

.phone__code span {
  width: 38px;
  height: 44px;
  border-radius: 8px;
  background: #1e2c24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.phone__dark-text {
  color: #eef4f0;
}

.phone__dark-muted {
  color: var(--on-dark-soft);
}

/* ---------------- Píldora ---------------- */
.chip {
  display: inline-block;
  font-size: 13px;
  color: var(--tint-deep);
  background: var(--tint);
  padding: 8px 14px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ---------------- Pasos extraviada → reencuentro ---------------- */
.lost-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 8px;
}

.lost-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lost-step__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #8fe6b4;
  color: #06210f;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.lost-step strong {
  display: block;
  font-size: 15px;
  color: var(--on-dark);
}

.lost-step p {
  font-size: 14px;
  color: var(--on-dark-soft);
}

/* ---------------- Cartilla de vacunación ---------------- */
.vaccine-sheet h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}

.vaccine-sheet .eyebrow {
  font-size: 11px;
  margin-bottom: 12px;
}

.vaccine-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vaccine-row {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 10px 12px;
}

.vaccine-row__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.vaccine-row small {
  font-size: 12px;
  color: var(--text);
}

.vaccine-row__status--ok {
  color: #2e8b57;
}

.vaccine-row__status--warn {
  color: #c9802b;
}

.vaccine-sign {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 12px;
}

.vaccine-sign > small {
  display: block;
  font-size: 11px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.vaccine-sign svg {
  width: 120px;
  height: 36px;
  margin: 4px 0;
}

.vaccine-sign .vaccine-sign__vet {
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

/* ---------------- Notificaciones ---------------- */
.notif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.notif-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.notif-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--tint);
  color: var(--tint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.notif-card__icon .ti {
  font-size: 20px;
}

.notif-card strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.notif-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ---------------- Distribuidores ---------------- */
.distributors {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: var(--dark);
  border-radius: 28px;
  padding: 48px;
}

.distributors .eyebrow {
  color: #8fe6b4;
}

.distributors .h2 {
  color: #ffffff;
}

.distributors p {
  color: var(--on-dark-soft);
  margin-top: 8px;
}

.distributors__cta {
  text-align: right;
}

/* ---------------- Tiendas ---------------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 40px auto 0;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.store-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.store-card .ti {
  font-size: 34px;
  color: var(--secondary);
}

.store-card span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.store-card strong {
  font-size: 17px;
  color: var(--ink);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .hero {
    padding: 24px 0 48px;
  }

  .hero__grid,
  .section__grid,
  .panel {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .section__grid--flip .section__media {
    order: -1;
  }

  .section__grid--flip .section__media {
    order: -1;
  }

  .steps,
  .infs {
    grid-template-columns: 1fr;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 32px 24px;
  }

  .newsletter {
    padding: 40px 24px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .distributors {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .distributors__cta {
    text-align: left;
  }

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

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 20px;
  }

  .header__actions .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero__cta .btn {
    width: 100%;
  }
}
