/* ============================================================
   ENHANCEMENTS — Capa premium 2026 · 100% vanilla
   Mármoles y Granitos Morelló Civera
   Aislada en su propio fichero: borra el <link> para revertir.
   ============================================================ */

/* ── Custom properties animables (@property) ──────────────── */
@property --aurora-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --shine-pos {
  syntax: "<percentage>";
  initial-value: -120%;
  inherits: false;
}

:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --glow: rgba(182, 138, 86, 0.55);
}

/* ── Tipografía fina: equilibrado de líneas ───────────────── */
h1, h2, .mini-designer__content h3 {
  text-wrap: balance;
}
.hero__content > span,
.section__intro > span,
.feature span,
p {
  text-wrap: pretty;
}

/* ── Selección de texto con color de marca ────────────────── */
::selection {
  background: var(--brand);
  color: #fff;
}

/* ── Scrollbar afinada (desktop) ──────────────────────────── */
@media (pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: var(--brand) transparent; }
}

/* ============================================================
   1 · BARRA DE PROGRESO DE SCROLL
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 9998;
  background: linear-gradient(90deg, var(--warm), var(--brand), var(--brand-dark));
  box-shadow: 0 1px 12px rgba(62, 94, 82, 0.5);
  pointer-events: none;
}
/* Si el navegador soporta scroll-driven animations, lo hace nativo (sin JS) */
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: progress-grow linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes progress-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   2 · CURSOR MAGNÉTICO (solo desktop con puntero fino)
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 300ms ease;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease, width 260ms var(--ease-spring),
              height 260ms var(--ease-spring), background 260ms ease, border-color 260ms ease;
}
.has-cursor.cursor-ready .cursor-dot,
.has-cursor.cursor-ready .cursor-ring {
  opacity: 1;
}
/* Estado "hover" sobre elementos interactivos */
.has-cursor.cursor-hover .cursor-ring {
  width: 58px; height: 58px;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.4);
}
.has-cursor.cursor-hover .cursor-dot {
  opacity: 0;
}
.has-cursor.cursor-down .cursor-ring {
  width: 30px; height: 30px;
}
/* Ocultar cursor nativo solo cuando la capa custom está activa */
.has-cursor,
.has-cursor a,
.has-cursor button,
.has-cursor .designer-choice,
.has-cursor input,
.has-cursor select,
.has-cursor textarea {
  cursor: none;
}

/* ============================================================
   3 · HERO — revelado cinético del titular + aurora
   ============================================================ */
.hero__content h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) rotate(2deg);
  filter: blur(6px);
  animation: word-rise 0.9s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--word-i, 0) * 70ms + 150ms);
}
.hero__content h1 .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}

/* Entrada escalonada del resto del hero */
.hero__content > p,
.hero__content > span,
.hero__actions {
  opacity: 0;
  animation: soft-up 0.9s var(--ease-out-expo) forwards;
}
.hero__content > p      { animation-delay: 0.1s; }
.hero__content > span   { animation-delay: 0.6s; }
.hero__actions          { animation-delay: 0.78s; }
@keyframes soft-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Velo aurora animado sobre el hero (sutil, mezcla con la foto) */
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(182, 138, 86, 0.18), transparent 70%),
    radial-gradient(45% 55% at 80% 20%, rgba(62, 94, 82, 0.22), transparent 70%),
    radial-gradient(50% 60% at 60% 90%, rgba(35, 58, 50, 0.20), transparent 70%);
  filter: blur(30px);
  opacity: 0.9;
  animation: aurora-float 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes aurora-float {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.12); }
}

/* Botones con barrido de luz */
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent var(--shine-pos),
              rgba(255, 255, 255, 0.35) calc(var(--shine-pos) + 18%), transparent calc(var(--shine-pos) + 36%));
  transition: --shine-pos 0.8s ease;
}
.button:hover::after { --shine-pos: 120%; }

/* ============================================================
   4 · BANDA DE STATS (contadores animados)
   ============================================================ */
.stats-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(17, 19, 16, 0.97), rgba(17, 19, 16, 0.9)),
    url("./assets/thumbs/material-negra.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 120px);
  pointer-events: none;
}
.stat {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 18px clamp(8px, 2vw, 24px);
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent);
}
.stat__num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, var(--warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__suffix { color: var(--warm); -webkit-text-fill-color: var(--warm); }
.stat__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   5 · MARQUEE infinito de materiales
   ============================================================ */
.marquee {
  --gap: clamp(28px, 5vw, 64px);
  position: relative;
  display: flex;
  overflow: hidden;
  gap: var(--gap);
  padding: clamp(20px, 3vw, 34px) 0;
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track {
  display: flex;
  gap: var(--gap);
  flex-shrink: 0;
  align-items: center;
  min-width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brand-dark);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.78;
  transition: opacity 240ms ease, color 240ms ease;
}
.marquee__track span:hover { opacity: 1; color: var(--brand); }
.marquee__track span::after {
  content: "✦";
  color: var(--warm);
  font-size: 0.55em;
}
@keyframes marquee-scroll {
  to { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

/* ============================================================
   6 · TILT 3D + SPOTLIGHT en tarjetas
   ============================================================ */
.tilt {
  transform-style: preserve-3d;
  transform: perspective(900px)
             rotateX(calc(var(--ry, 0) * -1deg))
             rotateY(calc(var(--rx, 0) * 1deg));
  transition: transform 220ms var(--ease-out-expo);
  will-change: transform;
}
/* Brillo que sigue al puntero (usa --mx/--my en %) */
.spotlight { position: relative; }
.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 255, 255, 0.22), transparent 60%);
  transition: opacity 300ms ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.spotlight:hover::after { opacity: 1; }
/* Borde luminoso en tarjetas oscuras */
.material-list article.spotlight::after {
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
              var(--glow), transparent 55%);
  mix-blend-mode: screen;
}

/* ============================================================
   7 · REVEAL por scroll nativo (scroll-driven) con fallback JS
   Solo para elementos NUEVOS (no pisa el sistema de site.js)
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}
.reveal-up.is-in { opacity: 1; transform: none; }

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .stats-band .stat,
    .marquee {
      animation: reveal-fade both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
    .stats-band .stat { animation-name: reveal-rise; }
    .stats-band .stat:nth-child(2) { animation-range: entry 6% entry 64%; }
    .stats-band .stat:nth-child(3) { animation-range: entry 12% entry 70%; }
    .stats-band .stat:nth-child(4) { animation-range: entry 18% entry 76%; }
  }
}
@keyframes reveal-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes reveal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   8 · BOTÓN VOLVER ARRIBA
   ============================================================ */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 880;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-dark);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(23, 24, 23, 0.16);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms var(--ease-spring), background 220ms ease;
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}
.to-top svg { width: 20px; height: 20px; }

/* ============================================================
   9 · MICRO-DETALLES
   ============================================================ */
/* Imágenes con grano sutil al hover en feature/portfolio */
.feature picture, .portfolio-callout, .mini-designer__preview { isolation: isolate; }

/* Foco accesible reforzado */
a:focus-visible,
button:focus-visible,
.designer-choice:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Header: línea de luz inferior al hacer scroll */
.site-header.is-scrolled {
  box-shadow: 0 18px 48px rgba(23, 24, 23, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 24px 1px; }
  .stat:nth-child(3)::before { display: none; }
  .to-top { bottom: 86px; right: 18px; }
}
@media (max-width: 420px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
}

/* Cursor custom: nunca en táctil ni puntero grueso */
@media (pointer: coarse), (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .has-cursor, .has-cursor a, .has-cursor button { cursor: auto; }
}

/* ============================================================
   RESPETO A prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__content h1 .word,
  .hero__content > p,
  .hero__content > span,
  .hero__actions {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .hero::before,
  .marquee__track { animation: none !important; }
  .reveal-up { opacity: 1; transform: none; }
  .tilt { transform: none !important; }
}

/* ============================================================
   10 · COMPARADOR INTERACTIVO DE PIEDRAS (Material Split Slider)
   ============================================================ */
.material-comparator {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}
.comparator__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.comparator__tab {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 260ms var(--ease-out-expo);
}
.comparator__tab:hover {
  border-color: var(--brand);
  background: var(--surface-soft);
}
.comparator__tab.is-active {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(23, 24, 23, 0.16);
}

.comparator__stage {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(23, 24, 23, 0.18);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.comparator__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.comparator__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.comparator__image--left {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.comparator__badge {
  position: absolute;
  top: 20px;
  z-index: 5;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(17, 19, 16, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  pointer-events: none;
}
.comparator__badge--left { left: 20px; }
.comparator__badge--right { right: 20px; }

.comparator__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.comparator__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.comparator__handle-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--warm);
  transition: transform 180ms ease;
}
.comparator__stage:hover .comparator__handle-button {
  transform: scale(1.12);
}

/* ============================================================
   11 · MODAL ZOOM HD DE TEXTURAS Y SHIMMER
   ============================================================ */
.material-card {
  cursor: pointer;
}
.material-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 240ms var(--ease-out-expo);
}
.material-card:hover .material-zoom-btn {
  background: var(--warm);
  color: var(--brand-dark);
  border-color: var(--warm);
  transform: translateY(-2px);
}

.material-zoom-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 900px;
  width: calc(100% - 32px);
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.material-zoom-modal::backdrop {
  background: rgba(17, 19, 16, 0.82);
  backdrop-filter: blur(16px);
}
.material-zoom-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #181a18;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
}
.material-zoom-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 200ms ease;
}
.material-zoom-close:hover {
  background: var(--brand);
}
.material-zoom-preview {
  position: relative;
  background: #000;
  min-height: 340px;
  overflow: hidden;
}
.material-zoom-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out-expo);
}
.material-zoom-preview:hover img {
  transform: scale(1.08);
}
.material-zoom-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.material-zoom-info {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.material-zoom-info h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.material-zoom-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.material-zoom-specs {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.material-zoom-spec-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.material-zoom-spec-item strong {
  color: var(--warm);
}
.material-zoom-spec-item span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-align: right;
}
.material-zoom-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .material-zoom-card {
    grid-template-columns: 1fr;
  }
  .material-zoom-preview {
    min-height: 220px;
  }
}

/* ============================================================
   12 · COTIZADOR EXPRÉS EN 3 CLICS (Calculadora Rápida)
   ============================================================ */
.calculator-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 50px rgba(23, 24, 23, 0.08);
}
.calculator-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-step__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.calc-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.calc-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 2px solid transparent;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 220ms var(--ease-out-expo);
}
.calc-option small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.calc-option:hover {
  border-color: var(--brand);
  background: #fff;
}
.calc-option.is-selected {
  border-color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 4px 20px rgba(23, 24, 23, 0.12);
}
.calc-option svg {
  color: var(--brand);
}

.calc-range-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-soft);
  padding: 18px 24px;
  border-radius: 16px;
}
.calc-range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.calc-range-header strong {
  font-size: 16px;
  color: var(--brand-dark);
}
.calc-range-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--brand-dark);
  cursor: pointer;
}
.calc-range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.calculator-result {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.calc-result-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-result-header span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.calc-result-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--warm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.calc-price-display strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.calc-price-display small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.4;
}
.calc-result-summary {
  font-size: 14px;
  font-weight: 600;
  color: var(--warm);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.calc-result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-wa-btn {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
}
.calc-wa-btn:hover {
  background: #1ebc57 !important;
}

@media (max-width: 900px) {
  .calculator-card {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   13 · SECCIÓN PRÓXIMAMENTE (Tarificador B2B en Desarrollo)
   ============================================================ */
.coming-soon-section {
  padding: clamp(40px, 6vw, 80px) 0;
}
.coming-soon-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  background: radial-gradient(circle at 10% 20%, rgba(62, 94, 82, 0.08), transparent 70%), var(--surface, #ffffff);
  border: 1px solid var(--line, rgba(44, 55, 49, 0.15));
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(62, 94, 82, 0.12);
  color: #233a32;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36ef5c;
  box-shadow: 0 0 0 0 rgba(54, 239, 92, 0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(54, 239, 92, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(54, 239, 92, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(54, 239, 92, 0); }
}
.coming-soon-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink, #151715);
  margin: 0;
  line-height: 1.25;
}
.coming-soon-card p {
  max-width: 640px;
  color: var(--muted, #636e69);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

