/* =========================================================
   TECNISOPORTE360 · EFECTOS, ANIMACIONES Y NEÓN
   ========================================================= */

/* ---------- LOGO 360 GIRATORIO ---------- */
.logo-360 { animation: logoPulse 3s ease-in-out infinite; }
.logo-360 circle:nth-child(2) {
  transform-origin: 50% 50%;
  animation: spinRing 8s linear infinite;
}
.logo-360 circle:nth-child(3) {
  transform-origin: 50% 50%;
  animation: spinRing 20s linear infinite reverse;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,213,0,.7)); }
  50% { filter: drop-shadow(0 0 15px rgba(255,213,0,1)) drop-shadow(0 0 25px rgba(255,213,0,.5)); }
}

/* ---------- TEXTO NEÓN ---------- */
.txt-neon { color: var(--yellow); text-shadow: 0 0 8px rgba(255,213,0,.7), 0 0 16px rgba(255,213,0,.4); }
.txt-neon-cyan { color: var(--neon-cyan); text-shadow: 0 0 8px rgba(0,212,232,.7), 0 0 16px rgba(0,212,232,.4); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all .9s cubic-bezier(.16,1,.3,1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all .9s cubic-bezier(.16,1,.3,1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ---------- ANIMACIONES ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

/* ---------- ORBES ---------- */
.orb { animation: orbFloat 12s ease-in-out infinite; }
.orb--cyan { animation-delay: 3s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(.96); }
}

/* ---------- HERO: TÍTULO CON SHINE ---------- */
.hero__title .txt-gradient {
  background: linear-gradient(120deg, #FFD500 0%, #FFC400 25%, #E6B800 50%, #FFC400 75%, #FFD500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

/* ---------- BOTONES CON BRILLO ---------- */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-25deg);
  transition: left .7s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn-whatsapp { position: relative; }
.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(120deg, #25D366, #39FF88, #25D366);
  background-size: 200% 200%;
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-base);
  animation: shine 3s linear infinite;
}
.btn-whatsapp:hover::after { opacity: .7; }

/* ---------- CARDS CON BORDE DE GRADIENTE ---------- */
.card-glow { position: relative; z-index: 1; }
.card-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(255,213,0,.9), rgba(255,196,0,.7), rgba(255,213,0,.9));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-slow);
  animation: gradientMove 6s linear infinite;
  z-index: -1;
  pointer-events: none;
}
.card-glow:hover::before { opacity: 1; }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.service-card.card-glow:hover { border-color: transparent; }

/* ---------- ICONO CON HALO ---------- */
.service-card__icon { position: relative; }
.service-card__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(16px);
  opacity: .5;
  z-index: -1;
  transition: opacity var(--t-base);
}
.service-card:hover .service-card__icon::after { opacity: 1; }

/* ---------- COVERAGE CHIPS BRILLO ---------- */
.coverage__chips span { position: relative; overflow: hidden; }
.coverage__chips span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,213,0,.5), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.coverage__chips span:hover::before { transform: translateX(100%); }

/* ---------- TICKER FADE ---------- */
.ticker { position: relative; }
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--yellow), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--yellow), transparent); }

/* ---------- NAV ACTIVO CON GLOW ---------- */
.nav__links a.active { color: var(--yellow); text-shadow: 0 0 12px rgba(255,213,0,.7); }

/* =========================================================
   MENÚ MÓVIL CINEMATOGRÁFICO
   ========================================================= */
/* =========================================================
   MENÚ MÓVIL CINEMATOGRÁFICO
   ========================================================= */
@media (max-width: 920px) {
  /* Bloqueo de scroll sin overlay oscuro */
  body.menu-open { overflow: hidden; }

  .nav__links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: min(440px, 100vw) !important;
    height: 100vh !important;
    background: #0a0a0c !important;
    background-image:
      radial-gradient(circle at 100% 0%, rgba(255,213,0,.12) 0%, transparent 50%),
      radial-gradient(circle at 0% 100%, rgba(255,213,0,.06) 0%, transparent 50%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 110px 28px 40px !important;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(.16,1,.3,1);
    border-left: 3px solid #FFD500 !important;
    border-radius: 0 !important;
    overflow-y: auto !important;
    z-index: 10001 !important;
    box-shadow: -30px 0 80px rgba(0,0,0,.8);
    margin: 0 !important;
    opacity: 1 !important;
  }
  .nav__links.open { transform: translateX(0) !important; }

  /* Encabezado del menú */
  .nav__links::after {
    content: 'MENÚ · NAVEGACIÓN';
    position: absolute;
    top: 40px;
    left: 28px;
    right: 28px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .3em;
    color: #FFD500;
    opacity: .8;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,213,0,.25);
    pointer-events: none;
  }

  .nav__indicator { display: none !important; }

  .nav__links li {
    width: 100%;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.68,-0.55,.27,1.55);
    position: relative;
    z-index: 2;
    display: flex;
  }
  .nav__links.open li { opacity: 1; transform: translateX(0); }
  .nav__links.open li:nth-of-type(1) { transition-delay: .15s; }
  .nav__links.open li:nth-of-type(2) { transition-delay: .22s; }
  .nav__links.open li:nth-of-type(3) { transition-delay: .29s; }
  .nav__links.open li:nth-of-type(4) { transition-delay: .36s; }
  .nav__links.open li:nth-of-type(5) { transition-delay: .43s; }
  .nav__links.open li:nth-of-type(6) { transition-delay: .5s; }

  .nav__link {
    display: flex !important;
    padding: 20px 22px !important;
    font-size: 1.1rem !important;
    border-radius: 16px !important;
    width: 100% !important;
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,213,0,.2) !important;
    gap: 16px !important;
    justify-content: flex-start !important;
    position: relative !important;
    overflow: hidden !important;
    color: #ffffff !important;
    transition: all var(--t-base);
    pointer-events: auto !important;
    cursor: pointer;
  }
  .nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FFD500;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform var(--t-base);
    box-shadow: 0 0 15px #FFD500;
  }
  .nav__link:hover,
  .nav__link.active {
    background: rgba(255,213,0,.15) !important;
    border-color: #FFD500 !important;
    color: #FFD500 !important;
  }
  .nav__link:hover::before,
  .nav__link.active::before { transform: scaleY(1); }
  .nav__link .nav__icon { width: 26px !important; height: 26px !important; }
  .nav__link .nav__icon svg { width: 22px !important; height: 22px !important; }
  .nav__link .nav__label { font-size: 1.05rem !important; font-weight: 600; }
  .nav__link.active .nav__label { font-weight: 800; }
  .nav__link .nav__glow { display: none !important; }

  /* Botón hamburguesa por encima del menú */
  .nav__toggle {
    display: flex !important;
    z-index: 10002 !important;
    position: relative;
    pointer-events: auto !important;
  }
  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ELIMINADO: body.menu-open::after (causaba el bloqueo de clics) */
}

@media (max-width: 480px) {
  .nav__links { padding: 100px 22px 30px !important; }
  .nav__link { padding: 16px 18px !important; font-size: 1rem !important; }
  .nav__link .nav__icon { width: 22px !important; height: 22px !important; }
  .nav__link .nav__icon svg { width: 18px !important; height: 18px !important; }
  .nav__link .nav__label { font-size: .98rem !important; }
}

/* ---------- FORMULARIOS ---------- */
.form {
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}
.form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}
.form h3 { margin-bottom: 8px; font-size: 1.3rem; color: var(--black); }
.form > p { font-size: .92rem; margin-bottom: 28px; color: var(--gray-700); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form__group label { font-size: .82rem; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: .06em; }
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  color: var(--black);
  font-size: .95rem;
  transition: all var(--t-base);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray-500); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,213,0,.25);
}
.form__group textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E6B800' stroke-width='3'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.form button[type="submit"] { width: 100%; margin-top: 10px; padding: 16px; font-size: 1rem; }
.form__success {
  display: none;
  padding: 20px;
  background: rgba(34,204,110,.15);
  border: 2px solid var(--neon-green);
  border-radius: 12px;
  color: var(--neon-green);
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
}
.form__success.show { display: block; animation: scaleIn .4s ease; }

/* ---------- CATÁLOGO ---------- */
.catalog-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-slow);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.catalog-card__image { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--off-white); }
.catalog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.catalog-card:hover .catalog-card__image img { transform: scale(1.08); }
.catalog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.catalog-card__body { padding: 24px 22px 26px; }
.catalog-card__body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--black); }
.catalog-card__body p { font-size: .88rem; margin-bottom: 16px; color: var(--gray-700); }
.catalog-card__price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--yellow-dark); }
.catalog-card:hover {
  border-color: var(--yellow);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.15), 0 0 40px rgba(255,213,0,.25);
}
.catalog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section--dark .catalog-card { background: var(--black-card); border-color: rgba(255,213,0,.2); }
.section--dark .catalog-card h3 { color: var(--white); }
.section--dark .catalog-card p { color: var(--gray-200); }
.section--dark .catalog-card__price { color: var(--yellow); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item[open] { border-color: var(--yellow); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  transition: color var(--t-base);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--yellow-dark);
  transition: transform var(--t-base);
  line-height: 1;
  font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--yellow-dark); }
.faq-item p { padding: 0 24px 22px; font-size: .95rem; line-height: 1.7; color: var(--gray-700); animation: fadeIn .3s ease; }
.faq-item p a { color: var(--yellow-dark); text-decoration: underline; font-weight: 600; }
.section--dark .faq-item { background: rgba(255,255,255,.05); border-color: rgba(255,213,0,.2); }
.section--dark .faq-item summary { color: var(--white); }
.section--dark .faq-item summary::after { color: var(--yellow); }
.section--dark .faq-item summary:hover { color: var(--yellow); }
.section--dark .faq-item p { color: var(--gray-200); }
.section--dark .faq-item[open] { border-color: var(--yellow); box-shadow: 0 10px 30px rgba(0,0,0,.4); }

/* ---------- PÁGINAS INTERNAS ---------- */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFBE8 40%, #FFD500 160%);
  border-bottom: 3px solid var(--yellow);
}
.page-hero h1 { margin: 18px 0 20px; color: var(--black); }
.page-hero p { max-width: 680px; margin: 0 auto; font-size: 1.05rem; color: var(--gray-700); }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--gray-700);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--yellow-dark); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- BLOQUES CONTENIDO ---------- */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { margin: 40px 0 18px; font-size: 1.7rem; color: var(--black); }
.content-block h3 { margin: 32px 0 12px; font-size: 1.2rem; color: var(--yellow-dark); }
.content-block p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; color: var(--gray-700); }
.content-block ul { margin: 16px 0 20px; padding-left: 0; }
.content-block ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--gray-700);
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.content-block ul li::before { content: '▸'; position: absolute; left: 6px; color: var(--yellow-dark); font-weight: 700; }
.section--dark .content-block h2 { color: var(--white); }
.section--dark .content-block h3 { color: var(--yellow); }
.section--dark .content-block p { color: var(--gray-200); }
.section--dark .content-block ul li { color: var(--gray-200); border-bottom-color: rgba(255,255,255,.08); }
.section--dark .content-block ul li::before { color: var(--yellow); }

/* ---------- LISTA CONTENIDO ---------- */
.content-list { margin: 12px 0 20px; padding: 0; }
.content-list li {
  padding: 9px 0 9px 32px;
  position: relative;
  color: var(--gray-700);
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.content-list li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow-dark);
  font-weight: 800;
  font-size: 1.1rem;
}
.section--dark .content-list li { color: var(--gray-200); border-bottom-color: rgba(255,255,255,.08); }
.section--dark .content-list li::before { color: var(--yellow); }
.section--yellow .content-list li { color: var(--black); border-bottom-color: rgba(0,0,0,.15); }
.section--yellow .content-list li::before { color: var(--black); }

/* ---------- TABLA PRECIOS ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 30px 0;
  font-size: .92rem;
  border: 2px solid var(--yellow);
}
.price-table thead { background: var(--yellow); }
.price-table th {
  padding: 16px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
  border-bottom: 2px solid var(--black);
}
.price-table td { padding: 16px 18px; color: var(--gray-700); border-bottom: 1px solid rgba(0,0,0,.08); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(255,213,0,.1); color: var(--black); }
.price-table .price-col { font-family: var(--font-display); font-weight: 800; color: var(--yellow-dark); white-space: nowrap; }
.section--dark .price-table { background: var(--black-card); border-color: var(--yellow); }
.section--dark .price-table th { background: var(--yellow); color: var(--black); }
.section--dark .price-table td { color: var(--gray-200); border-bottom-color: rgba(255,255,255,.08); }
.section--dark .price-table tr:hover td { background: rgba(255,213,0,.08); color: var(--white); }
.section--dark .price-table .price-col { color: var(--yellow); }

/* ---------- CONTACTO INFO ---------- */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}
.contact-info__item:hover {
  border-color: var(--yellow);
  background: var(--yellow-bg);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(255,213,0,.25);
}
.contact-info__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid var(--black);
}
.contact-info__item strong { display: block; margin-bottom: 4px; font-size: .95rem; color: var(--black); }
.contact-info__item span, .contact-info__item a { font-size: .9rem; color: var(--gray-700); }
.contact-info__item a:hover { color: var(--yellow-dark); font-weight: 600; }

/* ---------- BADGE ESTADO ---------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(34,204,110,.15);
  border: 2px solid var(--neon-green);
  font-size: .78rem;
  font-weight: 700;
  color: var(--neon-green);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}

/* ---------- CHIPS NAVEGABLES ---------- */
.coverage-chip-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 100px;
  font-size: .88rem;
  color: var(--black);
  transition: all var(--t-base);
  font-weight: 600;
}
.coverage-chip-link:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,213,0,.5);
}

/* ---------- ACCESIBILIDAD ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 10px; border: 3px solid var(--white); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow-dark); }

::selection { background: var(--yellow); color: var(--black); }

@media (max-width: 640px) {
  .form { padding: 30px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .price-table { font-size: .82rem; }
  .price-table th, .price-table td { padding: 12px 12px; }
  .page-hero { padding: calc(var(--header-h) + 50px) 0 50px; }
}