:root {
  --bg: #edf3ed;
  --bg-muted: #dfe7df;
  --surface: rgba(249, 252, 249, 0.9);
  --surface-strong: #fcfffc;
  --surface-inverse: #121312;
  --surface-accent: #d7e1d7;
  --text: #131513;
  --text-soft: #58615b;
  --text-inverse: #f7faf7;
  --line: rgba(19, 21, 19, 0.12);
  --line-strong: rgba(19, 21, 19, 0.22);
  --accent: #0b8f43;
  --accent-strong: #076730;
  --accent-soft: rgba(11, 143, 67, 0.12);
  --success: #087a3a;
  --success-soft: rgba(11, 143, 67, 0.1);
  --whatsapp-green: #25d366;
  --whatsapp-green-strong: #1fb85a;
  --whatsapp-gradient:
    linear-gradient(
      135deg,
      #56e98b 0%,
      #25d366 54%,
      #17b857 100%
    );
  --whatsapp-shadow: rgba(31, 184, 90, 0.32);
  --mercadolibre-yellow: #ffe600;
  --mercadolibre-yellow-strong: #f5dc00;
  --mercadolibre-blue: #2d3277;
  --instagram-yellow: #f58529;
  --instagram-pink: #dd2a7b;
  --instagram-purple: #8134af;
  --instagram-blue: #515bd4;
  --maps-gradient:
    linear-gradient(
      135deg,
      #f36c5f 0%,
      #eb5849 24%,
      #e1493d 52%,
      #d83f36 76%,
      #bf312d 100%
    );
  --maps-shadow: rgba(191, 49, 45, 0.34);
  --shadow: 0 28px 70px rgba(19, 21, 19, 0.14);
  --shadow-soft: 0 18px 40px rgba(19, 21, 19, 0.09);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1180px;
  --section-space: 88px;
  --header-offset: 182px;
  --transition: 220ms ease;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(11, 143, 67, 0.18), transparent 36%),
    radial-gradient(circle at right top, rgba(19, 21, 19, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  padding-bottom: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 21, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 21, 19, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(11, 143, 67, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  background: rgba(237, 243, 237, 0.84);
  backdrop-filter: blur(18px);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(19, 21, 19, 0.08);
}

.header-shell {
  display: grid;
  gap: 12px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: fit-content;
}

.brand img {
  width: 58px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span:last-child {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  overflow-x: visible;
  padding-bottom: 0;
  scrollbar-width: none;
  justify-self: end;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-soft);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(252, 255, 252, 0.76);
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.header-actions .button--header {
  gap: 0.45rem;
}



.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--success));
  color: var(--text-inverse);
  box-shadow: var(--shadow-soft);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 18px 36px rgba(11, 143, 67, 0.28);
}

.button--secondary {
  background: var(--surface-strong);
  border-color: var(--line);
  color: var(--text);
}

.button--ghost {
  background: rgba(11, 143, 67, 0.08);
  border-color: rgba(11, 143, 67, 0.16);
  color: var(--success);
}

.button--maps {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.06)),
    var(--maps-gradient);
  border-color: rgba(191, 49, 45, 0.22);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 36px var(--maps-shadow);
}

.button--maps:hover,
.button--maps:focus-visible {
  box-shadow: 0 22px 44px rgba(161, 39, 35, 0.42);
}

.button--header {
  min-height: 46px;
}

.hero,
.section {
  scroll-margin-top: var(--header-offset);
}

#como-comprar {
  scroll-margin-top: calc(var(--header-offset) - var(--section-space));
}

#contacto {
  scroll-margin-top: calc(var(--header-offset) - var(--section-space));
}

.hero {
  padding: 28px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.hero-copy,
.hero-panel,
.feature-card,
.catalog-card,
.catalog-note,
.process-card,
.process-panel,
.info-card,
.contact-link,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.hero-panel,
.catalog-note,
.process-panel,
.contact-card {
  padding: 24px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 143, 67, 0.18), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 18px 0 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.5rem, 10vw, 4.85rem);
  max-width: 12ch;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: clamp(1.06rem, 3.4vw, 1.18rem);
  color: var(--text-soft);
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.hero-meta {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.hero-meta li {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  font-weight: 500;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 143, 67, 0.92), rgba(18, 19, 18, 0.96)),
    var(--surface-inverse);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 250, 247, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 18px 0 0;
  max-width: 12ch;
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-panel p {
  margin: 16px 0 0;
  max-width: 58ch;
  color: rgba(247, 250, 247, 0.84);
}

.stat-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card strong {
  display: block;
  font-size: 1.05rem;
}

.stat-card p {
  margin: 8px 0 0;
  color: rgba(247, 250, 247, 0.78);
}

.section {
  padding: var(--section-space) 0;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    var(--bg-muted);
  border-top: 1px solid rgba(19, 21, 19, 0.08);
  border-bottom: 1px solid rgba(19, 21, 19, 0.08);
}

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 980px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 7vw, 3.25rem);
  max-width: 14ch;
}

.section-heading p:last-child {
  margin: 0;
  max-width: 65ch;
  color: var(--text-soft);
}

.feature-grid,
.catalog-grid,
.process-grid,
.faq-grid,
.contact-stack {
  display: grid;
  gap: 16px;
}

.feature-card,
.catalog-card,
.process-card,
.info-card,
.contact-link,
.faq-item {
  padding: 22px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.feature-card:hover,
.catalog-card:hover,
.process-card:hover,
.contact-link:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 42px rgba(19, 21, 19, 0.12);
}

.feature-icon,
.process-step {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.feature-card h3,
.catalog-card h3,
.process-card h3,
.process-panel h3,
.contact-card h3,
.info-card h3 {
  margin: 16px 0 0;
  font-size: 1.25rem;
  line-height: 1.15;
}

.feature-card p,
.catalog-card p,
.process-card p,
.process-panel p,
.contact-card p,
.info-card p,
.faq-item p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.card-kicker,
.contact-link__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.tag-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 0.94rem;
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--success);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "->";
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-strong);
}

.catalog-note {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  background:
    linear-gradient(135deg, rgba(11, 143, 67, 0.08), rgba(19, 21, 19, 0.05)),
    var(--surface);
}

.catalog-note h3 {
  margin: 0;
  font-size: 1.35rem;
}

.catalog-note p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.process-layout,
.contact-layout {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-card--location {
  background:
    linear-gradient(180deg, rgba(90, 128, 255, 0.08), rgba(249, 252, 249, 0)),
    var(--surface);
}

.contact-card--about {
  background:
    linear-gradient(180deg, rgba(11, 143, 67, 0.08), rgba(249, 252, 249, 0)),
    var(--surface);
  grid-template-rows: auto auto auto 1fr auto;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-detail {
  padding: 18px;
  border: 1px solid rgba(19, 21, 19, 0.1);
  border-radius: 20px;
  background: rgba(252, 255, 252, 0.72);
}

.contact-card .contact-detail__label {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail > p:not(.contact-detail__label) {
  margin: 10px 0 0;
}

.contact-address {
  margin: 10px 0 0;
  font-style: normal;
}

.contact-address p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.contact-subte {
  display: flex;
  align-items: center;
  gap: 0.35em;
  flex-wrap: wrap;
}

.contact-subte__icon {
  display: inline-block;
  width: auto;
  height: 1em;
  vertical-align: middle;
}

.process-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    var(--surface-inverse);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
  box-shadow: var(--shadow-soft);
}

.process-panel p {
  color: rgba(247, 250, 247, 0.82);
}

.process-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
}

.process-panel .button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-inverse);
}

.button[href*="wa.me"],
.whatsapp-float[href*="wa.me"] {
  background: var(--whatsapp-green);
  border-color: var(--whatsapp-green);
  color: #fff;
}

.button[href*="wa.me"]:hover,
.button[href*="wa.me"]:focus-visible,
.whatsapp-float[href*="wa.me"]:hover,
.whatsapp-float[href*="wa.me"]:focus-visible {
  background: var(--whatsapp-green-strong);
  border-color: var(--whatsapp-green-strong);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.button.button--whatsapp,
.whatsapp-float[href*="wa.me"] {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    var(--whatsapp-gradient);
  border-color: rgba(31, 184, 90, 0.24);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0 18px 36px var(--whatsapp-shadow);
}

.button.button--whatsapp:hover,
.button.button--whatsapp:focus-visible,
.whatsapp-float[href*="wa.me"]:hover,
.whatsapp-float[href*="wa.me"]:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    var(--whatsapp-gradient);
  border-color: rgba(24, 146, 69, 0.3);
  box-shadow: 0 22px 42px rgba(24, 146, 69, 0.38);
}

.button[href*="mercadolibre.com.ar"] {
  background: var(--mercadolibre-yellow);
  border-color: var(--mercadolibre-yellow-strong);
  color: var(--mercadolibre-blue);
  box-shadow: 0 18px 36px rgba(255, 230, 0, 0.22);
}

.button[href*="mercadolibre.com.ar"]:hover,
.button[href*="mercadolibre.com.ar"]:focus-visible {
  background: var(--mercadolibre-yellow-strong);
  border-color: var(--mercadolibre-yellow-strong);
  box-shadow: 0 20px 40px rgba(255, 230, 0, 0.32);
}

.button[href*="instagram.com"] {
  background:
    linear-gradient(
      135deg,
      var(--instagram-yellow) 0%,
      var(--instagram-pink) 42%,
      var(--instagram-purple) 72%,
      var(--instagram-blue) 100%
    );
  border-color: rgba(221, 42, 123, 0.34);
  color: #fff;
  box-shadow: 0 18px 36px rgba(221, 42, 123, 0.24);
}

.button[href*="instagram.com"]:hover,
.button[href*="instagram.com"]:focus-visible {
  border-color: rgba(221, 42, 123, 0.42);
  box-shadow: 0 20px 40px rgba(129, 52, 175, 0.32);
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}

.contact-link strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.contact-link__meta {
  color: var(--text-soft);
}

.info-card address {
  display: grid;
  gap: 4px;
  margin: 14px 0 0;
  font-style: normal;
  color: var(--text);
  font-weight: 500;
}

.info-card--highlight {
  background:
    linear-gradient(180deg, rgba(11, 143, 67, 0.08), rgba(255, 255, 255, 0)),
    var(--surface);
}

.review-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(19, 21, 19, 0.1);
  background:
    radial-gradient(circle at top left, rgba(11, 143, 67, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    #edf3ed;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-card p.contact-story {
  margin: 0;
  max-width: 42ch;
}

.contact-testimonial {
  width: 100%;
  justify-self: start;
}

.map-shell {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(11, 143, 67, 0.12), rgba(19, 21, 19, 0.08)),
    var(--surface-accent);
  min-height: 320px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  background: transparent;
}

.stacked-actions--inline {
  flex-direction: column;
}

.contact-card p.noscript-copy {
  margin: 0;
  color: var(--text-soft);
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--success);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding-top: 12px;
}

.site-footer {
  padding: 32px 0 56px;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: var(--text-soft);
}

.footer-shell p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  color: var(--text-inverse);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  border-radius: 0;
}

@media (max-width: 719px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 8px;
    row-gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 52px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span:last-child {
    font-size: 0.82rem;
  }

  .site-nav a[href="#como-comprar"],
  .site-nav a[href="#contacto"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
  }

  .site-nav a[href="#como-comprar"]::before {
    content: "\01F6D2";
    font-size: 1rem;
    line-height: 1;
  }

  .site-nav a[href="#contacto"]::before {
    content: "\01F4CD";
    font-size: 1rem;
    line-height: 1;
  }

  .header-actions .button--header {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    gap: 0;
    font-size: 0;
  }

  .header-actions .button--header .contact-subte__icon {
    width: auto;
    height: 0.95rem;
  }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-delay="1"] {
  transition-delay: 0.08s;
}

.js [data-delay="2"] {
  transition-delay: 0.16s;
}

.js [data-delay="3"] {
  transition-delay: 0.24s;
}

.redirect-page {
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.redirect-card {
  width: min(100% - 32px, 560px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.redirect-card img {
  width: 72px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.redirect-card h1 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.redirect-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.redirect-card .stacked-actions {
  margin-top: 24px;
}

@media (min-width: 720px) {
  :root {
    --header-offset: 112px;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .site-nav a[href="#como-comprar"],
  .site-nav a[href="#contacto"] {
    font-size: 0;
  }

  .site-nav a[href="#como-comprar"]::before {
    content: "\01F6D2 C\00F3mo comprar";
    font-size: 0.95rem;
    line-height: 1;
  }

  .site-nav a[href="#contacto"]::before {
    content: "\01F4CD D\00F3nde estamos";
    font-size: 0.95rem;
    line-height: 1;
  }

  .hero-actions,
  .stacked-actions,
  .stacked-actions--inline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-detail--wide {
    grid-column: 1 / -1;
  }

  .contact-testimonial {
    width: fit-content;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 66px;
    height: 66px;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }
}

@media (min-width: 960px) {
  :root {
    --section-space: 104px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    align-items: stretch;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: start;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: stretch;
  }

  .map-shell,
  .map-frame {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
