:root{
  --bg: #ffffff;          /* blanco */
  --paper: #ffffff;
  --ink: #121212;
  --muted: rgba(18,18,18,.68);
  --line: rgba(18,18,18,.10);
  --beige: #efe6d5;
  --coral: #c79b2b; /* dorado más intenso (CTA) */
  --coralSoft: #ffeceb; /* coral pastel suave (detalles) */
  --shadow: 0 22px 60px rgba(18,18,18,.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;

  /* Header height used to position the mobile menu panel under the sticky bar */
  --headerH: 72px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height:1.55;
}

/* Page variants */
body.page--policies{
  /* white base with very subtle coral gradient */
  background:
    radial-gradient(900px 520px at 20% 18%, rgba(255,107,90,.07), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 85% 35%, rgba(214,177,94,.06), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,236,235,.35), #ffffff 35%, #ffffff 100%);
}
body.page--policies::before{
  display:none;
}

/* Blog: subtle dark gradient + gold neon borders */
body.page--blog{
  background:
    radial-gradient(900px 520px at 20% 12%, rgba(0,0,0,.06), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(0,0,0,.04), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(0,0,0,.05), #ffffff 34%, #ffffff 100%);
}

/* Post page main article glow */
body.page--blog article.panel{
  position: relative;
  border: 1px solid rgba(var(--goldRgb),.52);
  box-shadow:
    0 16px 44px rgba(18,18,18,.08),
    0 0 0 1px rgba(var(--goldRgb),.28),
    0 0 26px rgba(var(--goldRgb),.30);
}

/* subtle gold sparkle */
body.page--blog article.panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  background: radial-gradient(320px 220px at 18% 12%, rgba(255,255,255,.30), rgba(255,255,255,0) 60%);
  mix-blend-mode: overlay;
  opacity: .55;
}

/* Featured blog panel on /blog */
body.page--blog .panel{
  border-color: rgba(214,177,94,.30);
}

/* Policies page: modern white background + coral FAQ accordion */
body.page--policies .section{background: transparent}
body.page--policies .section__head p{color: rgba(18,18,18,.68)}

/* Subscription page: make title black and larger (client request) */
body.page--sub .section__head{
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.page--sub .section__head h2{
  color: rgba(18,18,18,.96);
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
body.page--sub .section__head p{max-width: 72ch}

/* Bamby Club: degradado dorado sutil */
.section--club{
  background: radial-gradient(1200px 420px at 85% 10%, rgba(216,169,98,.16), transparent 60%),
              radial-gradient(900px 380px at 18% 30%, rgba(239,230,213,.55), transparent 60%);
}


body.page--policies .faq{
  max-width: 820px;
  margin: 18px auto 0;
  display: grid;
  gap: 12px;
}

/* Align policies title with the FAQ/description left edge */
body.page--policies .section__head{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
body.page--policies .section__head h2{
  margin-left: 0;
}

body.page--policies .faq__item{
  background: #ffffff;
  border: 1px solid rgba(18,18,18,.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18,18,18,.06);
}

body.page--policies .faq__q{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 600;
  color: rgba(18,18,18,.90);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
body.page--policies .faq__q::-webkit-details-marker{display:none}

body.page--policies .faq__q::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid rgba(255,107,90,.95);
  transform: translateY(1px);
  transition: transform .18s ease;
}

body.page--policies .faq__item[open]{
  border-color: rgba(var(--goldRgb),.42);
}
body.page--policies .faq__item[open] .faq__q{
  /* coral más intenso, pero más claro que la flecha */
  background: rgba(255, 210, 205, .75);
}
body.page--policies .faq__item[open] .faq__q::after{
  transform: rotate(180deg);
}

body.page--policies .faq__a{
  padding: 14px 16px 16px;
  background: #ffffff;
  border-top: 1px solid rgba(18,18,18,.08);
}
body.page--policies .faq__a p{margin: 0}
body.page--policies .faq__a p + p{margin-top: 10px}
body.page--policies .faq__a ul{margin: 10px 0 0 18px; padding: 0}
body.page--policies .faq__a li{margin: 6px 0}

/* Bamby Club - Subscription section title sizing */
.sub-title{font-size: 50px; line-height: 1.04; margin: 0; text-align:center}
.sub-lead{max-width: 820px; text-align:center; margin: 14px auto 0}
@media (max-width: 700px){
  .sub-title{font-size: 38px}
}


/* Movimiento de fondo sutil */
body::before{display:none}
@keyframes floatBg{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(2vw,-1vh,0) scale(1.02)}
}

a{color:inherit; text-decoration:none}

/* remove blue tap highlight / selection feel on mobile */
*{-webkit-tap-highlight-color: transparent;}
::selection{background: rgba(239,230,213,.75); color: inherit;}
::-moz-selection{background: rgba(239,230,213,.75); color: inherit;}

.container{max-width: var(--max); margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; background:var(--paper); padding:10px 12px; border-radius: 10px; box-shadow: var(--shadow)}


/* Header */
.header{position:sticky; top:0; z-index:10000; backdrop-filter: blur(12px); background: rgba(255,255,255,.92); border-bottom:1px solid var(--line)}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 20px}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:32px; height:32px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,90,.12), rgba(233,226,215,.55));
  display:grid; place-items:center;
  box-shadow: 0 10px 22px rgba(18,18,18,.10);
  overflow:hidden;
}
.brand__mark img{
  width:100%; height:100%; object-fit:cover;
  object-position: center;
  transform: scale(1.22);
  display:block;
}
.brand__name{font-weight:600}
.brand__sub{font-size:12px; color: var(--muted)}

.nav{display:flex; gap:16px; align-items:center}
.nav a{font-size:14px; color: var(--muted)}
.nav a:hover{color: var(--ink)}

.header__cta{display:flex; gap:10px; align-items:center}

/* Selector de idioma */
.lang{display:flex; gap:8px; align-items:center}
.lang__btn{
  border:1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.70);
  padding:8px 10px;
  border-radius: 999px;
  font-size:12px;
  font-weight:700;
  color: rgba(18,18,18,.78);
  cursor:pointer;
}
.lang__btn.is-active{background: rgba(18,18,18,.92); color: rgba(255,255,255,.95); border-color: rgba(18,18,18,.40)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius: 999px;
  font-size:14px; font-weight:500;
  border: 1px solid rgba(18,18,18,.12);
}
.btn{transition: transform .18s ease, filter .18s ease, background-color .18s ease, border-color .18s ease}
.btn:hover{filter: brightness(1.02); transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

/* Variantes */
.btn--dark{
  background: #0f0f10;
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18,18,18,.16);
}
/* destello blanco tipo “luz” */
.btn--dark::after{
  content:"";
  position:absolute;
  inset:-2px;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,0) 65%,
    transparent 100%
  );
  opacity: .75;
  pointer-events:none;
}
.btn--dark:hover::after{animation: shine 1.1s ease-in-out 1;}
@keyframes shine{
  0%{transform: translateX(-120%) skewX(-18deg); opacity:.0}
  20%{opacity:.65}
  100%{transform: translateX(120%) skewX(-18deg); opacity:0}
}

.btn--coral{background: var(--coral); color: white; border-color: rgba(var(--goldRgb),.52)}
.btn--ghost{background: transparent; color: var(--ink); border: 1px solid rgba(18,18,18,.16)}

/* Grey button variant (for Básico) */
.btn--gray{
  background: rgba(18,18,18,.08);
  border: 1px solid rgba(18,18,18,.14);
  color: rgba(18,18,18,.82);
}
.btn--gray:hover{background: rgba(18,18,18,.11)}

/* Gold button variant (for Premium) */
.btn--gold{
  background: #0f0f10;
  border: 1px solid rgba(var(--goldRgb),.70);
  color: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(18,18,18,.16);
}
.btn--gold:hover{filter: brightness(1.02)}

/* Dorado/beige pastel (para botones suaves tipo captura) */
.btn--sand{background: var(--coralSoft); color: var(--ink); border: 1px solid rgba(18,18,18,.14)}

.menu{display:none; width:44px; height:44px; border-radius: 12px; border:1px solid var(--line); background: rgba(255,255,255,.6); cursor:pointer}
.menu span{display:block; height:2px; background: var(--ink); margin:6px 10px; border-radius: 2px}

.menu-panel{
  position: fixed;
  left: 0;
  right: 0;
  /* Dropdown anchored under the sticky header */
  top: var(--headerH);
  bottom: auto;

  max-height: min(420px, calc(100vh - var(--headerH) - 16px));
  overflow: auto;

  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(18,18,18,.10);
  border-radius: 0 0 18px 18px;

  z-index: 9990;

  /* animación */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.menu-panel.is-open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* CSS-only mobile menu (works even if JS fails) */
.menu-toggle{display:none}
.menu-toggle:checked ~ .menu-panel{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 700px){
  .menu-toggle{display:none}
}
.menu-panel__inner{padding:14px 20px 28px; display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.menu-panel a{padding:10px 12px; border:1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.82); color: var(--muted)}

/* Hero */
.hero{padding: 36px 0 96px; position:relative; overflow:hidden}


/* Degradado para que el texto se entienda (deja el video limpio) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.94) 52%,
    rgba(255,255,255,.70) 66%,
    rgba(255,255,255,0) 82%
  );
  z-index: 0;
  pointer-events:none;
}

.hero .container{position:relative; z-index:1}
.hero__grid{display:grid; grid-template-columns: 1fr 380px; gap:28px; align-items:stretch}
.hero__copy{max-width: 60ch; margin: 0 auto; align-self:center; padding: 10px 0; text-align:center}
.hero__copy .lead{margin-left:auto; margin-right:auto}
.hero__copy .muted{margin-left:auto; margin-right:auto; max-width: 56ch}
.hero__actions{justify-content:center}
.hero__card{display:flex; justify-content:flex-end; align-self:stretch}

/* Media (foto) en esquina superior derecha */
.hero-media__frame{
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(18,18,18,.10);
  box-shadow: 0 18px 55px rgba(18,18,18,.14);
  background: rgba(0,0,0,.06);
}
.hero-media{width:100%; height:100%; object-fit: cover; object-position: 50% 18%; display:block}

@media (max-width: 980px){
  .hero{padding: 22px 0 84px;}
  .hero__grid{grid-template-columns: 1fr 170px; gap:14px; align-items:start}
  .hero__card{justify-content:flex-end}
  .hero-media__frame{max-width: 170px; aspect-ratio: 9 / 16; border-radius: 18px;}
  .hero::before{background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,0) 100%)}
}
@media (max-width: 520px){
  .hero__grid{grid-template-columns: 1fr 150px;}
  .hero-media__frame{max-width: 150px;}
}

.pill{display:inline-flex; padding:7px 10px; border-radius: 999px; border:1px solid rgba(18,18,18,.12); background: rgba(18,18,18,.88); color: rgba(255,255,255,.95); font-size:13px}

h1{font-size: 52px; line-height:1.05; margin:10px 0 8px; letter-spacing: -0.02em; color: rgba(18,18,18,.96)}
.lead{font-size: 17px; color: rgba(18,18,18,.74); max-width: 54ch}
.hero__loc{margin: 8px 0 0;}

.hero__actions{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}

.hero__meta{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:18px}
.meta-item{
  padding:14px 14px;
  border-radius: 16px;
  border:1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(18,18,18,.06);
}
.meta-item__k{font-size:12px; color: rgba(18,18,18,.55)}
.meta-item__v{font-size:16px; font-weight:600}

.card{border-radius: var(--radius); border:1px solid var(--line); background: rgba(255,255,255,.78); box-shadow: var(--shadow); overflow:hidden}
.card__top{display:flex; align-items:center; justify-content:space-between; padding:16px 16px; border-bottom:1px solid var(--line)}
.badge{font-size:12px; color: rgba(18,18,18,.72); border:1px solid rgba(18,18,18,.10); padding:6px 10px; border-radius: 999px; background: var(--coralSoft)}
.dots{display:flex; gap:6px}
.dots span{width:7px; height:7px; border-radius: 50%; background: rgba(18,18,18,.20)}
.card__body{padding:18px 16px}
.card__title{font-weight:600; margin-bottom:6px}
.card__text{color: var(--muted); margin:0 0 12px}
.check{padding-left: 18px; margin:0; color: var(--muted)}
.check li{margin:6px 0}
.card__bottom{display:flex; justify-content:space-between; padding:14px 16px; border-top:1px solid var(--line)}
.link{color: rgba(18,18,18,.80); text-decoration: underline; text-underline-offset: 3px}

/* Sections */
.section{padding: 44px 0}

/* Fondo en "Sobre Bamby" (negro) + borde en forma de ola */
.section--bamby{
  position:relative;
  overflow:hidden;
  background: #ffffff;
}
/* Soft fade to blend with white sections (top & bottom) */
.section--bamby::before,
.section--bamby::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:46px;
  pointer-events:none;
  z-index:0;
  opacity:.55;
}
.section--bamby::before{
  top:0;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 100%);
}
.section--bamby::after{
  bottom:0;
  background: linear-gradient(0deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 100%);
}

/* Wave system disabled (client request: straight black band) */
.wave{display:none}

.section--bamby > .container{position:relative; z-index:1;}
.section--bamby .section__head h2{color: rgba(18,18,18,.96)}
.section--bamby .section__head p{color: rgba(18,18,18,.68)}

/* White background cards (no glass) */
.section--bamby .panel{
  background:#ffffff;
  border:1px solid rgba(239,230,213,.95);
  box-shadow: 0 14px 34px rgba(18,18,18,.06);
}
.section--bamby .panel::before{display:none}
.section--bamby .panel h3{color: rgba(18,18,18,.92)}
.section--bamby .panel p{color: rgba(18,18,18,.68)}
.section--bamby .panel:hover{
  box-shadow: 0 16px 40px rgba(18,18,18,.07);
  border-color: rgba(var(--goldRgb),.28);
}
.section__head{display:flex; justify-content:space-between; gap:22px; align-items:flex-end; margin-bottom:18px}
.section__head h2{font-size: 26px; margin:0}
.section__head p{margin:0; color: var(--muted); max-width: 64ch}

.hours-badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: #0f0f10;
  color: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(18,18,18,.14);
  position: relative;
  overflow: hidden;
}
.hours-badge::after{
  content:"";
  position:absolute;
  inset:-2px;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.45) 50%,
    rgba(255,255,255,0) 65%,
    transparent 100%
  );
  opacity: .65;
  pointer-events:none;
}
.hours-badge:hover::after{animation: shine 1.1s ease-in-out 1;}
.hours-badge__icon{
  display:inline-flex;
  width:22px; height:22px;
  align-items:center; justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0f0f10;
}
.hours-badge__text{font-size: 13px; font-weight:650; white-space: nowrap}
@media (max-width: 700px){
  .hours-badge{margin-top:10px}
  .hours-badge__text{white-space: normal}
}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px}
/* Si queda un solo item al final (número impar), que ocupe todo el ancho */
.grid-2 > :last-child:nth-child(odd){grid-column: 1 / -1;}

.club-layout{display:grid; grid-template-columns: minmax(180px, 240px) minmax(260px, 1fr) auto; gap:22px; align-items:center}
.club-layout__title h2{font-size:40px; line-height:1.08; letter-spacing:-.02em; margin:0}
/* Centrar el bloque de descripción entre el título y la imagen */
.club-layout__desc{display:flex; flex-direction:column; align-items:center; text-align:center; padding-top:10px}
.club-layout__desc p{max-width: 52ch; margin:0; color: var(--muted)}
.club-layout__media{display:flex; justify-content:flex-end; border-radius:22px; overflow:hidden}

.club-photo{display:block; width:100%; max-width:360px; aspect-ratio: 1 / 1; object-fit:contain; background:transparent; padding:0; border-radius: 22px; box-shadow: none; border: 0}

@media (max-width: 980px){
  .club-layout{grid-template-columns: 1fr; gap:12px;}
  .club-layout__media{justify-content:flex-start}
  .club-photo{max-width:420px}
  .club-layout__title h2{font-size:36px}
  .club-layout__desc p{margin-top:6px}
}
@media (max-width: 520px){
  /* Móvil: título centrado y con más aire arriba */
  .club-layout__title{padding-top:10px}
  .club-layout__title h2{font-size:32px; text-align:center}
  .club-layout__desc p{margin-top:12px}
  .club-layout__desc .cta-row{margin-top:14px !important; margin-bottom:14px !important}

  /* En móvil: dar aire entre botón e imagen */
  .club-layout{gap:12px;}
  .club-layout__media{margin-top:0;}
}

.panel{border:1px solid rgba(239,230,213,.95); background:#ffffff; border-radius: var(--radius-sm); padding:16px; box-shadow: 0 14px 40px rgba(18,18,18,.06)}
.panel h3{margin:0 0 6px; font-size: 16px}
.panel p{margin:0; color: var(--muted)}

/* Panel coral pastel (muy suave) */
.panel--coral{
  background: rgba(255,107,90,.10);
  border-color: rgba(255,107,90,.18);
}
.panel--coral .bullets{margin-top:10px}

.panel--primary{border-color: rgba(239,230,213,.95); background: #ffffff; box-shadow: 0 14px 40px rgba(18,18,18,.06)}
.ico{opacity:.95; margin-right:6px}
.wa-mini{display:inline-grid; place-items:center; width:18px; height:18px; border-radius:50%; background:transparent; border:1px solid rgba(18,18,18,.18); color: rgba(18,18,18,.85); vertical-align:middle}
.icon-mini{display:inline-grid; place-items:center; width:18px; height:18px; border-radius:50%; background:transparent; border:1px solid rgba(18,18,18,.18); color: rgba(18,18,18,.85); vertical-align:middle}
.icon-mini svg{display:block}

.bullets{margin:10px 0 0; padding-left:18px; color: var(--muted)}
.bullets li{margin:6px 0}

.steps{margin:10px 0 0; padding-left:18px; color: rgba(18,18,18,.72)}
.steps li{margin:8px 0;}
.steps em{font-style:normal; text-decoration: underline; text-underline-offset: 3px;}

.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(18,18,18,.10); background: rgba(239,230,213,.55); color: rgba(18,18,18,.72)}

.deposit{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:12px;}
.deposit__item{border:1px solid rgba(18,18,18,.08); background: rgba(239,230,213,.60); border-radius: 14px; padding:12px;}
.deposit__title{font-weight:600;}
.deposit__value{font-size:20px; font-weight:700; margin:4px 0;}
.deposit__desc{color: rgba(18,18,18,.68); font-size:12.5px; line-height:1.25;}

@media (max-width: 980px){
  .deposit{grid-template-columns: 1fr;}
}

/* WhatsApp flotante */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.0);
  color: rgba(18,18,18,.85);
  border: 1px solid rgba(18,18,18,.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 45px rgba(18,18,18,.12);
}
.wa-float:hover{filter: brightness(1.02)}
.wa-float__icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
}
.wa-float__icon svg{display:block}
.wa-float__text{font-size: 13px; font-weight: 600; white-space: nowrap;}

@media (max-width: 520px){
  .wa-float__text{display:none;}
  .wa-float{padding: 10px;}
}

/* Scroll reveal */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform}
.reveal.is-visible{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  body::before{animation:none}
  .reveal{opacity:1; transform:none; transition:none}
  .btn,.service,.price-card,.addon-card,.review{transition:none}
}

.service{border:1px solid var(--line); background: rgba(255,255,255,.72); border-radius: var(--radius-sm); padding:16px; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease}
.service:hover{transform: translateY(-2px); box-shadow: 0 14px 34px rgba(18,18,18,.08); background: rgba(255,255,255,.86)}
.service h3{margin:0 0 6px}
.service p{margin:0 0 12px; color: var(--muted)}
.service__tags{display:flex; flex-wrap:wrap; gap:8px}
.service__tags span{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(18,18,18,.10); background: rgba(239,230,213,.55); color: rgba(18,18,18,.72)}

/* Servicio con foto a la derecha */
.service--split{display:grid; grid-template-columns: 1.35fr .65fr; gap:14px; align-items:center;}
.service__right{display:flex; justify-content:center;}
.service__right img{width:100%; max-width: 190px; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; border-radius: 14px; border:1px solid rgba(18,18,18,.10); background: rgba(255,255,255,.9)}

/* Variante más corta */
.service--compact{padding:14px;}
.service--compact .service__right{justify-content:center;}
.service--compact .service__right img{max-width: 150px;}
.service--compact p{margin-bottom:10px;}

@media (max-width: 980px){
  .service--split{grid-template-columns: 1fr;}
  .service--compact .service__right{justify-content:center;}
}

.subhead{margin-top: 18px; margin-bottom: 12px;}
.subhead h3{margin:0 0 6px; font-size: 18px;}

/* Servicios independientes: título con más contraste */
#servicios-independientes h3{font-size: 22px; letter-spacing:-0.01em; color: rgba(18,18,18,.94)}
#servicios-independientes + .addons--independent{margin-top: 10px}

/* Add-ons (Servicios adicionales) — más profesional y limpio */
.addons{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
.addon-card{
  border:1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.86);
  border-radius: 16px;
  padding:14px 14px;
  box-shadow: 0 12px 28px rgba(18,18,18,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.addon-card:hover{transform: translateY(-2px); box-shadow: 0 18px 42px rgba(18,18,18,.07); border-color: rgba(18,18,18,.14)}
.addon-card h4{margin:0 0 8px; font-size:14px; font-weight:750; color: rgba(18,18,18,.92)}
.addon-card p{margin:0; line-height:1.5; color: rgba(18,18,18,.70)}

/* Ajuste bullets dentro de addon (colorimetría) */
.addon-card .bullets{margin:10px 0 0; padding-left: 18px; color: rgba(18,18,18,.72)}

/* Bullets con corazones (sin punto) */
.bullets--hearts{list-style:none; padding-left:0}
.bullets--hearts li{display:grid; grid-template-columns: 14px auto; column-gap:10px; align-items:baseline}
.bullets--hearts li .heart{line-height:1; margin-top: 2px}
.bullets--hearts li span:nth-of-type(2){font-weight:600; color: rgba(18,18,18,.82)}

/* Servicios independientes (cards mini premium) */
.addons--independent{grid-template-columns: repeat(2, 1fr); gap:10px;}
.addons--independent .addon-card{
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(18,18,18,.14);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 12px 26px rgba(18,18,18,.06);
}
.addons--independent .addon-card:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(18,18,18,.07)}
.addons--independent .addon-card{
  display:grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
}
.addons--independent .addon-card::before{
  content: attr(data-ico);
  grid-row: 1 / span 2;
  display:inline-grid;
  place-items:center;
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: rgba(239,230,213,.55);
  border: 1px solid rgba(18,18,18,.08);
  color: rgba(18,18,18,.92);
  font-size: 15px;
  /* fuerza estilo “texto” donde se pueda (evita tijeras rojas estilo emoji) */
  font-variant-emoji: text;
}
/* Icono perro en negro (monocromo) */
.addons--independent .addon-card[data-ico="dog"]::before,
.addons--independent .addon-card[data-ico="dog-ear"]::before{
  content:"";
  background: rgba(239,230,213,.55);
  border: 1px solid rgba(18,18,18,.08);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 18px 18px;
  mask-size: 18px 18px;
  background-color: rgba(18,18,18,.92);
}
/* Carita de perro */
.addons--independent .addon-card[data-ico="dog"]::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 6.2 4.8 4.7C3.9 4.1 2.8 4.8 3 5.9l.6 3.3c-.4.9-.6 1.9-.6 3 0 4.1 3.3 7.4 7.4 7.4h3.2c4.1 0 7.4-3.3 7.4-7.4 0-1.1-.2-2.1-.6-3l.6-3.3c.2-1.1-.9-1.8-1.8-1.2l-2.4 1.5C15.1 5.6 13.6 5 12 5s-3.1.6-4.8 1.2Zm4.8 3.8c1.7 0 3.1 1.4 3.1 3.1 0 1.6-1.2 2.9-2.7 3.1V18c0 .4-.3.7-.7.7h-1.4c-.4 0-.7-.3-.7-.7v-1.8c-1.5-.3-2.7-1.6-2.7-3.1 0-1.7 1.4-3.1 3.1-3.1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 6.2 4.8 4.7C3.9 4.1 2.8 4.8 3 5.9l.6 3.3c-.4.9-.6 1.9-.6 3 0 4.1 3.3 7.4 7.4 7.4h3.2c4.1 0 7.4-3.3 7.4-7.4 0-1.1-.2-2.1-.6-3l.6-3.3c.2-1.1-.9-1.8-1.8-1.2l-2.4 1.5C15.1 5.6 13.6 5 12 5s-3.1.6-4.8 1.2Zm4.8 3.8c1.7 0 3.1 1.4 3.1 3.1 0 1.6-1.2 2.9-2.7 3.1V18c0 .4-.3.7-.7.7h-1.4c-.4 0-.7-.3-.7-.7v-1.8c-1.5-.3-2.7-1.6-2.7-3.1 0-1.7 1.4-3.1 3.1-3.1Z'/%3E%3C/svg%3E");
}
/* Oreja de perro (monocroma) */
.addons--independent .addon-card[data-ico="dog-ear"]::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 4.8c-1.5 1.6-2.5 3.8-2.8 6.3-.3 2.8.5 5.8 2.3 7.8 1.1 1.2 2.6 1.6 4 .9 1.3-.6 2.2-2 2.2-3.5V11.2c0-2.9-1.4-5.5-3.2-7.1-.8-.7-1.8-.7-2.5.7Zm1.1 1.3c1.4 1.4 2.6 3.5 2.6 5.1v3.1c0 .8-.5 1.6-1.2 1.9-.6.3-1.2.2-1.7-.4-1.2-1.4-1.9-3.9-1.7-6.2.2-1.9.9-3.5 2-4.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 4.8c-1.5 1.6-2.5 3.8-2.8 6.3-.3 2.8.5 5.8 2.3 7.8 1.1 1.2 2.6 1.6 4 .9 1.3-.6 2.2-2 2.2-3.5V11.2c0-2.9-1.4-5.5-3.2-7.1-.8-.7-1.8-.7-2.5.7Zm1.1 1.3c1.4 1.4 2.6 3.5 2.6 5.1v3.1c0 .8-.5 1.6-1.2 1.9-.6.3-1.2.2-1.7-.4-1.2-1.4-1.9-3.9-1.7-6.2.2-1.9.9-3.5 2-4.5Z'/%3E%3C/svg%3E");
}

.addons--independent .addon-card h4{margin:0; font-size:14px; font-weight:750; color: rgba(18,18,18,.92)}
.addons--independent .addon-card p{margin:0; color: rgba(18,18,18,.72); font-size: 12.5px; line-height:1.4}

@media (max-width: 980px){
  .addons--independent{grid-template-columns: 1fr;}
}

/* Tamaños (2 por línea, alineados) */
.sizes{display:grid; grid-template-columns: 1fr 1fr; gap:10px 10px;}
.size{display:flex; align-items:center; justify-content:flex-start; gap:8px; color: rgba(18,18,18,.72); font-size:13px;}
.size--empty{visibility:hidden;}
.heart{color: rgba(18,18,18,.9); margin-right:0; font-size:12px;}
.size .amt{margin-left:10px; color: rgba(18,18,18,.86); font-weight:600; white-space:nowrap;}

@media (max-width: 980px){
  .sizes{grid-template-columns: 1fr;}
}

@media (max-width: 980px){
  .addons{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 620px){
  .addons{grid-template-columns: 1fr;}
}

.prices{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; align-items:start}
.price-card{border:1px solid rgba(var(--goldRgb),.65); background: rgba(255,255,255,.72); border-radius: var(--radius-sm); padding:16px; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease}
.price-card:hover{transform: translateY(-2px); box-shadow: 0 14px 34px rgba(18,18,18,.08); background: rgba(255,255,255,.86)}
.price-card--featured{
  border-color: rgba(var(--goldRgb),.42);
  background: rgba(18,18,18,.055); /* gris suave */
  box-shadow: 0 16px 40px rgba(18,18,18,.08);
}
.price-card--featured:hover{
  background: rgba(18,18,18,.075);
}
.price-card__top{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:12px}
.price-card h3{margin:0}
.price{font-size:13px; color: var(--muted)}
.price strong{color: var(--ink); font-weight:600}
.muted{color: var(--muted)}

.price-table{display:grid; gap:8px}
.price-table .row{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:10px; padding:10px 10px; border-radius: 12px; background: rgba(18,18,18,.045);}
.price-table .row.head{
  background: rgba(239,230,213,.88);
  border: 1px solid rgba(239,230,213,1);
  border-radius: 12px;
  padding: 10px 10px;
  color: #000000;
  font-weight: 800;
  box-shadow: none;
}
.price-table .row.head div:first-child{color: #000000;}
/* Header: Pelo corto/largo en negro (fila completa en dorado suave) */
.price-table .row.head div:nth-child(2),
.price-table .row.head div:nth-child(3){color: #000000;}

/* Columna Tamaño */
.price-table .row.head div:first-child,
.price-table .row:not(.head) div:first-child{
  color: #000000;
  font-weight: 700;
}

/* Tamaños: texto negro/gris (sin casilla/círculo) */
.price-table .row:not(.head) div:first-child{
  color: rgba(18,18,18,.72);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Valores: letra negra */
.price-table .row:not(.head) div:nth-child(2),
.price-table .row:not(.head) div:nth-child(3){color: rgba(18,18,18,.92)}

.price-table .row div:nth-child(2),
.price-table .row div:nth-child(3){text-align:right;}

/* Iconos/sombras de perros por tamaño en tablas de precios */
.pt-size{position:relative; padding-right: 46px;}
.pt-size::after{
  content:"";
  position:absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 28px;
  opacity: .9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.08));
}

/* Siluetas (SVG como background-image) — más legibles */
/* Pequeño (chihuahua) */
.pt-size--sm::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'%3E%3Cpath fill='%23111' d='M26 6l-7 6 4 3 4-3 5 4 5-4 4 3 4-3-7-6-6 4-6-4z'/%3E%3Cpath fill='%23111' d='M22 16c-5 3-8 7-8 12 0 6 5 10 18 10s18-4 18-10c0-5-3-9-8-12-3 3-6 5-10 5s-7-2-10-5z'/%3E%3Ccircle cx='26' cy='25' r='2' fill='%23fff'/%3E%3Ccircle cx='38' cy='25' r='2' fill='%23fff'/%3E%3Cpath fill='%23fff' d='M32 28c2 0 3 1 3 2s-1 3-3 3-3-2-3-3 1-2 3-2z'/%3E%3C/svg%3E");
}
/* Mediano (bulldog) */
.pt-size--md::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'%3E%3Cpath fill='%23111' d='M18 12l-6 3v6l6 3V12zm28 0l6 3v6l-6 3V12z'/%3E%3Cpath fill='%23111' d='M20 15c-5 3-8 7-8 12 0 8 7 12 20 12s20-4 20-12c0-5-3-9-8-12-3 2-7 4-12 4s-9-2-12-4z'/%3E%3Cpath fill='%23fff' d='M26 29c2 2 4 3 6 3s4-1 6-3c-2-2-4-3-6-3s-4 1-6 3z'/%3E%3C/svg%3E");
}
/* Grande (cocker) */
.pt-size--lg::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'%3E%3Cpath fill='%23111' d='M14 18c0 10 6 18 18 18S50 28 50 18c0-6-3-10-8-13-3 3-6 5-10 5s-7-2-10-5c-5 3-8 7-8 13z'/%3E%3Cpath fill='%23111' d='M18 16c-4 2-6 5-6 9 0 7 3 11 9 12V16h-3zm28 0v21c6-1 9-5 9-12 0-4-2-7-6-9h-3z'/%3E%3Cpath fill='%23fff' d='M32 22c3 0 5 2 5 4s-2 5-5 5-5-3-5-5 2-4 5-4z'/%3E%3C/svg%3E");
}
/* Gigante (gran danés) */
.pt-size--xl::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40'%3E%3Cpath fill='%23111' d='M24 8l-8 7 5 3 5-4 6 4 6-4 5 4 5-3-8-7-8 6-8-6z'/%3E%3Cpath fill='%23111' d='M20 18c-6 4-9 8-9 14 0 6 6 8 21 8s21-2 21-8c0-6-3-10-9-14-4 4-8 6-12 6s-8-2-12-6z'/%3E%3Cpath fill='%23fff' d='M30 29h4v7h-4z'/%3E%3C/svg%3E");
}

.note{display:flex; gap:12px; align-items:flex-start; margin-top:16px; padding:14px 14px; border-radius: 16px; border:1px solid rgba(255,107,90,.22); background: rgba(255,107,90,.06)}
.note__icon{width:10px; height:10px; margin-top:7px; border-radius:50%; background: var(--coral)}

.calendly{border:1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); overflow:hidden}
.cta-row{display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap}

.gallery{display:grid; grid-template-columns: repeat(6, 1fr); gap:10px}
.ph{aspect-ratio: 1/1; border-radius: 14px; border:1px dashed rgba(18,18,18,.18); background: rgba(233,226,215,.25); display:grid; place-items:center; color: rgba(18,18,18,.55); font-size: 13px}

.quote{border:1px solid var(--line); background: rgba(255,255,255,.72); border-radius: var(--radius-sm); padding:16px}
.quote p{margin:0 0 10px}

/* Reseñas estilo Google */
.reviews-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px; align-items:start;}

.review{border:1px solid rgba(18,18,18,.10); background: rgba(255,255,255,.92); border-radius: 16px; padding:16px; box-shadow: 0 10px 24px rgba(18,18,18,.06); transition: transform .18s ease, box-shadow .18s ease}
.review:hover{transform: translateY(-2px); box-shadow: 0 16px 40px rgba(18,18,18,.10)}
.review__head{display:flex; gap:12px; align-items:center; margin-bottom:10px}
.review__avatar{width:28px; height:28px; border-radius: 50%; display:grid; place-items:center; background: rgba(18,18,18,.10); overflow:hidden}
.review__avatar img{width:100%; height:100%; object-fit:cover; display:block}
.review__name{font-weight:700}
.review__meta{display:flex; align-items:center; gap:8px; margin-top:2px}
.stars{letter-spacing:1px; color:#f4b400; font-size:12px}
.review__source{font-size:12px; color: rgba(18,18,18,.55); border:1px solid rgba(18,18,18,.10); padding:2px 8px; border-radius: 999px; background: rgba(239,230,213,.45)}
.review__time{font-size:12px; color: rgba(18,18,18,.55)}
.review__text{margin:0; color: rgba(18,18,18,.72)}
.review__photos{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:12px}
.review__photos img{width:100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; border:1px solid rgba(18,18,18,.10);}

@media (max-width: 980px){
  .reviews-grid{grid-template-columns: 1fr;}
}
@media (max-width: 520px){
  .review__photos{grid-template-columns: 1fr;}
}

/* Reservar cita layout */
.booking-grid{display:grid; grid-template-columns: .9fr 1.1fr; gap:14px; align-items:start}
.note-soft{margin-top:12px; padding:12px 12px; border-radius: 14px; border:1px solid rgba(18,18,18,.10); background: rgba(239,230,213,.45)}
@media (max-width: 980px){
  .booking-grid{grid-template-columns: 1fr;}
}


.map{border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background: rgba(255,255,255,.72)}
.map iframe{width:100%; height:420px; border:0; display:block}

.contact{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}

.footer{padding: 26px 0 86px} /* extra bottom space so WhatsApp button doesn't cover links */
.footer__inner{display:flex; justify-content:space-between; gap:10px; border-top:1px solid var(--line); padding-top:16px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__social{display:flex; justify-content:center; gap:14px; margin-top:12px}
.footer__social a{display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:999px; border:1px solid rgba(18,18,18,.10); background: rgba(255,255,255,.65)}
.footer__social a:hover{background: rgba(239,230,213,.55)}

/* Pricing cards (Subscription page) */
.pricing-grid{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px}

.pricing-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 210, 205, .75);
  border: 1px solid rgba(255,107,90,.22);
  color: rgba(18,18,18,.75);
  font-weight: 700;
  font-size: 12px;
  margin: 0 auto 10px;
}

.pricing-card__old{
  font-size: 13px;
  color: rgba(18,18,18,.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pricing-card__save{
  display:inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--goldRgb), .18);
  border: 1px solid rgba(var(--goldRgb), .38);
  color: rgba(18,18,18,.84);
  font-weight: 650;
  font-size: 12px;
}

.pricing-card--basic{
  background: #ffffff;
  border-color: rgba(18,18,18,.12);
}
.pricing-card--basic::before{
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(18,18,18,.03), transparent 55%),
    radial-gradient(780px 420px at 92% 10%, rgba(18,18,18,.02), transparent 60%);
}
.pricing-card--basic .pricing-card__name{color: rgba(18,18,18,.90)}
.pricing-card--basic .pricing-card__rule{background: rgba(18,18,18,.12)}

/* Estándar: tarjeta blanca (sin dorado protagonista) */
.pricing-card--standard{
  background: #ffffff;
  border-color: rgba(18,18,18,.12);
  box-shadow: 0 14px 34px rgba(18,18,18,.06);
}
.pricing-card--standard::before{
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(18,18,18,.03), transparent 55%),
    radial-gradient(780px 420px at 92% 10%, rgba(18,18,18,.02), transparent 60%);
}
.pricing-card--standard .pricing-card__name{color: rgba(18,18,18,.92)}
.pricing-card--standard .muted{color: rgba(18,18,18,.72)}
.pricing-card--standard .pricing-card__old{color: rgba(18,18,18,.50)}
.pricing-card--standard .pricing-card__price{color: rgba(18,18,18,.92)}
.pricing-card--standard .pricing-card__sub{color: rgba(18,18,18,.70)}
.pricing-card--standard .pricing-card__list li{color: rgba(18,18,18,.78)}
.pricing-card--standard .pricing-card__list li[data-state="off"]{color: rgba(18,18,18,.48)}
.pricing-card--standard .pricing-card__rule{background: rgba(18,18,18,.12)}

/* Premium: destacado con nude + dorado (como estaba Estándar) */
.pricing-card--premium{
  background: #ffffff;
  border: 1px solid rgba(var(--goldRgb),.42);
  box-shadow: 0 18px 50px rgba(18,18,18,.06);
}
.pricing-card--premium::before{
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(239,230,213,.80), transparent 62%),
    radial-gradient(900px 520px at 50% 90%, rgba(239,230,213,.35), transparent 60%),
    linear-gradient(180deg, rgba(239,230,213,.55), rgba(255,255,255,0) 60%);
}
.pricing-card--premium .pricing-card__name{color: rgba(var(--goldRgb),.98)}
.pricing-card--premium .muted{color: rgba(18,18,18,.72)}
.pricing-card--premium .pricing-card__old{color: rgba(18,18,18,.50)}
.pricing-card--premium .pricing-card__price{color: rgba(var(--goldRgb),.95)}
.pricing-card--premium .pricing-card__sub{color: rgba(18,18,18,.70)}
.pricing-card--premium .pricing-card__list li{color: rgba(18,18,18,.78)}
.pricing-card--premium .pricing-card__list li[data-state="off"]{color: rgba(18,18,18,.48)}
.pricing-card--premium .pricing-card__rule{background: linear-gradient(90deg, rgba(var(--goldRgb),.95), rgba(var(--goldRgb),.24))}
@media (max-width: 980px){.pricing-grid{grid-template-columns: repeat(2, minmax(0, 1fr))}}
/* keep side-by-side on mobile too; allow horizontal scroll if needed */
@media (max-width: 560px){
  /* Mobile: stack subscription cards vertically (no horizontal scroll) */
  .pricing-grid{grid-template-columns: 1fr; overflow: visible; padding-bottom:0; scroll-snap-type: none}
  .pricing-card{scroll-snap-align: unset}
}

.pricing-card{
  border-radius: 30px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(18,18,18,.12);
  box-shadow: 0 18px 50px rgba(18,18,18,.06);
  position: relative;
  overflow:hidden;
  text-align:center;
  display:flex;
  flex-direction:column;
}
.pricing-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  opacity:.95;
  pointer-events:none;
}
.pricing-card > *{position:relative}

.pricing-card__top{padding: 8px 8px 10px}
.pricing-card__name{font-weight:750; font-size:16px; color: rgba(18,18,18,.72)}
.pricing-card__rule{height:2px; width:100%; border-radius:999px; margin:10px 0 14px; background: rgba(239,230,213,.9)}
.pricing-card__rule--basic{background: linear-gradient(90deg, rgba(196,120,227,.8), rgba(196,120,227,.22))}
.pricing-card__rule--standard{background: linear-gradient(90deg, rgba(214,177,94,.85), rgba(var(--goldRgb),.30))}
.pricing-card__rule--premium{background: linear-gradient(90deg, rgba(74,185,194,.85), rgba(74,185,194,.22))}

.pricing-card__price{font-size:52px; font-weight:900; line-height:1; letter-spacing:-.03em; margin-top:2px}
.pricing-card__sub{color: rgba(18,18,18,.55); font-size:12px; margin-top:8px}

.pricing-card__list{list-style:none; padding:0; margin:16px 0 0; display:grid; gap:10px; text-align:left; flex: 1 1 auto}
.pricing-card__list li{color: rgba(18,18,18,.78); display:flex; gap:10px; align-items:flex-start}

/* Standard list (keep clean like reference) */
.pricing-card--standard .pricing-card__list li{color: rgba(18,18,18,.72)}
.pricing-card--standard .pricing-card__list li[data-state="off"]{color: rgba(18,18,18,.40)}

.pricing-card__list li::before{
  content:"✓";
  display:inline-flex;
  width:18px; height:18px;
  border-radius:999px;
  align-items:center; justify-content:center;
  background: rgba(255,107,90,.14);
  border: 1px solid rgba(255,107,90,.26);
  color: rgba(255,107,90,.95);
  font-weight:900;
  font-size:12px;
  flex: 0 0 18px;
  margin-top:2px;
}

.pricing-card__list li[data-state="off"]{color: rgba(18,18,18,.48)}
.pricing-card__list li[data-state="off"]::before{
  content:"✕";
  background: rgba(255,107,90,.12);
  border-color: rgba(255,107,90,.22);
  color: rgba(255,107,90,.92);
}

/* Básico: checks dorados, X coral fuerte */
.pricing-card--basic .pricing-card__list li::before{
  background: rgba(var(--goldRgb),.22);
  border-color: rgba(var(--goldRgb),.34);
  color: rgba(var(--goldRgb),.95);
}
.pricing-card--basic .pricing-card__list li[data-state="off"]::before{
  background: rgba(255,107,90,.12);
  border-color: rgba(255,107,90,.24);
  color: rgba(255,107,90,.95);
}

/* Standard card: gold check icons (like reference) */
.pricing-card--standard .pricing-card__list li::before{
  background: rgba(var(--goldRgb),.22);
  border-color: rgba(var(--goldRgb),.34);
  color: rgba(var(--goldRgb),.95);
}
.pricing-card--standard .pricing-card__list li[data-state="off"]::before{
  background: rgba(var(--goldRgb),.08);
  border-color: rgba(var(--goldRgb),.20);
  color: rgba(var(--goldRgb),.52);
}

.pricing-card__cta{margin-top:16px; display:flex; justify-content:center}
.pricing-card__cta .btn{width:100%; justify-content:center}

/* Premium: neon dorado (sin borde negro) */
.pricing-card--premium{
  border-color: rgba(var(--goldRgb),.60);
  box-shadow:
    0 18px 55px rgba(18,18,18,.10),
    0 0 0 1px rgba(var(--goldRgb),.28),
    0 0 18px rgba(var(--goldRgb),.22),
    0 0 46px rgba(var(--goldRgb),.14);
}

/* Responsive */
@media (max-width: 980px){
  h1{font-size: 40px}
  .prices{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .contact{grid-template-columns: 1fr}
  .section__head{flex-direction:column; align-items:flex-start}
  body.page--sub .section__head{align-items:center; text-align:center}
}

@media (max-width: 700px){
  /* Móvil: experiencia tipo app (sin tocar desktop) */

  /* Make tap targets feel app-like */
  .btn{padding:12px 16px; font-size:15px}
  .menu{width:46px; height:46px}
  .menu-panel a{min-height:44px}
  input, select, textarea{font-size:16px}

  /* Smooth scrolling on iOS */
  .menu-panel{-webkit-overflow-scrolling: touch}
  .pricing-grid{-webkit-overflow-scrolling: touch}


  /* Header + marca */
  .nav{display:none}
  .menu{display:inline-block}
  .header__inner{padding:12px 16px}
  .brand{gap:10px}
  .brand__mark{width:30px; height:30px; border-radius: 10px}
  .brand__name{font-size:14px}
  .brand__sub{font-size:11px}

  /* Panel menú full height */
  .menu-panel{display:block}
  :root{ --headerH: 74px; }
  .menu-panel{background: rgba(255,255,255,.92);}
  .menu-panel__inner{grid-template-columns: 1fr; gap:10px; padding:14px 16px 18px}
  .menu-panel a{font-size:16px; color: rgba(18,18,18,.86); padding:12px 14px}

  /* Hero: botones cómodos */
  .hero{padding: 26px 0 72px}
  .hero__actions{display:grid; grid-template-columns: 1fr; gap:10px}
  .hero__actions .btn{width:100%}

  /* Secciones: aire y legibilidad */
  .section{padding: 44px 0}
  h2{font-size: 28px}

  /* Evitar scroll horizontal por tablas */
  .price-table{overflow-x:auto; -webkit-overflow-scrolling: touch}
  .price-table .row{min-width: 360px}

  /* Grids a 1 columna */
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .hero__meta{grid-template-columns: 1fr}

  /* Botón flotante WhatsApp: más compacto */
  .wa-float{right:14px; bottom:14px}
  .wa-float__text{display:none}
}

@media (max-width: 380px){
  .brand__sub{display:none}
  .price-table .row{min-width: 330px}
}
