/* ============================================
   MIRAÏ STOP TABACO — Hoja de estilos principal
   ============================================ */

:root {
  --azul-oscuro: #23283d;
  --turquesa: #a4c7cd;
  --turquesa-oscuro: #7fb0b8;
  --blanco: #ffffff;
  --gris-claro: #f5f7f8;
  --gris-medio: #e5e9ec;
  --gris-texto: #5a6170;
  --sombra: 0 4px 20px rgba(35, 40, 61, 0.08);
  --sombra-hover: 0 8px 30px rgba(35, 40, 61, 0.15);
  --radio: 12px;
  --transicion: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--azul-oscuro);
  line-height: 1.6;
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--azul-oscuro);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--azul-oscuro);
  text-decoration: none;
  transition: var(--transicion);
}

a:hover { color: var(--turquesa-oscuro); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris-medio);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--azul-oscuro);
  letter-spacing: 0.5px;
}

.logo span { color: var(--turquesa-oscuro); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--turquesa-oscuro);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--turquesa-oscuro);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--azul-oscuro);
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transicion);
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--azul-oscuro);
  color: var(--blanco);
}

.btn-primary:hover {
  background: var(--turquesa-oscuro);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.btn-secondary {
  background: var(--turquesa);
  color: var(--azul-oscuro);
}

.btn-secondary:hover {
  background: var(--turquesa-oscuro);
  color: var(--blanco);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--azul-oscuro);
  border-color: var(--azul-oscuro);
}

.btn-outline:hover {
  background: var(--azul-oscuro);
  color: var(--blanco);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(35, 40, 61, 0.88) 0%, rgba(46, 52, 80, 0.82) 100%),
              url('../img/laser-oreja.png') center/cover no-repeat;
  color: var(--blanco);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

/* Hero interior (subpáginas) con imagen */
.hero-page {
  background: linear-gradient(135deg, rgba(35, 40, 61, 0.85) 0%, rgba(46, 52, 80, 0.78) 100%),
              url('../img/triptico-consulta.png') center/cover no-repeat;
}

/* Sección imagen a pantalla completa */
.image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.image-showcase img {
  width: 100%;
  height: auto;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}

.image-showcase h2 { margin-bottom: 1rem; }
.image-showcase p { color: var(--gris-texto); font-size: 1.05rem; }

.stat-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.stat-visual img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* Gráfico circular 87% (SVG) */
.stat-ring {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-ring-bg {
  fill: none;
  stroke: var(--gris-medio);
  stroke-width: 16;
}

.stat-ring-fg {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 628.32;
  stroke-dashoffset: 628.32;
  animation: ring-fill 2s ease-out 0.3s forwards;
}

@keyframes ring-fill {
  to { stroke-dashoffset: 81.68; } /* 628.32 * (1 - 0.87) */
}

.stat-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-ring-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--azul-oscuro);
  line-height: 1;
}

.stat-ring-number em {
  font-style: normal;
  font-size: 2.5rem;
  color: var(--turquesa-oscuro);
  margin-left: 0.1rem;
}

.stat-ring-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul-oscuro);
  margin-top: 0.4rem;
}

.stat-ring-sub {
  font-size: 0.9rem;
  color: var(--gris-texto);
}

/* Quote callout (turquesa, centrado) */
.quote-callout {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
}

.quote-callout p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--turquesa-oscuro);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.quote-callout small {
  display: block;
  font-size: 0.8rem;
  color: var(--gris-texto);
}

/* Páginas legales */
.legal {
  max-width: 820px;
  color: var(--gris-texto);
}
.legal h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--azul-oscuro);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { line-height: 1.7; }
.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal ul li { margin-bottom: 0.5rem; }
.legal a { color: var(--turquesa-oscuro); text-decoration: underline; }
.legal-update { margin-top: 3rem; font-size: 0.85rem; }

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--blanco);
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features span::before {
  content: '✓';
  color: var(--turquesa);
  font-weight: 700;
  font-size: 1.2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECCIONES ===== */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 { margin-bottom: 0.5rem; }

.section-title p {
  color: var(--gris-texto);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bg-light { background: var(--gris-claro); }

/* ===== CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--blanco);
  padding: 2rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  transition: var(--transicion);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--turquesa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

/* ===== TARIFAS ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--blanco);
  padding: 2.5rem 2rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transicion);
}

.price-card.featured {
  border-color: var(--turquesa);
  transform: scale(1.03);
  position: relative;
}

.price-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--turquesa-oscuro);
  color: var(--blanco);
  font-size: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--azul-oscuro);
  margin: 1rem 0;
}

.price small {
  font-size: 1rem;
  color: var(--gris-texto);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gris-medio);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card li::before {
  content: '✓';
  color: var(--turquesa-oscuro);
  font-weight: 700;
}

.price-card li:last-child { border-bottom: none; }

/* ===== CENTROS ===== */
.center-card {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicion);
}

.center-card:hover { box-shadow: var(--sombra-hover); }

.center-card iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

.center-info {
  padding: 2rem;
}

.center-info h3 {
  color: var(--turquesa-oscuro);
  margin-bottom: 1rem;
}

.center-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gris-texto);
}

.center-info .icon {
  color: var(--turquesa-oscuro);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--blanco);
  border-radius: var(--radio);
  margin-bottom: 1rem;
  box-shadow: var(--sombra);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--turquesa-oscuro);
  transition: var(--transicion);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--gris-texto);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

/* ===== FORMULARIO ===== */
.form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--blanco);
  padding: 2.5rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gris-medio);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transicion);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turquesa-oscuro);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form button {
  width: 100%;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transicion);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--azul-oscuro);
  color: var(--blanco);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h4 {
  color: var(--turquesa);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }

.footer a {
  color: var(--blanco);
  opacity: 0.85;
  font-size: 0.9rem;
}

.footer a:hover {
  opacity: 1;
  color: var(--turquesa);
}

.footer p {
  color: var(--blanco);
  opacity: 0.85;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--azul-oscuro) 0%, #2e3450 100%);
  color: var(--blanco);
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-header h1 { color: var(--blanco); margin-bottom: 0.5rem; }
.page-header p { opacity: 0.9; font-size: 1.1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--sombra);
  }

  .nav-menu.active { display: flex; }

  .hero { padding: 4rem 1.5rem; }
  .hero-features { gap: 1rem; flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-ctas .btn { width: 100%; }

  .image-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .image-showcase.reverse { direction: ltr; }

  section { padding: 3.5rem 0; }
  .price-card.featured { transform: none; }
  .form { padding: 1.75rem; }
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 9999;
  background: var(--azul-oscuro, #23283d);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  padding: 1rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  animation: cookie-slide-up 0.4s ease-out;
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1 1 280px;
  color: #fff;
}
.cookie-banner a {
  color: var(--turquesa-claro, #a4c7cd);
  text-decoration: underline;
}
.cookie-banner-btn {
  background: var(--turquesa-claro, #a4c7cd);
  color: var(--azul-oscuro, #23283d);
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.cookie-banner-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}
.cookie-banner-hide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .cookie-banner { padding: 0.9rem 1rem; }
  .cookie-banner p { font-size: 0.85rem; }
  .cookie-banner-btn { width: 100%; }
}


/* ============================================
   PREMIUM SECTIONS
   ============================================ */

/* TICKER BAR */
.ticker-bar {
  background: var(--azul-oscuro);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  padding-left: 100%;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.92);
}
.ticker-track span::before {
  content: "✓";
  color: var(--turquesa);
  font-weight: 700;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* STATS PREMIUM */
.stats-premium {
  background: linear-gradient(180deg, var(--blanco) 0%, var(--gris-claro) 100%);
  padding: 4.5rem 0 4rem;
  border-top: 1px solid var(--gris-medio);
  border-bottom: 1px solid var(--gris-medio);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1rem 0.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--gris-medio);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--azul-oscuro);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--turquesa-oscuro);
  font-weight: 600;
  margin-left: 0.15rem;
}
.stat-label {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--gris-texto);
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stat-item + .stat-item::before { display: none; }
  .stat-number { font-size: 3rem; }
}

/* COMPARATIVA */
.comparativa-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  background: #fff;
}
.comparativa {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.comparativa th,
.comparativa td {
  padding: 1rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--gris-medio);
  font-size: 0.95rem;
}
.comparativa thead th {
  background: var(--gris-claro);
  color: var(--azul-oscuro);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparativa tbody tr:last-child td { border-bottom: none; }
.comparativa td:first-child,
.comparativa th:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--azul-oscuro);
}
.comparativa .col-mirai {
  background: linear-gradient(180deg, rgba(164,199,205,0.18), rgba(164,199,205,0.08));
  color: var(--azul-oscuro);
  font-weight: 600;
  position: relative;
}
.comparativa thead .col-mirai {
  background: var(--azul-oscuro);
  color: #fff;
}

/* GARANTÍA SEAL */
.garantia-section {
  background: var(--azul-oscuro);
  color: #fff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.garantia-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(164,199,205,0.12), transparent 55%);
  pointer-events: none;
}
.garantia-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.garantia-seal {
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
  animation: seal-float 4s ease-in-out infinite;
}
@keyframes seal-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
.garantia-text h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.garantia-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.garantia-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.garantia-list li {
  padding-left: 1.8rem;
  position: relative;
  color: rgba(255,255,255,0.9);
}
.garantia-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--turquesa);
  font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width: 780px) {
  .garantia-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 2rem; }
  .garantia-list li { text-align: left; }
}

/* CALCULADORA */
.calculadora {
  background: linear-gradient(135deg, var(--gris-claro) 0%, #fff 100%);
  padding: 4rem 0;
}
.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 640px;
  margin: 2.5rem auto 2rem;
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}
.calc-inputs label {
  display: block;
  font-size: 0.85rem;
  color: var(--gris-texto);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.calc-inputs input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--gris-medio);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--azul-oscuro);
  text-align: center;
  transition: var(--transicion);
}
.calc-inputs input:focus {
  border-color: var(--turquesa);
  outline: none;
  box-shadow: 0 0 0 3px rgba(164,199,205,0.25);
}
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.calc-box {
  background: #fff;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radio);
  text-align: center;
  box-shadow: var(--sombra);
  border: 1px solid var(--gris-medio);
  transition: var(--transicion);
}
.calc-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}
.calc-box-hl {
  background: linear-gradient(135deg, var(--azul-oscuro), #2d3552);
  color: #fff;
  border-color: transparent;
}
.calc-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gris-texto);
  margin-bottom: 0.6rem;
}
.calc-box-hl .calc-label { color: var(--turquesa); }
.calc-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--azul-oscuro);
  line-height: 1;
}
.calc-box-hl .calc-value { color: #fff; }
.calc-cta {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gris-texto);
  max-width: 640px;
  margin: 0 auto;
}
.calc-cta strong { color: var(--azul-oscuro); }
@media (max-width: 700px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* TESTIMONIOS */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.testimonio {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  border: 1px solid var(--gris-medio);
  transition: var(--transicion);
  position: relative;
}
.testimonio:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}
.testimonio::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--turquesa);
  opacity: 0.25;
  line-height: 1;
}
.testimonio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonio-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--turquesa-oscuro));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonio-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.testimonio p {
  color: var(--gris-texto);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonio-meta {
  font-size: 0.85rem;
  color: var(--gris-texto);
  border-top: 1px solid var(--gris-medio);
  padding-top: 0.85rem;
}
.testimonio-meta strong { color: var(--azul-oscuro); }

/* FAQ en home */
.faq-home {
  background: var(--gris-claro);
  padding: 4rem 0;
}

/* STICKY MOBILE BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  z-index: 950;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  border-top: 1px solid var(--gris-medio);
}
.msb-btn {
  padding: 0.9rem 0.4rem;
  text-align: center;
  text-decoration: none;
  color: var(--azul-oscuro);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.2s;
  border-right: 1px solid var(--gris-medio);
}
.msb-btn:last-child { border-right: none; }
.msb-btn:active { background: var(--gris-claro); }
.msb-btn-primary {
  background: #25D366;
  color: #fff;
}
.msb-btn-primary:active { background: #1ea952; }
.msb-icon {
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .mobile-sticky-bar { display: grid; }
  body { padding-bottom: 70px; }
  .cookie-banner { bottom: 70px; }
}

/* PREMIUM HOVER POLISH */
.servicio,
.testimonio,
.centro {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .garantia-seal { animation: none !important; }
}
