/*
Theme Name: Penta Clínico
Theme URI: https://newpenta.mx
Author: New Penta México
Author URI: https://newpenta.mx
Description: Tema clínico-premium custom para New Penta México · sistema editorial Penta · paleta por OE Cliente · mobile-first · infografía clínica · sin emojis · firma "Porque nos importas" · child theme de Twenty Twenty-Five.
Version: 1.0.8
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: penta-clinico
Template: twentytwentyfive
Tags: full-site-editing, block-patterns, custom-colors, custom-logo, healthcare, clinical
*/

/* ============================================
   LAYOUT FIX · v1.0.4 · simple y directo
   Cada hijo directo del contenido recibe padding lateral dinámico.
   Las secciones con fondo pintan el background full-width
   y el padding lateral centra el contenido interno.
   ============================================ */
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }

/* Anular cualquier max-width o padding del wrapper de contenido WP */
body main,
body main > .wp-block-group,
body > .wp-site-blocks > main,
.entry-content,
.wp-block-post-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Aplicar padding lateral dinámico a CADA hijo directo del contenido principal */
.entry-content > *,
.wp-block-post-content > * {
  padding-left: max(1.5rem, calc((100vw - 1280px) / 2)) !important;
  padding-right: max(1.5rem, calc((100vw - 1280px) / 2)) !important;
  box-sizing: border-box !important;
}

/* Headings y párrafos directos dentro de groups con background · respetan max-width 1280 */
.wp-block-group.has-background h1,
.wp-block-group.has-background h2,
.wp-block-group.has-background h3,
.wp-block-group.has-background h4,
.wp-block-group.has-background p,
.wp-block-group.has-background .wp-block-buttons,
.penta-hero__titulo,
.penta-hero__subtitulo,
.penta-hero__ctas,
.penta-bloque-puente__titulo,
.penta-bloque-puente__descripcion {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer · grid centrado en 1280 */
.penta-footer__grid,
.penta-footer__firma,
.penta-footer__legal {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PENTA CLINICO · estilos base
   Variables CSS se cargan desde theme.json
   Este archivo agrega correcciones y componentes
   no expresables en theme.json
   ============================================ */

/* Tipografía base · Inter ya enqueued en functions.php */

body {
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ============================================
   FULL-WIDTH FIX
   Por defecto WP FSE limita el contenido al contentSize (768px).
   Esto hace que las secciones tipo hero/banda se vean estrechas.
   Estos componentes deben ser full-width (de borde a borde de pantalla)
   con contenido interno centrado en max-width legible.
   ============================================ */


/* ============================================
   COMPONENTES INFOGRÁFICOS
   Énfasis del feedback DG 2026-05-26:
   "menos personajes decorativos · más infografías que expliquen"
   ============================================ */

/* Banda de KPIs científicos · padding lateral viene del layout fix global */
.penta-kpis-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--wp--preset--color--crema);
  border-top: 1px solid var(--wp--preset--color--gris-borde);
  border-bottom: 1px solid var(--wp--preset--color--gris-borde);
}

@media (min-width: 768px) {
  .penta-kpis-band {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.penta-kpi {
  text-align: center;
  padding: 1rem;
}

.penta-kpi__numero {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--wp--preset--color--penta-rojo);
  margin-bottom: 0.5rem;
}

.penta-kpi__descripcion {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wp--preset--color--gris-texto);
  line-height: 1.4;
}

.penta-kpi__footnote {
  font-size: 0.75rem;
  color: var(--wp--preset--color--gris-secundario);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Tabla comparativa anónima */
.penta-tabla-comparativa {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.penta-tabla-comparativa thead {
  background: var(--wp--preset--color--gris-bg);
}

.penta-tabla-comparativa th,
.penta-tabla-comparativa td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--wp--preset--color--gris-borde);
}

.penta-tabla-comparativa th {
  font-weight: 600;
  color: var(--wp--preset--color--gris-texto);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.penta-tabla-comparativa .penta-col {
  background: rgba(200, 16, 46, 0.04);
  font-weight: 600;
}

@media (max-width: 767px) {
  .penta-tabla-comparativa {
    display: block;
    overflow-x: auto;
  }
}

/* Diagramas de proceso · esquema 28 días, 5 pilares, etc */
.penta-proceso {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .penta-proceso {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}

.penta-proceso__paso {
  background: white;
  border: 1px solid var(--wp--preset--color--gris-borde);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}

.penta-proceso__numero {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wp--preset--color--penta-rojo);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.penta-proceso__titulo {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.penta-proceso__descripcion {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--wp--preset--color--gris-texto);
}

/* Diagrama de mecanismo · 3 mecanismos barrera intestinal, 5 cepas */
.penta-mecanismo {
  background: white;
  border-left: 4px solid var(--wp--preset--color--c5-salvia);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.penta-mecanismo__titulo {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--wp--preset--color--gris-texto);
}

.penta-mecanismo__descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.penta-mecanismo__referencia {
  font-size: 0.8rem;
  color: var(--wp--preset--color--gris-secundario);
  font-style: italic;
  border-top: 1px dashed var(--wp--preset--color--gris-borde);
  padding-top: 0.5rem;
}

/* Bloque puente paciente · padding lateral viene del layout fix global */
.penta-bloque-puente {
  background: var(--wp--preset--color--crema);
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
  text-align: center;
}

.penta-bloque-puente__titulo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--gris-texto);
}

.penta-bloque-puente__descripcion {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--wp--preset--color--gris-secundario);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Card programa OE · grid 2 columnas con ilustración lateral · v1.0.7 */
.penta-card-oe {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--penta-oe-color, var(--wp--preset--color--penta-rojo));
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 640px) {
  .penta-card-oe {
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .penta-card-oe {
    grid-template-columns: 160px 1fr;
    gap: 2rem;
  }
}

.penta-card-oe:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.penta-card-oe__imagen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.penta-card-oe__imagen img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
}

.penta-card-oe__contenido {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================
   RUTA PACIENTE · vocabulario coloquial · v1.0.8
   Cards con border-TOP color OE + imagen lateral + texto
   Distinto visualmente de .penta-card-oe (médico)
   ============================================ */
.penta-ruta {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border-top: 4px solid var(--ruta-color, var(--wp--preset--color--penta-rojo));
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 640px) {
  .penta-ruta {
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .penta-ruta {
    grid-template-columns: 160px 1fr;
    gap: 2rem;
  }
}

.penta-ruta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.penta-ruta--peso { --ruta-color: var(--wp--preset--color--c1-morado); }
.penta-ruta--fuerza { --ruta-color: var(--wp--preset--color--c2-bosque); }
.penta-ruta--metabolico { --ruta-color: var(--wp--preset--color--c3-jade); }

.penta-ruta__imagen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.penta-ruta__imagen img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
}

.penta-ruta__contenido {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.penta-ruta__titulo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ruta-color);
  margin: 0;
  line-height: 1.3;
}

.penta-ruta__descripcion {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--wp--preset--color--gris-texto);
  margin: 0;
}

.penta-ruta__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ruta-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  margin-top: 0.25rem;
}

.penta-ruta__cta:hover {
  border-bottom-color: var(--ruta-color);
}

.penta-ruta__cta::after {
  content: " →";
}

.penta-card-oe--c1 { --penta-oe-color: var(--wp--preset--color--c1-morado); }
.penta-card-oe--c2 { --penta-oe-color: var(--wp--preset--color--c2-bosque); }
.penta-card-oe--c3 { --penta-oe-color: var(--wp--preset--color--c3-jade); }
.penta-card-oe--c4 { --penta-oe-color: var(--wp--preset--color--c4-rojo); }
.penta-card-oe--c5 { --penta-oe-color: var(--wp--preset--color--c5-salvia); }
.penta-card-oe--estetica { --penta-oe-color: var(--wp--preset--color--estetica-rosa); }

.penta-card-oe__icono {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.penta-card-oe__titulo {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--penta-oe-color);
}

.penta-card-oe__descripcion {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--wp--preset--color--gris-texto);
  margin-bottom: 1rem;
}

.penta-card-oe__cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--penta-oe-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.penta-card-oe__cta:hover {
  border-bottom-color: var(--penta-oe-color);
}

.penta-card-oe__cta::after {
  content: " →";
}

/* ============================================
   HERO ESTILO LEVELS · v1.0.6
   Grid 2 columnas (60/40) en desktop · stack en mobile
   Texto izquierda con jerarquía · ilustración derecha
   Animación fade-in + slide-up secuencial al cargar
   MANTIENE: Inter, rojo Penta, crema base (sin cambios de estilo Penta)
   ============================================ */

.penta-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--wp--preset--color--crema) 0%, #FBF7F0 50%, white 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .penta-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.penta-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

@media (min-width: 900px) {
  .penta-hero__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
}

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

.penta-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wp--preset--color--penta-rojo);
  margin: 0 0 1.5rem;
  display: inline-block;
}

.penta-hero__titulo {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--wp--preset--color--gris-texto);
  max-width: 100%;
  text-align: left;
}

.penta-hero__subtitulo {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: var(--wp--preset--color--gris-secundario);
  margin: 0 0 2rem;
  max-width: 540px;
  text-align: left;
}

.penta-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  max-width: 100%;
}

@media (min-width: 540px) {
  .penta-hero__ctas {
    flex-direction: row;
    gap: 1rem;
  }
}

.penta-hero__imagen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.penta-hero__imagen img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

/* ============================================
   ANIMACIÓN ENTRADA HERO
   Fade-in + slide-up secuencial · stagger 0.2s
   Reduce-motion respetado (en accesibilidad ya está)
   ============================================ */

@keyframes pentaFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pentaFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pentaScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.penta-hero__eyebrow {
  animation: pentaFadeInUp 0.6s ease-out 0.1s both;
}

.penta-hero__titulo {
  animation: pentaFadeInUp 0.8s ease-out 0.25s both;
}

.penta-hero__subtitulo {
  animation: pentaFadeInUp 0.8s ease-out 0.45s both;
}

.penta-hero__ctas {
  animation: pentaFadeInUp 0.8s ease-out 0.65s both;
}

.penta-hero__imagen {
  animation: pentaScaleIn 1s ease-out 0.4s both;
}

.penta-hero__titulo {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 980px;
  color: var(--wp--preset--color--gris-texto);
}

.penta-hero__subtitulo {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--wp--preset--color--gris-secundario);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.penta-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (min-width: 540px) {
  .penta-hero__ctas {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Botones · mobile-first 48px min height */
.penta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
}

.penta-btn--primary {
  background: var(--wp--preset--color--penta-rojo);
  color: white;
}

.penta-btn--primary:hover {
  background: #A50D26;
}

.penta-btn--secondary {
  background: white;
  color: var(--wp--preset--color--penta-rojo);
  border-color: var(--wp--preset--color--penta-rojo);
}

.penta-btn--secondary:hover {
  background: rgba(200, 16, 46, 0.06);
}

.penta-btn--whatsapp {
  background: #25D366;
  color: white;
}

.penta-btn--whatsapp:hover {
  background: #1FBC58;
}

/* Footer institucional · padding lateral viene del layout fix global */
.penta-footer {
  background: var(--wp--preset--color--gris-bg);
  border-top: 1px solid var(--wp--preset--color--gris-borde);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.penta-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .penta-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.penta-footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--gris-texto);
}

.penta-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.penta-footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.penta-footer__col a {
  color: var(--wp--preset--color--gris-secundario);
  text-decoration: none;
}

.penta-footer__col a:hover {
  color: var(--wp--preset--color--penta-rojo);
}

.penta-footer__firma {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wp--preset--color--gris-borde);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wp--preset--color--penta-rojo);
  letter-spacing: 0.5px;
}

.penta-footer__legal {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--wp--preset--color--gris-secundario);
}

/* Botón WhatsApp flotante */
.penta-whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.penta-whatsapp-fab:hover {
  transform: scale(1.08);
}

.penta-whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Footnotes científicos */
.penta-footnote {
  font-size: 0.75rem;
  color: var(--wp--preset--color--gris-secundario);
  line-height: 1.5;
  padding-top: 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--wp--preset--color--gris-borde);
}

.penta-footnote sup {
  font-weight: 600;
  color: var(--wp--preset--color--gris-texto);
  margin-right: 0.25rem;
}

/* Nota COFEPRIS · disclaimer regulatorio */
.penta-nota-cofepris {
  font-size: 0.75rem;
  color: var(--wp--preset--color--gris-secundario);
  font-style: italic;
  background: var(--wp--preset--color--gris-bg);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Bloque evidencia citable */
.penta-evidencia {
  background: white;
  border: 1px solid var(--wp--preset--color--gris-borde);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.penta-evidencia__cita {
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.penta-evidencia__contexto {
  font-size: 0.85rem;
  color: var(--wp--preset--color--gris-secundario);
  font-style: italic;
  border-left: 3px solid var(--wp--preset--color--gris-borde);
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

/* Caveat editorial · cepa-específico, qualified claim */
.penta-caveat {
  font-size: 0.8rem;
  color: var(--wp--preset--color--gris-secundario);
  font-style: italic;
  border-left: 3px solid var(--wp--preset--color--c5-salvia);
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
  background: rgba(74, 140, 92, 0.04);
}

/* Bloque testimonio */
.penta-testimonio {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--wp--preset--color--gris-borde);
}

.penta-testimonio__personaje {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.penta-testimonio__cita {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--gris-texto);
}

.penta-testimonio__atribucion {
  font-size: 0.8rem;
  color: var(--wp--preset--color--gris-secundario);
  font-weight: 600;
}

.penta-testimonio__nota {
  font-size: 0.7rem;
  color: var(--wp--preset--color--gris-secundario);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--wp--preset--color--gris-borde);
  font-style: italic;
}

/* Accesibilidad · focus visible */
*:focus-visible {
  outline: 2px solid var(--wp--preset--color--penta-rojo);
  outline-offset: 2px;
}

/* Skip links accesibilidad */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--wp--preset--color--penta-rojo);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Reduce motion para usuarios sensibles */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
