/* ==========================================================
   REPARA TU TV — DESIGN SYSTEM v2
   Claro · legible · confiable · para todo público
   Tokens pensados para migrar a Elementor / WooCommerce
   ========================================================== */

:root {
  /* Color */
  --rtv-navy: #0B1F3A;       /* texto principal / marca oscura */
  --rtv-blue: #1464C9;       /* azul de marca (del logo) */
  --rtv-blue-deep: #0B4DA3;  /* hover / énfasis */
  --rtv-blue-light: #EAF3FC; /* fondos suaves de acento */
  --rtv-bg: #FFFFFF;
  --rtv-bg-soft: #F5F8FC;
  --rtv-ink: #16232F;
  --rtv-muted: #5B6B7B;
  --rtv-line: #E1E8F0;
  --rtv-amber: #C97A12;
  --rtv-amber-bg: #FBF1E1;
  --rtv-success: #157A4E;
  --rtv-whatsapp: #22B04B;
  --rtv-whatsapp-deep: #1A8C3C;

  /* Tipografía */
  --rtv-font-display: "Sora", sans-serif;
  --rtv-font-body: "Public Sans", sans-serif;

  /* Layout */
  --rtv-shell: 1220px;
  --rtv-header: 76px;
  --rtv-radius-sm: 10px;
  --rtv-radius: 16px;
  --rtv-radius-lg: 24px;
  --rtv-shadow: 0 18px 45px rgba(11, 31, 58, .08);
  --rtv-shadow-sm: 0 6px 18px rgba(11, 31, 58, .06);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rtv-bg);
  color: var(--rtv-ink);
  font-family: var(--rtv-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--rtv-font-display); margin: 0; color: var(--rtv-navy); }
p { margin: 0; }
::selection { background: var(--rtv-blue-light); color: var(--rtv-navy); }

.rtv-shell { max-width: var(--rtv-shell); }
.section { padding: 96px 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  padding: 12px 18px;
  background: var(--rtv-navy);
  color: #fff;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--rtv-blue); outline-offset: 3px; }

/* ---------- Encabezados y textos de sección ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--rtv-blue-deep);
  font: 700 13px/1 var(--rtv-font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rtv-whatsapp); flex: none; }
.eyebrow-num {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--rtv-blue-light);
  color: var(--rtv-blue-deep);
  font-size: 11px;
}
.eyebrow--light { color: #BFDBFF; }
.eyebrow--light .eyebrow-num { background: rgba(255,255,255,.14); color: #fff; }

.section-heading { margin-bottom: 46px; }
.section-title {
  font: 700 clamp(28px, 3.4vw, 40px)/1.2 var(--rtv-font-display);
  letter-spacing: -.01em;
}
.section-title--light { color: #fff; }
.section-copy { max-width: 460px; margin-left: auto; color: var(--rtv-muted); font-size: 16px; }
.section-copy--muted { color: var(--rtv-muted); font-style: italic; }
.section-copy--light { color: #C7DCF5; max-width: 420px; margin-left: 0; }

@media (max-width: 991.98px) {
  .section-copy { margin-left: 0; }
}

/* ---------- Botones ---------- */
.rtv-btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--rtv-radius-sm);
  font: 700 15px/1 var(--rtv-font-body);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.rtv-btn:hover { transform: translateY(-1px); }
.rtv-btn--primary { background: var(--rtv-blue); color: #fff; box-shadow: 0 10px 24px rgba(20,100,201,.28); }
.rtv-btn--primary:hover { background: var(--rtv-blue-deep); }
.rtv-btn--outline { background: #fff; color: var(--rtv-navy); border-color: var(--rtv-line); }
.rtv-btn--outline:hover { border-color: var(--rtv-blue); color: var(--rtv-blue-deep); }
.rtv-btn--whatsapp { background: var(--rtv-whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(34,176,75,.28); }
.rtv-btn--whatsapp:hover { background: var(--rtv-whatsapp-deep); }
.rtv-btn--whatsapp svg { width: 19px; fill: #fff; }
.rtv-btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  z-index: 1100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--rtv-line); box-shadow: 0 4px 20px rgba(11,31,58,.05); }
.site-header .navbar { min-height: var(--rtv-header); padding: 8px 0; }

.rtv-brand { display: inline-flex; align-items: center; gap: 11px; }
.rtv-brand__mark { width: 40px; height: 40px; }
.rtv-brand__mark svg { width: 40px; height: 40px; }
.mark-face { fill: var(--rtv-navy); }
.mark-gear { fill: none; stroke: #fff; stroke-width: 3; }
.mark-bolt { fill: var(--rtv-blue); }
.rtv-brand__copy { display: grid; font: 800 13px/1.15 var(--rtv-font-display); letter-spacing: .02em; }
.rtv-brand__copy strong { color: var(--rtv-navy); }
.rtv-brand__copy b { color: var(--rtv-blue); }

.navbar-nav { gap: 4px; }
.nav-link {
  padding: 10px 16px !important;
  color: var(--rtv-navy);
  font: 600 15px/1 var(--rtv-font-body);
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-link:focus { background: var(--rtv-blue-light); color: var(--rtv-blue-deep); }

.rtv-toggler { border: 0; padding: 8px; box-shadow: none !important; }
.rtv-toggler span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--rtv-navy); margin: 5px 0; }

@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: 12px; padding: 14px; border: 1px solid var(--rtv-line); border-radius: var(--rtv-radius); background: #fff; box-shadow: var(--rtv-shadow); }
  .navbar-nav { align-items: stretch !important; }
  .nav-link { padding: 12px 14px !important; }
  .rtv-btn.ms-lg-3 { width: 100%; margin-top: 8px !important; }
}

/* ---------- Capa de circuito (fondo GSAP) ---------- */
.circuit-layer { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.circuit-layer svg { width: 100%; height: 100%; display: block; }
.circuit-layer .trace { fill: none; stroke-width: 1.2; }
.circuit-layer[data-variant="light"] .trace { stroke: rgba(20, 100, 201, .16); }
.circuit-layer[data-variant="light"] .via { fill: rgba(20, 100, 201, .22); }
.circuit-layer[data-variant="light"] .pulse { fill: rgba(20, 100, 201, .55); }
.circuit-layer[data-variant="dark"] .trace { stroke: rgba(255, 255, 255, .09); }
.circuit-layer[data-variant="dark"] .via { fill: rgba(255, 255, 255, .14); }
.circuit-layer[data-variant="dark"] .pulse { fill: rgba(125, 179, 242, .6); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: calc(var(--rtv-header) + 56px) 0 72px; background: linear-gradient(180deg, var(--rtv-blue-light) 0%, #fff 62%); }
.hero > .rtv-shell { position: relative; z-index: 1; }
.hero-title {
  margin: 0 0 20px;
  max-width: 620px;
  font: 700 clamp(34px, 4.4vw, 52px)/1.16 var(--rtv-font-display);
  letter-spacing: -.015em;
}
.hero-lead { max-width: 540px; color: var(--rtv-muted); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--rtv-line); }
.hero-trust li { display: flex; flex-direction: column; gap: 3px; }
.hero-trust strong { font: 700 22px/1 var(--rtv-font-display); color: var(--rtv-navy); }
.hero-trust span { color: var(--rtv-muted); font-size: 13px; }

@media (max-width: 767.98px) {
  .hero { padding-top: calc(var(--rtv-header) + 32px); }
  .hero-actions { display: grid; }
  .hero-actions .rtv-btn { width: 100%; }
  .hero-trust { gap: 18px 26px; }
}

/* ---------- Orden de servicio (elemento distintivo) ---------- */
.service-ticket {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  padding: 30px 30px 26px;
  background: #fff;
  border: 1px solid var(--rtv-line);
  border-radius: 18px;
  box-shadow: var(--rtv-shadow);
}
.service-ticket::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 18px;
  border-radius: 18px 18px 0 0;
  background-image: radial-gradient(circle, transparent 4px, var(--rtv-blue) 4.5px);
  background-size: 16px 18px;
  background-position: center top;
  opacity: .12;
}
.ticket-hole {
  position: absolute;
  left: 50%;
  top: -11px;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  background: var(--rtv-bg-soft);
  border: 1px dashed var(--rtv-line);
  border-radius: 50%;
}
.ticket-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px dashed var(--rtv-line); }
.ticket-brand { font: 800 12px/1 var(--rtv-font-display); letter-spacing: .08em; color: var(--rtv-blue); }
.ticket-id { font: 600 12px/1 var(--rtv-font-body); color: var(--rtv-muted); }
.ticket-fields { display: grid; gap: 10px; margin-bottom: 18px; }
.ticket-fields div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.ticket-fields dt { color: var(--rtv-muted); }
.ticket-fields dd { margin: 0; font-weight: 600; color: var(--rtv-navy); text-align: right; }
.ticket-checklist { display: grid; gap: 10px; padding: 16px 0; border-top: 1px dashed var(--rtv-line); border-bottom: 1px dashed var(--rtv-line); }
.ticket-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--rtv-muted); }
.ticket-checklist span { width: 18px; height: 18px; flex: none; border-radius: 5px; border: 1.5px solid var(--rtv-line); }
.ticket-checklist li.is-done { color: var(--rtv-navy); font-weight: 600; }
.ticket-checklist li.is-done span { background: var(--rtv-success); border-color: var(--rtv-success); position: relative; }
.ticket-checklist li.is-done span::after {
  content: "";
  position: absolute; left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}
.ticket-foot { display: flex; align-items: center; gap: 16px; padding-top: 18px; }
.ticket-stamp {
  flex: none;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  text-align: center;
  border: 2px solid var(--rtv-amber);
  border-radius: 50%;
  color: var(--rtv-amber);
  font: 800 9px/1.2 var(--rtv-font-display);
  letter-spacing: .04em;
  transform: rotate(-8deg);
}
.ticket-foot p { color: var(--rtv-muted); font-size: 12.5px; line-height: 1.5; }

@media (max-width: 575.98px) {
  .service-ticket { padding: 26px 20px 22px; }
}

/* ---------- Franja de confianza ---------- */
.trust-strip { padding: 30px 0; background: var(--rtv-navy); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-grid li { display: flex; align-items: center; gap: 12px; color: #E7EEF7; font-size: 13.5px; font-weight: 600; }
.trust-grid svg { width: 26px; height: 26px; flex: none; fill: none; stroke: #7DB3F2; stroke-width: 1.6; }
@media (max-width: 991.98px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Servicios ---------- */
.service-card {
  height: 100%;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--rtv-line);
  border-radius: var(--rtv-radius);
  box-shadow: var(--rtv-shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover { box-shadow: var(--rtv-shadow); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--rtv-blue-light);
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--rtv-blue-deep); stroke-width: 1.8; }
.service-card h3 { font: 700 20px/1.3 var(--rtv-font-display); margin-bottom: 10px; }
.service-card p { color: var(--rtv-muted); font-size: 14.5px; }

/* ---------- Por qué confiar ---------- */
.section--why { padding-top: 0; }
.why-card {
  position: relative;
  overflow: hidden;
  padding: 60px 48px;
  background: linear-gradient(135deg, var(--rtv-navy), #0E2A4E);
  border-radius: var(--rtv-radius-lg);
}
.why-card > .row { position: relative; z-index: 1; }
.why-list { display: grid; gap: 22px; }
.why-list li { padding: 20px 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--rtv-radius); }
.why-list strong { display: block; margin-bottom: 6px; color: #fff; font: 600 16px/1.35 var(--rtv-font-display); }
.why-list span { color: #B9CFEA; font-size: 14px; }

@media (max-width: 767.98px) {
  .why-card { padding: 40px 24px; }
}

/* ---------- Catálogo de repuestos ---------- */
.catalog-panel { border: 1px solid var(--rtv-line); border-radius: var(--rtv-radius-lg); background: #fff; box-shadow: var(--rtv-shadow-sm); overflow: hidden; }
.catalog-filterbar { display: flex; gap: 8px; flex-wrap: wrap; padding: 20px 24px; border-bottom: 1px solid var(--rtv-line); background: var(--rtv-bg-soft); }
.catalog-filterbar button {
  padding: 9px 16px;
  border: 1px solid var(--rtv-line);
  border-radius: 999px;
  background: #fff;
  color: var(--rtv-muted);
  font: 600 13px/1 var(--rtv-font-body);
  cursor: pointer;
  transition: all .2s ease;
}
.catalog-filterbar button:hover { border-color: var(--rtv-blue); color: var(--rtv-blue-deep); }
.catalog-filterbar button.is-active { background: var(--rtv-blue); border-color: var(--rtv-blue); color: #fff; }
.product-grid { padding: 24px; }
.product-item.is-hidden { display: none; }
.part-card {
  height: 100%;
  padding: 18px;
  border: 1px solid var(--rtv-line);
  border-radius: var(--rtv-radius);
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}
.part-card:hover { box-shadow: var(--rtv-shadow-sm); transform: translateY(-2px); }
.part-visual { height: 120px; display: grid; place-items: center; border-radius: 12px; background: var(--rtv-bg-soft); margin-bottom: 16px; }
.part-visual svg { width: 52px; height: 52px; fill: none; stroke: var(--rtv-blue-deep); stroke-width: 2.2; }
.part-tag { margin: 0 0 6px; color: var(--rtv-blue-deep); font: 700 11px/1 var(--rtv-font-display); letter-spacing: .1em; }
.part-card h3 { font: 700 18px/1.25 var(--rtv-font-display); margin-bottom: 6px; }
.part-desc { min-height: 42px; color: var(--rtv-muted); font-size: 13.5px; }
.part-price { margin: 10px 0 14px; font-size: 13.5px; color: var(--rtv-navy); }
.part-price span { color: var(--rtv-amber); font-weight: 700; }
.part-action {
  width: 100%;
  padding: 11px 0;
  border: 1px solid var(--rtv-blue);
  border-radius: var(--rtv-radius-sm);
  background: var(--rtv-blue-light);
  color: var(--rtv-blue-deep);
  font: 700 13.5px/1 var(--rtv-font-body);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.part-action:hover { background: var(--rtv-blue); color: #fff; }
.catalog-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding: 20px 24px; border-top: 1px solid var(--rtv-line); background: var(--rtv-amber-bg); }
.catalog-foot p { max-width: 640px; margin: 0; color: #7A5011; font-size: 13.5px; }
.catalog-foot a { flex: none; color: var(--rtv-blue-deep); font-weight: 700; font-size: 14px; }

/* ---------- Método ---------- */
.method-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.method-list li { padding: 26px 22px; background: var(--rtv-bg-soft); border-radius: var(--rtv-radius); }
.method-step-number {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--rtv-blue);
  color: #fff;
  font: 700 14px/1 var(--rtv-font-display);
}
.method-list h3 { font: 700 17px/1.3 var(--rtv-font-display); margin-bottom: 8px; }
.method-list p { color: var(--rtv-muted); font-size: 14px; }
@media (max-width: 991.98px) {
  .method-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .method-list { grid-template-columns: 1fr; }
}

/* ---------- Cifras / experiencia ---------- */
.section--stats { padding: 64px 0; background: var(--rtv-blue-light); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font: 700 44px/1 var(--rtv-font-display); color: var(--rtv-blue-deep); }
.stat-item span { display: block; margin-top: 8px; color: var(--rtv-navy); font-size: 14px; }
@media (max-width: 767.98px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Testimonios ---------- */
.review-card {
  height: 100%;
  margin: 0;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--rtv-line);
  border-radius: var(--rtv-radius);
  box-shadow: var(--rtv-shadow-sm);
}
.review-card p { color: var(--rtv-navy); font-size: 15px; line-height: 1.6; }
.review-card p::before { content: open-quote; }
.review-card p::after { content: close-quote; }
.review-card footer { margin-top: 16px; color: var(--rtv-muted); font-size: 13px; font-style: normal; }

/* ---------- Validación ---------- */
.section--validation { padding-top: 0; }
.validation-shell { border-radius: var(--rtv-radius-lg); overflow: hidden; box-shadow: var(--rtv-shadow); }
.validation-copy { position: relative; overflow: hidden; padding: 56px 48px; background: linear-gradient(150deg, var(--rtv-navy), #0E2A4E); }
.validation-copy > *:not(.circuit-layer) { position: relative; z-index: 1; }
.validation-trust { margin-top: 30px; display: grid; gap: 12px; }
.validation-trust li { padding-left: 26px; position: relative; color: #C7DCF5; font-size: 14px; }
.validation-trust li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
}
.validation-form-wrap { padding: 56px 48px; background: #fff; }
.validation-form label { display: block; margin-bottom: 7px; color: var(--rtv-navy); font-size: 14px; font-weight: 600; }
.validation-form label span { color: var(--rtv-muted); font-weight: 400; }
.validation-form input, .validation-form select, .validation-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--rtv-line);
  border-radius: var(--rtv-radius-sm);
  background: var(--rtv-bg-soft);
  color: var(--rtv-navy);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.validation-form textarea { min-height: 96px; padding-top: 13px; resize: vertical; }
.validation-form input:focus, .validation-form select:focus, .validation-form textarea:focus {
  outline: none; border-color: var(--rtv-blue); box-shadow: 0 0 0 3px rgba(20,100,201,.14); background: #fff;
}
.validation-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 26px; }
.validation-submit small { max-width: 260px; color: var(--rtv-muted); font-size: 12.5px; line-height: 1.5; }

@media (max-width: 991.98px) {
  .validation-copy, .validation-form-wrap { padding: 40px 28px; }
}
@media (max-width: 575.98px) {
  .validation-submit { flex-direction: column; align-items: stretch; }
  .validation-submit small { max-width: none; text-align: center; }
}

/* ---------- Contacto ---------- */
.section--contact { padding-top: 0; padding-bottom: 96px; }
.contact-panel { padding: 56px; background: var(--rtv-bg-soft); border-radius: var(--rtv-radius-lg); }
.contact-panel .rtv-btn { margin-top: 26px; }
.contact-data { display: grid; gap: 16px; }
.contact-data div { padding: 16px 18px; background: #fff; border: 1px solid var(--rtv-line); border-radius: var(--rtv-radius-sm); }
.contact-data dt { color: var(--rtv-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-data dd { margin: 0; color: var(--rtv-navy); font-weight: 700; font-size: 15px; }

@media (max-width: 767.98px) {
  .contact-panel { padding: 36px 22px; }
}

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 28px; border-top: 1px solid var(--rtv-line); }
.footer-main { display: grid; grid-template-columns: 1fr 1.4fr .8fr; gap: 40px; align-items: start; padding-bottom: 32px; }
.footer-main p { max-width: 360px; margin: 0; color: var(--rtv-muted); font-size: 13.5px; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--rtv-navy); font-weight: 600; font-size: 14px; }
.footer-links a:hover { color: var(--rtv-blue); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 20px; border-top: 1px solid var(--rtv-line); color: var(--rtv-muted); font-size: 12.5px; }

@media (max-width: 767.98px) {
  .footer-main { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { justify-content: flex-start; }
}

/* ---------- WhatsApp flotante + toast ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1300;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--rtv-whatsapp);
  box-shadow: 0 12px 28px rgba(34,176,75,.4);
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-fab:hover { background: var(--rtv-whatsapp-deep); transform: translateY(-2px); }

.status-toast {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 1400;
  max-width: 300px;
  padding: 14px 18px;
  border-radius: var(--rtv-radius-sm);
  background: var(--rtv-navy);
  color: #fff;
  box-shadow: var(--rtv-shadow);
  transform: translateY(140%);
  opacity: 0;
}
.status-toast strong { display: block; font: 700 13.5px/1.3 var(--rtv-font-display); }
.status-toast small { display: block; margin-top: 4px; color: #C7DCF5; font-size: 12px; }

@media (max-width: 575.98px) {
  .status-toast { left: 14px; right: 14px; max-width: none; }
  .whatsapp-fab { right: 14px; bottom: 88px; width: 52px; height: 52px; }
}

/* ---------- Accesibilidad / movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
