/* =========================================================
   OSG Foods — Landing feria (galería de vídeos con gate)
   Paleta de marca oficial:
   Marca #00AE9B · Oscuro/acento #0E2421 ·
   Fondos neutros #F5F5F5 · Tint claro #EAF6F4
   ========================================================= */

:root {
  --teal: #00AE9B;
  --teal-dark: #009988;
  --teal-light: #EAF6F4;
  --graphite: #0E2421;
  --graphite-soft: #18302D;
  --steel-100: #F5F5F5;
  --steel-200: #F5F5F5;
  --steel-300: #DCE1DF;
  --steel-500: #8B9793;
  --ink: #1A1F1E;
  --ink-soft: #4B5A56;
  --white: #FFFFFF;
  --danger: #C4432E;

  --font-body: 'Poppins', 'Roboto', sans-serif;

  --radius-s: 2px;
  --radius-m: 2px;
  --radius-l: 2px;

  --shadow-card: 0 10px 30px -14px rgba(17, 23, 22, 0.25);
  --shadow-lift: 0 20px 45px -18px rgba(17, 23, 22, 0.35);

  --header-h: 66px;
  --ticker-h: 46px;
  --offset: calc(var(--header-h) + var(--ticker-h));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--steel-100);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--teal-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.container.narrow { max-width: 760px; }

.section {
  padding: 88px 0;
  border-top: 1px solid rgba(0, 174, 155, 0.25);
  scroll-margin-top: var(--offset);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.eyebrow-dark { color: var(--teal-dark); }

.lead-text {
  font-size: 1.05rem;
  max-width: 640px;
}

.section-heading { margin-bottom: 48px; }
.section-heading h2 { max-width: 680px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(15, 168, 148, 0.55);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--graphite);
  color: var(--graphite);
}
.btn-outline:hover { background: var(--graphite); color: var(--white); }

.btn-ghost {
  background: transparent;
  border-color: var(--steel-300);
  color: var(--ink-soft);
}

.btn-sm { padding: 10px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.link-inline {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--teal-dark);
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- Logo lockup ---------- */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { display: block; width: auto; }
.logo-img-header { height: 34px; }
.logo-img-footer { height: 110px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--steel-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1); }

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo { display: inline-flex; }
.header-web-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.header-web-link:hover { color: var(--teal-dark); }

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.header-nav a:hover { color: var(--teal-dark); }

.badge-oferta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-s);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.badge-oferta:hover { background: var(--teal-dark); }
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  animation: pulsate 1.6s infinite;
}
@keyframes pulsate {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0.35; }
}

/* ---------- Ticker ---------- */
.site-ticker {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 999;
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--graphite);
  text-decoration: none;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  backface-visibility: hidden;
}
.ticker-item {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-300);
  padding: 0 32px;
}
.ticker-item strong { color: var(--teal); }
.ticker-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-s);
}
.ticker-sep {
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- Fade-in entrada ---------- */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in { transform: translateY(28px); }
.fade-in-left { transform: translateX(-28px); }
.fade-in-right { transform: translateX(28px); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--offset) 0 80px;
  scroll-margin-top: var(--offset);
  background: var(--graphite);
}
.hero-fair-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-s);
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--steel-300);
}
.hero-fair-info .fair-logo { height: 22px; width: auto; flex-shrink: 0; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-background.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(1px) saturate(1.2) brightness(1.05);
  transform: scale(1.02); /* disimula el desenfoque en los bordes */
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Velo oscuro para que el H1 y los chips mantengan legibilidad,
     más ligero hacia la derecha para que la foto de producto se
     aprecie con claridad. */
  background: linear-gradient(115deg, rgba(10,15,14,0.78) 0%, rgba(10,15,14,0.55) 45%, rgba(10,15,14,0.3) 100%);
}
.hero-bg-sheen {
  position: absolute;
  inset: -20%;
  background: radial-gradient(45% 55% at 75% 20%, rgba(1,173,155,0.28), transparent 70%);
  animation: sheenMove 12s ease-in-out infinite alternate;
}
@keyframes sheenMove {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 3%) scale(1.08); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  padding-top: 24px;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  max-width: 620px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-copy .eyebrow { color: var(--teal); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-subtitle {
  color: var(--steel-300);
  font-size: 1.05rem;
  max-width: 540px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}
.hero-chips li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 0;
}

/* ---------- Form card ---------- */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 32px;
  box-shadow: var(--shadow-lift);
}
.access-form h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.form-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 6px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input[type="text"], input[type="email"], input[type="tel"], select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--steel-300);
  border-radius: var(--radius-s);
  background: var(--steel-100);
  color: var(--ink);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
input:invalid.touched, select:invalid.touched {
  border-color: var(--danger);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 4px 0 20px;
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; }

.form-error {
  color: var(--danger);
  font-size: 0.82rem;
  margin: 10px 0 0;
}

.access-granted { text-align: center; padding: 12px 0; }
.check-badge {
  width: 56px; height: 56px;
  border-radius: 0;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.access-granted h2, .access-granted h3 { margin-bottom: 8px; }

/* ---------- Quiénes somos ---------- */
.who-we-are { background: var(--white); }
.pull-quote {
  border-left: 4px solid var(--teal);
  margin: 32px 0 0;
  padding: 6px 0 6px 24px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--graphite);
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */
.gallery-section { background: var(--steel-200); }
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - 56px) / 3);
}
.video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(120deg, #2B3634 0px, #2B3634 2px, #232E2C 2px, #232E2C 10px);
  cursor: pointer;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-locked-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--graphite);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-s);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.5);
}
.video-card.is-unlocked .video-locked-badge { display: none; }
.lock-icon-sm {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
}
.lock-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 0;
  background: var(--teal);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.play-btn::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}
.play-btn:hover { transform: scale(1.08); }

.video-info { padding: 22px 24px 26px; }
.video-info h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.video-info h3 span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.benefit {
  font-weight: 500;
  color: var(--graphite);
}
.spec-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.spec-list li { margin-bottom: 4px; }

.video-card.is-unlocked .play-btn { display: flex !important; }

/* ---------- Catálogo ---------- */
.catalog-section { background: var(--white); }
.catalog-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0 0 40px;
}
.catalog-grid li {
  border: 1.5px solid var(--steel-300);
  border-radius: var(--radius-m);
  padding: 24px 12px;
  text-align: center;
  font-weight: 600;
  color: var(--graphite);
  background: var(--steel-100);
}
.catalog-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.catalog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.catalog-cta-icon { display: inline-flex; }
.catalog-cta-btn.is-unlocked {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.catalog-cta-btn.is-unlocked:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.catalog-cta-hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Diferenciadores ---------- */
.diff-section { background: var(--steel-200); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 0;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; margin-bottom: 14px; }
.mini-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 5px 10px;
  border-radius: 0;
}

/* ---------- Cifras ---------- */
.stats-section { position: relative; overflow: hidden; background: var(--graphite); }
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://assets.cdn.filesafe.space/ApfVrtvzlr2rbfsLnSDt/media/6a4ba1066d56bf390de02395.png');
  background-size: cover;
  background-position: center;
}
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 14, 0.78);
}
.stats-section .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.stat-item > :first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-bottom: 14px;
}
.stat-number {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin: 0;
}
.stat-label {
  display: block;
  font-size: 0.92rem;
  color: var(--steel-300);
  max-width: 260px;
  margin: 0 auto;
}
.stat-icon {
  color: var(--teal);
  margin: 0;
}

/* ---------- CTA final ---------- */
.final-cta { background: var(--steel-100); }
.final-cta-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 48px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.final-cta-card h2 { margin-bottom: 10px; }
.final-cta-card .access-form { text-align: left; margin-top: 28px; }
.access-form-compact .form-grid-2 { margin-bottom: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #080808;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding: 56px 0 44px;
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 340px;
}
.footer-logo-col .logo-img-footer { opacity: 0.85; }
.footer-tagline { color: var(--white); opacity: 0.28; margin: 0; font-size: 0.88rem; }
.footer-web-link {
  color: var(--white);
  opacity: 0.42;
  font-size: 0.82rem;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.footer-web-link:hover { opacity: 0.82; }

.footer-divider-v {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
}

.footer-nav-col label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.18;
  margin-bottom: 14px;
}
.footer-nav-col p {
  margin: 0;
  color: var(--white);
  opacity: 0.42;
  font-size: 0.82rem;
  line-height: 1.7;
}
.footer-nav-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a {
  color: var(--white);
  opacity: 0.42;
  font-size: 0.82rem;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.footer-nav-col a:hover { opacity: 0.82; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer-copy { color: var(--white); opacity: 0.15; font-size: 0.78rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal .link-inline { color: var(--white); opacity: 0.28; font-size: 0.78rem; transition: opacity 0.15s ease; }
.footer-legal .link-inline:hover { opacity: 0.6; }

/* ---------- Modals ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 23, 22, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 36px;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.modal[hidden] { display: none; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 0;
  border: none;
  background: var(--steel-200);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal h3 { margin-bottom: 14px; }
.modal p { font-size: 0.9rem; }

.video-placeholder-frame {
  aspect-ratio: 16/9;
  border-radius: var(--radius-s);
  background: var(--graphite);
  color: var(--steel-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  overflow: hidden;
}
.video-placeholder-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.modal-video {
  max-width: 860px;
  width: 100%;
  padding: 24px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--graphite);
  color: var(--steel-300);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  z-index: 90;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner p { color: var(--steel-300); font-size: 0.85rem; margin: 0; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-banner[hidden] { display: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--graphite);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lift);
  z-index: 120;
}
.toast[hidden] { display: none; }

/* =========================================================
   Responsive — breakpoints 900px (tablet) y 600px (móvil)
   ========================================================= */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .site-header { padding: 0 20px; }

  .header-web-link { display: none; }
  .header-nav { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .video-card { flex-basis: calc((100% - 28px) / 2); }

  .footer-divider-v { display: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .video-card { flex-basis: 100%; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .final-cta-card { padding: 32px 22px; }
  .hero-form-card { padding: 24px; }
}

/* ---------- Accesibilidad: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .fade-in, .fade-in-left, .fade-in-right { opacity: 1; transform: none; }
}
