/* ════════════════════════════════════════════════════════════
   tienda.css — Estilos exclusivos de la tienda online
   Dra. Jenny Ortega De La Rosa
   Depende de: ../../css/shared.css (design tokens)
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; color: var(--text); background: #fdfaf9; line-height: 1.6; }
img   { display: block; max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Banner superior ──────────────────────────────────────── */
.top-banner {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; text-align: center; padding: 11px 20px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}
.top-banner span { opacity: .75; font-weight: 400; margin: 0 10px; }

/* ── Navbar ───────────────────────────────────────────────── */
.tienda-nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(253,250,249,.93);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(209,0,113,.09);
  transition: padding .25s;
}
.tienda-nav.scrolled { padding: 10px 40px; box-shadow: 0 2px 20px rgba(180,100,150,.10); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500;
  color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.nav-logo span  { color: var(--pink); }
.nav-logo img   { height: 34px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0;
}
.nav-links a { font-size: .86rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cta {
  background: linear-gradient(135deg, rgba(232,0,125,.90), rgba(194,0,104,.94));
  color: white !important; padding: 9px 20px; border-radius: var(--radius-full);
  font-size: .84rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── Hero ─────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   HERO SLIDER — 5 servicios destacados rotando automáticamente
   ═══════════════════════════════════════════════════════════ */
.shop-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #0a0508;
  border-bottom: none;
}
.shop-hero::after { display: none; }

.shop-hero-slider {
  display: block;
  padding: 0;
}

/* Cada slide ocupa el mismo espacio (absolute layered). El active toma el espacio (relative) */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

/* Background image cubre todo el slide */
.hero-slide-bg {
  position: absolute; inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1.0); /* Ken Burns sutil */
}

/* Overlay oscuro sobre la imagen para legibilidad del texto */
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,3,6,0.78) 0%, rgba(12,5,10,0.55) 55%, rgba(8,3,6,0.72) 100%);
  z-index: 2;
}

/* Container del contenido del slide — flex con texto a la izq y CTAs abajo-derecha */
.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 100px 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 540px;
}

.hero-slide-text {
  max-width: 620px;
}

/* Acciones (CTAs) en la esquina inferior DERECHA */
.hero-slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: flex-end;
  margin-top: 32px;
}

/* Texto del slide (mismos estilos que el hero original) */
.hero-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #ffc0e5; margin-bottom: 16px; }
.hero-h1      { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem,5.5vw,4.5rem); font-weight: 600; color: #f5f0f4; line-height: 1.07; margin-bottom: 18px; }
.hero-h1 em   { font-style: italic; color: #d10071; }
.hero-sub     { font-size: 1rem; color: rgba(245,240,244,0.78); line-height: 1.75; max-width: 540px; margin-bottom: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust   { margin-top: 36px; display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item   { display: flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; color: rgba(245,240,244,0.55); }
.trust-item svg { color: #d10071; flex-shrink: 0; }

/* Dots de navegación — abajo a la izquierda */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 36px; height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.hero-dot:hover {
  background: rgba(255,255,255,0.55);
}
.hero-dot.active {
  background: #d10071;
  width: 56px;
}

/* Mobile — stack actions debajo del texto, dots más arriba */
@media (max-width: 780px) {
  .shop-hero { min-height: 480px; }
  .hero-slide-content { padding: 80px 0 80px; min-height: 480px; }
  .hero-slide-actions { justify-content: flex-start; align-self: stretch; }
  .hero-dots { bottom: 16px; }
  .hero-dot { width: 24px; }
  .hero-dot.active { width: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   BENTO DESTACADOS — layout asimétrico de 5 cards.
   IMPORTANTE: TODAS las imágenes mantienen aspect-ratio 1:1
   (las imágenes originales son cuadradas 480/640px). La asimetría
   viene del TAMAÑO de cada tile (1x1 vs 2x2), no de proporciones
   distintas. Así nunca se cortan las imágenes.
   ═══════════════════════════════════════════════════════════ */
.destacados-section {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, #fdfaf9 0%, rgba(255,240,247,.35) 100%);
}
.destacados-section .sec-header { margin-bottom: 40px; }

/* Layout de 4 columnas, filas auto-square (cada celda = 1/4 del ancho).
   Esto garantiza que cualquier tile (1x1 o 2x2) sea siempre cuadrado. */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Truco: padding-bottom en pseudo-elemento o aspect-ratio en cada tile */
  gap: 14px;
}

/* Tile base — siempre cuadrado (aspect-ratio: 1/1) */
.bento-tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: box-shadow .35s, transform .35s;
  cursor: pointer; isolation: isolate;
  aspect-ratio: 1 / 1;  /* TODAS las cards son cuadradas → no se cortan imágenes */
}
.bento-tile:hover     { box-shadow: 0 18px 56px rgba(209,0,113,.18); transform: translateY(-4px); }
.bento-tile img       { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bento-tile:hover img { transform: scale(1.06); }

/* Gradient overlay + texto sobre imagen */
.bento-tile::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.40) 72%, rgba(26,15,24,.82) 100%);
  pointer-events: none;
}
.bento-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 20px;
  color: white;
  display: flex; flex-direction: column; gap: 5px;
}
.bento-eyebrow {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.80);
}
.bento-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 600; line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.40);
}
.bento-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 3px; }
.bento-price { font-size: .95rem; font-weight: 700; color: white; }
.bento-cta {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  background: rgba(255,255,255,.94); color: var(--pink-dark);
  padding: 5px 13px; border-radius: 100px; transition: background .2s;
}
.bento-tile:hover .bento-cta { background: white; }

/* Tile hero (BIG): ocupa 2x2 → SIGUE siendo cuadrado, solo más grande */
.bento-tile.tile-hero {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;  /* 2 cols × 2 rows pero las celdas son cuadradas */
}
.bento-tile.tile-hero .bento-body { padding: 28px 30px; gap: 8px; }
.bento-tile.tile-hero .bento-title { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.bento-tile.tile-hero .bento-price { font-size: 1.25rem; }
.bento-tile.tile-hero .bento-cta   { padding: 8px 18px; font-size: .78rem; }

/* Tiles regulares (1x1) — ya tienen aspect-ratio: 1/1 por default */
.bento-tile.tile-sq,
.bento-tile.tile-tall,
.bento-tile.tile-wide {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 1 / 1;
}

/* Layout: hero (2x2) + 4 sq (1x1) → grid 4×2
   [HERO HERO sq sq]
   [HERO HERO sq sq] */

/* Tablet: 3 columnas → hero queda 2x2, sq abajo */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* hero ocupa 2x2 (4 celdas), 1 sq al lado, 3 sq debajo */
}

/* Mobile: scroll horizontal con snap, todas las cards cuadradas */
@media (max-width: 720px) {
  .bento-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    margin: 0 -28px;
    padding-left: 28px; padding-right: 28px;
    -webkit-overflow-scrolling: touch;
  }
  .bento-grid .bento-tile {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 78vw; max-width: 360px;
    aspect-ratio: 1 / 1;  /* cuadradas en mobile también */
    grid-area: auto;
  }
  .bento-grid::-webkit-scrollbar { display: none; }
}

/* ── Chips de filtro ──────────────────────────────────────── */
.chips-section { padding: 28px 0; background: #fdfaf9; border-bottom: 1px solid rgba(209,0,113,.06); }
.chips-row     { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: white; border: 1.5px solid rgba(209,0,113,.12);
  border-radius: var(--radius-full); font-size: .84rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; text-decoration: none;
  transition: all .2s; white-space: nowrap;
}
.chip svg             { color: var(--pink); flex-shrink: 0; }
.chip:hover,
.chip.active          { background: var(--pink); border-color: var(--pink); color: white; }
.chip:hover svg,
.chip.active svg      { color: white; }

/* ── Secciones ────────────────────────────────────────────── */
.sec-wrap       { padding: 80px 0 0; }
.sec-header     { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }
.sec-eyebrow    {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sec-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--pink);
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);  /* ↑ mucho más imponente */
  font-weight: 500;                       /* peso elegante, no bold */
  color: var(--text);
  line-height: 1.05;                      /* tight para impacto */
  letter-spacing: -0.02em;                /* tracking levemente negativo (elegancia editorial) */
  max-width: 900px;
}
.sec-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}
.sec-link       { font-size: .85rem; font-weight: 600; color: var(--pink); text-decoration: none; white-space: nowrap; flex-shrink: 0; padding-bottom: 6px; }
.sec-link:hover { text-decoration: underline; }
.sec-divider    { height: 1px; background: linear-gradient(90deg, transparent, rgba(209,0,113,.12), transparent); margin: 80px 0 0; }

/* Section titles dentro de bg oscuro (cirugía/pagos) — color invertido */
.cirugia-bg .sec-title,
.pagos-wrap .sec-title { color: #fdfaf9; }

/* Sección oculta por filtro */
.cat-section.hidden { display: none; }

/* ── Grids ────────────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ═══════════════════════════════════════════════════════════
   CARRUSEL HORIZONTAL — para secciones de catálogo
   Reemplaza al grid en home: scroll con snap + flechas nav.
   ═══════════════════════════════════════════════════════════ */
.carousel-wrap { position: relative; }

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Bleed sutil al borde del container para sensación de "más allá" */
  padding: 4px 0 12px;
  margin: 0;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track { scrollbar-width: none; -ms-overflow-style: none; }

.carousel-track > .vitrina-card {
  flex: 0 0 calc(25% - 15px); /* 4 cards visibles en desktop */
  scroll-snap-align: start;
  min-width: 0;
}
.carousel-track > .vitrina-card.is-lg {
  flex: 0 0 calc(50% - 10px); /* card grande ocupa 2 cols */
}

/* Flechas de navegación */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: white;
  border: 1px solid rgba(209,0,113,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  color: var(--pink);
  transition: all .25s;
}
.carousel-arrow:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(232,0,125,.30);
}
.carousel-arrow:active { transform: translateY(-50%) scale(0.95); }
.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
}

/* Indicadores de página (puntitos) */
.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(209,0,113,.18);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.carousel-dot:hover { background: rgba(209,0,113,.40); }
.carousel-dot.active {
  background: var(--pink);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .carousel-track > .vitrina-card { flex-basis: calc(33.333% - 14px); }
  .carousel-track > .vitrina-card.is-lg { flex-basis: calc(66.666% - 7px); }
}
@media (max-width: 900px) {
  .carousel-track > .vitrina-card { flex-basis: calc(50% - 10px); }
  .carousel-track > .vitrina-card.is-lg { flex-basis: 100%; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
}
@media (max-width: 540px) {
  .carousel-track > .vitrina-card { flex-basis: 75vw; }
  .carousel-track > .vitrina-card.is-lg { flex-basis: 85vw; }
  .carousel-arrow { display: none; }  /* En mobile mejor swipe puro */
  .carousel-track {
    margin: 0 -28px;
    padding-left: 28px; padding-right: 28px;
  }
}

/* Layout sección destacada: 1 card "lg" (span 2) + N "vitrina" (span 1) en grid de 4 cols.
   Antes era 1fr/1fr (editorial side-by-side) — ahora todas las cards son verticales. */
.section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Card "lg" en una sección: ocupa 2 columnas pero sigue siendo VERTICAL (imagen arriba, info abajo).
   Su imagen es 1:1 y el alto total queda determinado por el contenido. */
.section-grid > .vitrina-card.is-lg {
  grid-column: span 2;
}
/* Backwards-compat: si el legacy .hero-sidebar-layout sigue en HTML, ahora también es grid 4-col */
.hero-sidebar-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.hero-sidebar-right {
  display: contents;  /* eliminamos el wrapper extra: las cards van directo al grid padre */
}

/* ═══════════════════════════════════════════════════════════
   TARJETA "LG" — versión grande de vitrina, mismo layout vertical.
   Reemplaza al viejo .editorial side-by-side.
   ═══════════════════════════════════════════════════════════ */
.vitrina-card.is-lg .vitrina-name  { font-size: 1.4rem; line-height: 1.2; }
.vitrina-card.is-lg .vitrina-price { font-size: 1.15rem; }
.vitrina-card.is-lg .vitrina-desc {
  font-size: .85rem; color: var(--text-muted); line-height: 1.6;
  margin-top: -2px; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   TARJETA VITRINA — imagen cuadrada 1:1 + info compacta
   ═══════════════════════════════════════════════════════════ */
.vitrina-card {
  background: white; border: 1px solid rgba(209,0,113,.07);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; cursor: pointer;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.vitrina-card:hover { box-shadow: 0 10px 40px rgba(209,0,113,.13); transform: translateY(-5px); border-color: rgba(209,0,113,.20); }

/* Links internos (img + body) — ocupan toda la card pero sin estilos de anchor.
   Esto permite que el botón WA sea un <a> válido sin anidamiento. */
.vitrina-img-link,
.vitrina-body-link {
  text-decoration: none; color: inherit; display: block;
}
.vitrina-body-link { flex: 1; }

/* Overlay "Ver tratamiento" al hover */
.vitrina-img             { position: relative; overflow: hidden; flex-shrink: 0; }
.vitrina-img::after {
  content: 'Ver tratamiento'; position: absolute; inset: 0;
  background: rgba(26,15,24,.42); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: white; opacity: 0; transition: opacity .25s;
}
.vitrina-card:hover .vitrina-img::after { opacity: 1; }
.vitrina-img img          { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .4s ease; }
.vitrina-card:hover .vitrina-img img { transform: scale(1.06); }

/* Placeholder elegante cuando no hay imagen — estilo perfume premium */
.vitrina-img-placeholder {
  width: 100%; aspect-ratio: 1/1;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.85) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 80%, rgba(209,0,113,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #fff5fa 0%, #ffeaf5 50%, #f3e8ff 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  overflow: hidden;
  isolation: isolate;
}
/* Decoración: monograma "DJ" en marca de agua (Dra. Jenny) */
.vitrina-img-placeholder::before {
  content: 'DJ';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--pink);
  opacity: 0.10;
  letter-spacing: -0.05em;
  z-index: 0;
}
/* Ícono central + nombre del producto sobreimpuesto en el body */
.vitrina-img-placeholder .placeholder-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
}
.vitrina-img-placeholder svg {
  opacity: 0.65;
  filter: drop-shadow(0 2px 8px rgba(209,0,113,0.15));
}
.vitrina-img-placeholder .placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--pink-dark);
  opacity: 0.55;
  letter-spacing: 0.04em;
  text-align: center;
}

.vitrina-body   { padding: 18px 18px 10px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vitrina-cat    { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); }
.vitrina-name   { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1.25; }
.vitrina-price  { font-size: 1rem; font-weight: 700; color: var(--text); }
.vitrina-price-consultar { font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.vitrina-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 2px; }
/* Botón abajo, full width — siempre debajo de la imagen y la info */
.vitrina-footer { padding: 12px 18px 18px; display: flex; gap: 8px; align-items: center; }

/* ── Badges ───────────────────────────────────────────────── */
.badge         { display: inline-flex; align-items: center; gap: 3px; font-size: .63rem; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); white-space: nowrap; }
.badge-green   { background: rgba(37,190,100,.10); color: #1a7a3f; border: 1px solid rgba(37,190,100,.20); }
.badge-pink    { background: rgba(209,0,113,.08);  color: var(--pink-dark); border: 1px solid rgba(209,0,113,.16); }
.badge-blue    { background: rgba(14,165,233,.08); color: #0369a1; border: 1px solid rgba(14,165,233,.18); }
.badge-consult { background: rgba(14,165,233,.08); color: #0369a1; border: 1px solid rgba(14,165,233,.18); font-size: .72rem; padding: 4px 10px; }
/* Stock alerts */
.badge-red     { background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.20); }
.badge-amber   { background: rgba(217,119,6,.10); color: #92400e; border: 1px solid rgba(217,119,6,.22); }

/* ── Botones de tarjeta — full width, prominentes ────────── */
.btn-mini {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(232,0,125,.92), rgba(194,0,104,.96));
  color: white; border-radius: var(--radius-full); font-size: .85rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 3px 14px rgba(232,0,125,.20);
}
.btn-mini:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,0,125,.34); }
.btn-mini[disabled],
.btn-mini.is-disabled {
  background: rgba(0,0,0,.06); color: rgba(0,0,0,.4); cursor: not-allowed;
  box-shadow: none; pointer-events: none;
}
/* Botón WA pequeño al lado */
.btn-mini-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(37,211,102,.09); color: #1a7a3f;
  border: 1.5px solid rgba(37,211,102,.25); border-radius: 50%;
  text-decoration: none; transition: all .2s; flex-shrink: 0;
}
.btn-mini-wa:hover { background: rgba(37,211,102,.18); transform: translateY(-1px); }

/* Botón "Consultar" para cirugía */
.btn-mini-consultar {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 10px;
  background: rgba(14,165,233,.08); color: #0369a1;
  border: 1.5px solid rgba(14,165,233,.22); border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 600; text-decoration: none;
  transition: all .2s;
}
.btn-mini-consultar:hover { background: rgba(14,165,233,.16); }

/* Botón editorial (variante lg de los cards de catálogo) — mismo estilo que btn-mini pero más alto */
.editorial-btn {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(232,0,125,.92), rgba(194,0,104,.96));
  color: white; border-radius: var(--radius-full); font-size: .92rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 16px rgba(232,0,125,.22);
}
.editorial-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(232,0,125,.36); }
.editorial-btn .icon { flex-shrink: 0; }

/* ── Sección Skincare ────────────────────────────────────── */
.skincare-bg { background: linear-gradient(160deg, rgba(255,240,247,.5) 0%, rgba(245,240,253,.3) 100%); border-radius: var(--radius-lg); padding: 48px; }

/* Card CTA de skincare ("¿Cuál es para vos?") */
.skincare-cta-card {
  background: rgba(255,240,247,.5); border: 1px solid rgba(209,0,113,.12);
  border-radius: 20px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 28px 20px; text-decoration: none; color: inherit;
  transition: all .25s; cursor: pointer; min-height: 200px;
}
.skincare-cta-card:hover { border-color: var(--pink); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(209,0,113,.10); }
.skincare-cta-icon  { width: 56px; height: 56px; background: rgba(232,0,125,.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--pink); margin-bottom: 14px; }
.skincare-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.skincare-cta-desc  { font-size: .8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.skincare-cta-link  { font-size: .82rem; font-weight: 700; color: var(--pink); }

/* ── Sección Cirugía — DESTACADA (25% más grande) ───────── */
.cirugia-bg   {
  background: linear-gradient(160deg, #100c10 0%, #1a0b14 60%, #100c10 100%);
  border-radius: var(--radius-lg);
  padding: 60px;                         /* 48 → 60 (+25%) */
  color: #fdfaf9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.05);
}
/* Línea rosa superior decorativa para resaltar visualmente */
.cirugia-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--pink) 25%, var(--pink) 75%, transparent 100%);
}
/* Título de sección más prominente dentro del bloque dark */
.cirugia-bg h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;   /* 25% más grande que sec-title normal */
  margin-bottom: 6px !important;
}

/* Carrusel horizontal — todas las cirugías en una sola línea con flechas */
.cirugia-carousel {
  position: relative;
  margin-top: 40px;
}
.cirugia-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding-bottom: 8px;       /* espacio para que sombra del hover no se corte */
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cirugia-track::-webkit-scrollbar { display: none; }
.cirugia-track > .cirugia-tile {
  flex: 0 0 calc((100% - 60px) / 4);   /* 4 cards visibles, 3 gaps de 20px */
  min-width: 220px;                    /* mínimo para mobile/tablet */
  scroll-snap-align: start;
  /* Simetría: todas las cards iguales en altura + body como flex column */
  display: flex;
  flex-direction: column;
}
/* Mantener compatibilidad con la clase grid antigua si se usa */
.cirugia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Flechas de navegación */
.cirugia-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fdfaf9;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  padding: 0;
}
.cirugia-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.08);
}
/* Las flechas nunca quedan disabled — el carrusel hace loop infinito */
.cirugia-arrow:disabled {
  opacity: 1;
  cursor: pointer;
}
.cirugia-arrow-prev { left: -24px; }
.cirugia-arrow-next { right: -24px; }
@media (max-width: 540px) {
  .cirugia-arrow-prev { left: 0; }
  .cirugia-arrow-next { right: 0; }
}

/* ── Links internos del tile (img + nombre) — invisibles, mantienen interacción ── */
.cirugia-tile-img-link, .cirugia-tile-name-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cirugia-tile-name-link:hover .cirugia-tile-name { color: var(--pink); }

/* ── Botón "Consultar precio" en cada tile de cirugía (llamativo) ─────── */
.cirugia-tile-cta-btn {
  margin-top: 24px;       /* separación FIJA del subtítulo — IGUAL en todas las cards */
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  background: linear-gradient(135deg, #d10071 0%, #b50062 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(209,0,113,0.40),
    0 0 0 1px rgba(255,255,255,0.10) inset;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.cirugia-tile-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.cirugia-tile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(209,0,113,0.55),
    0 0 0 1px rgba(255,255,255,0.18) inset;
}
.cirugia-tile-cta-btn:hover::before { transform: translateX(100%); }
.cirugia-tile-cta-btn .icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* Animación pulse sutil para destacar el botón */
@keyframes cirugiaTileCtaPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(209,0,113,0.40), 0 0 0 1px rgba(255,255,255,0.10) inset; }
  50%      { box-shadow: 0 8px 20px rgba(209,0,113,0.40), 0 0 0 3px rgba(209,0,113,0.30), 0 0 0 1px rgba(255,255,255,0.10) inset; }
}
.cirugia-tile-cta-btn { animation: cirugiaTileCtaPulse 2.6s ease-in-out infinite; }
.cirugia-tile-cta-btn:hover { animation: none; }
.cirugia-tile {
  border: 1px solid rgba(255,255,255,.10); border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit; background: rgba(255,255,255,.03);
  transition: all .25s; cursor: pointer;
}
.cirugia-tile:hover {
  border-color: rgba(209,0,113,.40);
  background: rgba(255,255,255,.06);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(209,0,113,0.18);
}
.cirugia-tile img   { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; filter: brightness(.95) saturate(.92); transition: filter .3s; }
.cirugia-tile:hover img { filter: brightness(1) saturate(1.05); }

/* Body: flex column — wrapper de texto con altura uniforme, botón con separación FIJA */
.cirugia-tile-body {
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
/* Wrapper de texto: altura uniforme entre todas las cards */
.cirugia-tile-text {
  min-height: 6rem;          /* espacio uniforme: 2 líneas nombre + 2 líneas subtítulo */
}
.cirugia-tile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fdfaf9;
  line-height: 1.3;
  margin: 0 0 8px 0;
}
.cirugia-tile-sub {
  font-size: .82rem;
  color: rgba(253,250,249,.55);
  line-height: 1.5;
  margin: 0;
}
.cirugia-tile-cta {
  font-size: .82rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.04em;
}

/* ── Nuestras marcas ──────────────────────────────────────── */
.marcas-section {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(209,0,113,.08);
  background: linear-gradient(180deg, rgba(255,240,247,.20) 0%, #fdfaf9 100%);
}
.marcas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.marca-tile {
  background: white;
  border: 1px solid rgba(209,0,113,.08);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.marca-tile:hover {
  border-color: rgba(209,0,113,.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(209,0,113,.10);
}
.marca-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.15;
}
.marca-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .marcas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .marcas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .marca-tile  { padding: 18px 10px; }
}

/* ── Sección de pagos ────────────────────────────────────── */
.pagos-wrap  { background: #100c10; padding: 64px 0; color: #fdfaf9; margin-top: 64px; }
.pagos-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pagos-h2    { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; line-height: 1.15; }
.pagos-sub   { font-size: .9rem; color: rgba(253,250,249,.50); line-height: 1.7; margin-top: 12px; }
.pagos-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.pagos-pill  { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-full); font-size: .8rem; font-weight: 500; color: rgba(253,250,249,.78); background: rgba(255,255,255,.04); }
.pagos-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 400; font-style: italic; color: rgba(253,250,249,.78); line-height: 1.4; margin-bottom: 26px; text-align: center; }

/* ── CTA final ───────────────────────────────────────────── */
.final-cta   { padding: 80px 0; text-align: center; background: linear-gradient(160deg, rgba(255,240,247,.7) 0%, rgba(245,240,253,.4) 100%); }
.final-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 600; margin-bottom: 14px; }
.final-cta h2 em { color: var(--pink); font-style: italic; }
.final-cta p  { font-size: .96rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────────────── */
footer        { background: #100c10; color: #fdfaf9; padding: 44px 24px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo  { font-family: 'Cormorant Garamond', serif; font-size: .98rem; font-weight: 500; color: #fdfaf9; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo span { color: var(--pink); }
.footer-logo img  { height: 34px; }
.footer-copy      { font-size: .75rem; color: rgba(253,250,249,.36); text-align: center; }
.footer-links     { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-links a   { font-size: .75rem; color: rgba(255,255,255,.38); text-decoration: underline; }
.footer-socials   { display: flex; gap: 10px; }
.footer-social    { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); color: rgba(253,250,249,.58); text-decoration: none; transition: background .2s, color .2s; }
.footer-social:hover { background: var(--pink); color: white; }

/* ── WhatsApp flotante (matchea con el de la landing) ────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 62px; height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.25s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.08); }
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* Tooltip "Escribinos" al hover (override shared.css que pone "WhatsApp") */
.wa-float::before {
  content: 'Escribinos' !important;
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(255,250,253,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,220,240,0.60);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.wa-float:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4         { grid-template-columns: repeat(3, 1fr); }
  .cirugia-grid   { grid-template-columns: repeat(3, 1fr); }
  .cirugia-track > .cirugia-tile { flex-basis: calc((100% - 40px) / 3); }
  /* Section grid: 3 cols, lg sigue ocupando 2 */
  .section-grid   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .cirugia-track > .cirugia-tile { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 540px) {
  .cirugia-track > .cirugia-tile { flex-basis: 80%; min-width: 240px; }
}
@media (max-width: 900px) {
  /* Section grid: 2 cols, lg ocupa 2 (full row) */
  .section-grid   { grid-template-columns: repeat(2, 1fr); }
  .section-grid > .vitrina-card.is-lg { grid-column: span 2; }
}
@media (max-width: 540px) {
  /* Section grid: 1 col en móvil */
  .section-grid   { grid-template-columns: 1fr; }
  .section-grid > .vitrina-card.is-lg { grid-column: span 1; }
}
@media (max-width: 900px) {
  .tienda-nav     { padding: 13px 20px; }
  .nav-links      { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(253,250,249,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(209,0,113,.10); padding: 14px 20px 18px;
  }
  .nav-links.open li { width: 100%; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
  .nav-links.open li:last-child { border-bottom: none; }
  .hamburger      { display: flex; }
  .editorial      { grid-template-columns: 1fr; }
  .hero-sidebar-layout  { grid-template-columns: 1fr; }
  .hero-sidebar-right   { grid-template-columns: repeat(2, 1fr); }
  .pagos-grid     { grid-template-columns: 1fr; }
  .skincare-bg    { padding: 36px 24px; }
  .cirugia-bg     { padding: 36px 24px; }
  .cirugia-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2          { grid-template-columns: 1fr; }
  .hero-sidebar-right { grid-template-columns: 1fr; }
  .cirugia-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero-actions    { flex-direction: column; }
  .hero-actions a  { width: 100%; justify-content: center; }
  .chips-row       { gap: 8px; }
  /* Reducir padding en editorial-body para no romper grid mobile */
  .editorial-body  { padding: 24px 20px; gap: 10px; }
  /* Subir font-size de la categoría en mobile (era ilegible 9px) */
  .vitrina-cat     { font-size: .72rem; letter-spacing: .08em; }
  .editorial-cat   { font-size: .72rem; }
}
@media (max-width: 480px) {
  /* En 375px (iPhone SE) los cards en 2-col quedan demasiado angostos */
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .cirugia-grid    { grid-template-columns: 1fr; }
  /* Ajustes de padding y typo para 1-col */
  .vitrina-body    { padding: 18px 18px 12px; }
  .vitrina-name    { font-size: 1.1rem; }
  .vitrina-price   { font-size: 1rem; }
  .skincare-bg     { padding: 28px 20px; }
  .cirugia-bg      { padding: 28px 20px; }
}
@media (max-width: 400px) {
  .container       { padding: 0 18px; }
}

/* ── Accesibilidad: respetar prefers-reduced-motion ─────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .vitrina-card:hover .vitrina-img img { transform: none; }
  .editorial:hover .editorial-img img  { transform: none; }
  .vitrina-card:hover, .editorial:hover, .cirugia-tile:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   CARRITO — estilos de botones, badge y tile de cirugía
   ═══════════════════════════════════════════════════════════ */

/* Botón carrito para SERVICIOS (bordó) — en vitrina-footer y editorial */
.btn-mini.btn-servicio,
.editorial-btn.btn-servicio {
  background: linear-gradient(135deg, #6b0f3e, #9a1255);
  box-shadow: 0 4px 16px rgba(106,15,62,.25);
}
.editorial-btn.btn-servicio:hover { box-shadow: 0 10px 28px rgba(106,15,62,.40); }

/* Botón "Consultar precio" en cirugías → rosa suave (no azul) */
.btn-mini-consultar {
  background: rgba(209,0,113,.07) !important;
  color: #d10071 !important;
  border-color: rgba(209,0,113,.22) !important;
}
.btn-mini-consultar:hover { background: rgba(209,0,113,.14) !important; }

/* WhatsApp secundario en tiles de cirugía */
.cirugia-tile-wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(37,211,102,.12); color: #1a7a3f;
  border: 1.5px solid rgba(37,211,102,.30); border-radius: 50%;
  text-decoration: none; transition: all .2s;
}
.cirugia-tile-wa-btn:hover { background: rgba(37,211,102,.22); transform: translateY(-1px); }
.cirugia-tile-wa-btn .icon { flex-shrink: 0; }
