:root{
  --bg:#ffffff;
  --text:#1b1b1b;
  

 
  --btn:#111111;

  /* marca */
  --brand:#FD426D;    /* tu color principal */
  --accent:#FD426D;

  /* cards */
  --card: rgba(255,255,255,.86);
  
  /* hc */
  
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

input, select, textarea, button {
  font-size: 16px;
}

/* =========================
   TOPBAR (más compacta)
   ========================= */
.topbar{
  background: linear-gradient(90deg, #ff6b8a, #ffbda7);
  color: #1a1a1a;
  font-size: 13px;
  padding: 12px 10px;
  text-align: center;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.topbar p{
  margin: 0;
  font-family: "Bebas Neue", system-ui, sans-serif; /* ✅ más alta */
  font-weight: 400;          /* Bebas no necesita 600 */
  letter-spacing: .8px;      /* ✅ look premium */
  font-size: 18px;           /* ✅ más presencia */
  line-height: 1.05;         /* ✅ compacta y alta */
}

.topbar a{
  color: inherit;
  margin-left: 10px;
  font-family: inherit;      /* ✅ misma fuente */
  font-weight: 500;
  text-decoration: none;
 
}

/* ✅ redes */
.topbar__social{
  display: flex;
  gap: 10px;
}

.topbar__social a{
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, opacity .15s ease;
}

.topbar__social a:hover{
  transform: scale(1.12);
  opacity: .85;
}

/* ✅ en móvil: texto arriba, redes abajo */
@media (max-width: 768px){
  .topbar{
    flex-direction: column;
    gap: 8px;
  }
}


.header__menu{
  background: transparent;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

/* =========================
   HEADER
   ========================= */
.header{
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.header__row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✅ HAMBURGUESA: solo móvil */
.header__menu { display: none !important; }

@media (max-width: 860px) {
  .header__menu { display: inline-flex !important; }
}

.logo{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #111;
  min-width: 170px;
}
.logo__word{
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

/* Search base */
.search{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 100%;
  border: 1px solid var(--line, #ececec);
}
.search i{ color: #9a9a9a; }
.search input{
  border: none;
  outline: none;
  width: 100%;
  font-size: 12px;
}




/* Desktop search (centro y compacto) */
.search.search--desktop{
  flex: 0 0 auto;
  max-width: 360px;
  height: 40px;
  padding: 6px 12px;
}

/* Actions */
.actions{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.action{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-size: 13px; /* ✅ texto 13 */
  white-space: nowrap;
}
.action i{ font-size: 16px; color: #222; }
.action__text{ color: #222; }

.action--cart{
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 0 6px;
}

/* ✅ Categories centradas */
.categories{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;   /* CENTRA el menú */
  align-items: center;
  gap: 22px;
  padding: 10px 18px 14px;
  color: #222;
  font-size: 13px;
  overflow-x: auto;
  white-space: nowrap;
}

/* Links */
.categories a{
  color: #111;
  text-decoration: none;     /* sin subrayado por defecto */
  padding: 8px 0;
  font-weight: 400;
  border-bottom: 2px solid transparent; /* para que no “salte” al hover */
}

/* ✅ Hover: negrita + subrayado negro */
.categories a:hover{
  font-weight: 700;
  border-bottom-color: #111; /* subrayado negro */
}

/* Buttons */
.icon-btn{
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
}
.icon-btn:hover{ background: #f6f6f6; }

@media (max-width: 860px){
  /* lupa */
  .search--mobile .icon-btn{
    color: #9a9a9a;
    opacity: 1;
    filter: none;
  }
  .search--mobile .icon-btn i{
    color: currentColor;
  }
  .search--mobile .icon-btn:hover{
    color: #111;
  }

  /* evita zoom en iOS */
  .search--mobile input{
    font-size: 16px;
  }
}

/* =========================
   DRAWER (mobile menu)
   ========================= */
.drawer{ display: none; }
.drawer[aria-hidden="false"]{ display: block; }
.drawer__overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 50;
}
.drawer__panel{
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 86%;
  max-width: 360px;
  background: #fff;
  z-index: 60;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(-100%);
  transition: transform .25s ease;
}

/* cuando el drawer está abierto */
.drawer[aria-hidden="false"] .drawer__panel{
  transform: translateX(0);
}

.drawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer__links a,
.drawer__cats a{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
}
.drawer__links a:hover,
.drawer__cats a:hover{ background: #f6f6f6; }
.drawer__title{
  margin: 0;
  font-size: 12px;
  color: #666;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.drawer hr{
  border: none;
  border-top: 1px solid var(--line);
  width: 100%;
}

/* =========================
   HERO / CAROUSEL (FULL ANCHO, SOLO IMAGEN)
   ========================= */
.hero{
  background: transparent; /* ✅ sin sobre fondo */
  padding: 0;
}

/* ✅ FULL WIDTH como tu captura */
.carousel{
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.slide{
  display: none;
  padding: 0; /* ✅ sin espacio arriba/abajo */
}
.slide.is-active{ display: block; }

/* ✅ sin tarjeta */
.slide__grid{
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  min-height: auto;
  position: relative;
}

/* para tus dos slides (solo imagen) */
.slide__grid--split,
.slide__grid--imageOnly{
  display: grid;
  grid-template-columns: 1fr;
}

/* ✅ altura controlada (no tan alta) */
.slide__media{
  position: relative;
  background: transparent;
  width: 100%;
  height: 430px;  /* ajusta: 480 / 520 / 560 */
}

/* ✅ imagen llena el banner */
.slide__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* por defecto, oculto el mobile img en desktop */
.slide__img--mobile{ display: none; }

/* ✅ ocultar contenido (solo imagen) */
.slide__content{ display: none; }

/* arrows */
.slide__arrows{
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.arrow{
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.arrow:hover{ background: rgba(255,255,255,.9); }

/* dots */
.dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px 0 18px;
  background: #fff; /* se ve como en tu captura */
}
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.2);
  cursor: pointer;
}
.dot.is-active{ background: rgba(0,0,0,.5); }


/* =========================
   DESKTOP/MOBILE buscadores
   ========================= */
@media (min-width: 861px){
  .header__row--mobileSearch{ display: none; }
}
@media (max-width: 860px){
  .search--desktop{ display: none; }
}

/* =========================
   MOBILE (como tu 2da imagen)
   ========================= */
@media (max-width: 860px){
  .header__row{
    padding: 12px 14px;
    gap: 10px;
  }


  .logo{ min-width: auto; }
  .logo__word{ font-size: 34px; }

  .categories{ display: none; }

  /* actions: solo iconos */
  .action__text{ display: none; }
  .actions{ gap: 10px; }
  .action{ padding: 10px; border-radius: 12px; }

  /* buscador móvil */
  .header__row--mobileSearch{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px 12px;
  }
  .search--mobile{
    width: 100%;
    max-width: none;
    justify-content: space-between;
    padding: 8px 12px;
    height: 44px;
  }
 
  .search--mobile i{ display: none; }

 

  /* usa imagen mobile si la tienes */
  .slide__img--desktop{ display: none; }
  .slide__img--mobile{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .slide__arrows{ padding: 0 10px; }

  .brands__wrap{ padding: 14px; }
  .brand{
    width: 130px;
    min-width: 130px;
    height: 130px;
  }
}

/* =========================
   HERO MOBILE – ALTURA CORRECTA
   ========================= */
@media (max-width: 860px){

  /* El carrusel ocupa todo el ancho */
  .carousel{
    padding: 0;
  }

  /* El slide no agrega espacio extra */
  .slide{
    padding: 0;
  }

  /* El contenedor del banner */
  .slide__media{
    width: 100%;
    aspect-ratio: 4 / 3;   /* 👈 AJUSTA AQUÍ */
    height: auto;
    position: relative;
    overflow: hidden;
  }

  /* Mostrar SOLO imagen móvil */
  .slide__img--desktop{
    display: none;
  }
  .slide__img--mobile{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* llena sin deformar */
  }

  /* Flechas centradas verticalmente */
  .slide__arrows{
    padding: 0 12px;
  }

  /* Dots pegados al banner */
  .dots{
    padding: 10px 0 14px;
  }
}

/* =========================
   ESTILOS RESEÑAS DE CLIENTES
   ========================= */
.resenas{
  padding: 18px 0;
  background: #fff;
}

.resenas__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.resenas__header{
  text-align: center;
  margin-bottom: 18px;
}

.resenas__title{
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 17px;
}

.resenas__grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.resena{
  border: 1px solid #f1f1f1;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.resena__stars{
  color: #000;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.resena__name{
  font-weight: 800;
  font-size: 14px;
  margin: 0;
}

.resena__text{
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

.resenas__more{
  margin-top: 18px;
  text-align: center;
 
}

.resenas__link{
  font-weight: 800;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resenas__link:hover{
  opacity: .85;
}

/* Responsive */
@media (min-width: 640px){
  .resenas__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .resenas__title{
    font-size: 26px;
  }
}

@media (min-width: 1024px){
  .resenas__grid{
    grid-template-columns: repeat(3, 1fr);
  }
}



/* =========================
   GALERIA
   ========================= */

   
.galeria{
  padding: 48px 0;
  background:#fff;
}

.galeria__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.galeria__header{
  text-align:center;
  margin-bottom: 18px;
}

.galeria__title{
  font-family:"Oswald", system-ui, sans-serif;
  font-weight:700;
  font-size:17px;
  letter-spacing:.2px;
  margin:0;
}

.galeria__subtitle{
  margin: 8px auto 0;
  max-width: 760px;
  color:#6b7280;
  font-size: 13px;
  line-height:1.45;
}

/* Masonry con columnas CSS */
.masonry{
  column-count: 2;
  column-gap: 12px;
}

@media (min-width: 640px){
  .masonry{ column-count: 3; }
  .galeria__title{ font-size:26px; }
}

@media (min-width: 1024px){
  .masonry{ column-count: 4; }
}

.gal-item{
  display:block;
  break-inside: avoid;
  margin: 0 0 12px;
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gal-item:hover{
  transform: translateY(-2px);
  border-color: rgba(10,123,255,.35);
  
}

.gal-item img{
  display:block;
  width:100%;
  height:auto;
  transition: transform .35s ease;
  will-change: transform;
}

.gal-item:hover img{
  transform: scale(1.03);
}

.galeria__cta{
  margin-top: 18px;
  text-align:center;
}

.galeria__link{
  display:inline-block;
  font-weight:800;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== LIGHTBOX ===== */
.no-scroll{ overflow:hidden; }

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 80;
}

.lightbox.is-hidden{
  display:none;
}

.lightbox__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.82);
  border:0;
}

.lb-btn{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  color:#fff;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px) saturate(140%);
  transition: background .2s ease, transform .1s ease;
}

.lb-btn:hover{ background: rgba(255,255,255,.22); }
.lb-btn:active{ transform: scale(.98); }

.lightbox__close{ position:absolute; top:12px; right:12px; }
.lightbox__prev{ position:absolute; left:12px; top:50%; transform: translateY(-50%); }
.lightbox__next{ position:absolute; right:12px; top:50%; transform: translateY(-50%); }

.lightbox__shell{
  position: relative;
  height: 100%;
  display:grid;
  place-items:center;
  padding: 16px;
  pointer-events:none;
}

.lightbox__viewer{
  width: 100%;
  max-width: 980px;
  max-height: 86vh;
  pointer-events:auto;
}

.lightbox__viewer img{
  width:100%;
  max-height:86vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}


/* =========================
   FOOTER
   ========================= */
.footer{
  background: #000;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #fff;
}

.footer__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px 22px;
}

.footer__grid{
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .footer__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  .footer__grid{ grid-template-columns: repeat(4, 1fr); }
}

.footer__logo img{
  height: 80px;
  width: auto;
  display: block;
}

.footer__desc{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
  max-width: 320px;
}

.footer__chips{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip{
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: 12px;
}

.footer__title{
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 14px;
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__list a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 13px;
}

.footer__list a:hover{ color: #fff; }

.footer__muted{
  margin: 0 0 10px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.footer__contact{
  display: grid;
  gap: 10px;
}

.footer__contactLink{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 13px;
}

.footer__contactLink:hover{ color: #fff; }

.footer__icon{
  width: 20px;
  display: inline-flex;
  justify-content: center;
  opacity: .95;
}

.footer__social{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer__social a{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}

.footer__social a:hover{
  background: rgba(255,255,255,.16);
}

/* Newsletter */
.footer__newsletter{
  margin-top: 26px;
}

.newsletter{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .newsletter{
    grid-template-columns: minmax(240px,360px) 1fr auto;
    align-items: center;
  }
}

.newsletter__title{
  margin: 0;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}

.newsletter__sub{
  margin: 4px 0 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

.newsletter input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: #fff;
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
}

.newsletter input::placeholder{
  color: rgba(255,255,255,.45);
}

.newsletter input:focus{
  border-color: rgba(253,66,109,.55);
  box-shadow: 0 0 0 3px rgba(253,66,109,.20);
}

.newsletter button{
  border: 1px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: #000;
  
}

.newsletter button:hover{ opacity: .92; }

.newsletter__msg{
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 12px;
}

@media (min-width: 768px){
  .newsletter__msg{
    grid-column: 1 / -1;
  }
}

/* Bottom */
.footer__bottom{
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid;
  gap: 10px;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .footer__bottom{
    grid-template-columns: 1fr auto auto;
  }
}

.footer__copy,
.footer__powered{
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  text-decoration: none;
}

.footer__powered:hover{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links a{
  color: rgba(255,255,255,.60);
  text-decoration: none;
  font-size: 13px;
}

.footer__links a:hover{ color: #fff; }

#footer .footer__payments{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
  display: none !important;
}


/* Tarjeta de cada pago */
.pay-card{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;              /* ✅ más grande */
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);   /* default */
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}

.pay-logo{
  display:block;
  height:28px;   /* ✅ más grande */
  width:auto;
  object-fit:contain;
}

/* Fondos tipo “ejemplo” */
.pay-card--mc{
  background:#fff; /* azul oscuro */
  
}
.pay-card--visa{
  background:#fff; /* azul tipo visa */
 
}

/* Yape / Plin con card elegante (puedes cambiar colores) */
.pay-card--yape{
  background: #fff
}
.pay-card--plin{
  background:#fff;
}

/* Ajuste fino de tamaños (opcional) */
.pay-logo--visa{ height:24px; }       /* visa suele verse grande */
.pay-logo--mc{ height:26px; }         /* mastercard ok */


/* Por si algún svg se ve “muy grande” visualmente */


/* En móviles: un poquito más compacto */
@media (max-width: 860px){
  .pay-logo{ height: 24px; padding: 0; }
  .pay-card{ height: 42px; padding: 0 12px; }
}

  .pay-card{
    height:42px;
    padding:0 12px;
  }




/* =========================
   servicios seccion
   ========================= */

:root{
  --hc-bg: #fbefe6;            /* crema */
  --hc-card: #f3f0ed;          /* gris muy suave */
  --hc-white: #ffffff;
  --hc-text: #1f2937;
  --hc-muted: #6b7280;
  --hc-border: rgba(31,41,55,.08);
  
  --hc-accent: #FD426D;        /* botón naranja */
}

.hc{
  padding: 22px 0;
  

}

.hc__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hc__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 6px 2px 12px;
}

.hc__title{
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 17px;

}

.hc__nav{
  display:flex;
  align-items:center;
  gap: 10px;
}

.hc__navBtn{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--hc-border);
  background: rgba(255,255,255,.55);
  cursor: pointer;
  display:grid;
  place-items:center;
  font-size: 18px;
  color: #6b7280;
}

.hc__navBtn--accent{
  background: var(--hc-accent);
  color: #fff;
  border-color: rgba(0,0,0,.04);
}

.hc__viewport{
  overflow: hidden;
  border-radius: 16px;
}

.hc__track{
  display:flex;
  gap: 18px;
  padding: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hc__track::-webkit-scrollbar{ height: 10px; }
.hc__track::-webkit-scrollbar-thumb{ background: rgba(31,41,55,.14); border-radius: 999px; }
.hc__track::-webkit-scrollbar-track{ background: transparent; }

/* Card base */
.hcCard{
  flex: 0 0 auto;
  width: 320px;
  border-radius: 16px;
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  box-shadow: var(--hc-shadow);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

/* Banner grande (primera card) */
.hcCard--banner{
  width: 360px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hcCard--banner .hcCard__link{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  box-shadow: var(--hc-shadow);
}
.hcCard--banner .hcCard__img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display:block;
}

/* Media: imagen arriba */
.hcCard__media{
  height: 210px;
  background: var(--hc-card);
  display:grid;
  place-items:center;
}
.hcCard__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  padding: 18px;
}

/* Cuerpo: texto abajo */
.hcCard__body{
  padding: 14px 14px 16px;
}

.hcCard__brand{
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 700;
  color: #9ca3af;
}

.hcCard__name{
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #374151;
  min-height: 36px;
}

.hcCard__price{
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* corazón */
.hcCard__fav{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(228,106,90,.25);
  background: rgba(255,255,255,.75);
  color: var(--hc-accent);
  cursor: pointer;
  display:grid;
  place-items:center;
  font-size: 16px;
  line-height: 1;
}
.hcCard__fav.is-on{
  background: rgba(228,106,90,.10);
  border-color: rgba(228,106,90,.35);
}

/* Responsive */
@media (max-width: 900px){
  .hcCard{ width: 290px; }
  .hcCard--banner{ width: 320px; }
  .hcCard--banner .hcCard__img{ height: 380px; }
  .hc__title{  font-size: 26px;
  }

  
}
@media (max-width: 560px){
  .hc__track{ padding: 14px; gap: 14px; }
  .hcCard{ width: 260px; }
  .hcCard--banner{ width: 290px; }
  .hcCard__media{ height: 190px; }
}





html { -webkit-text-size-adjust: 100%; }

@media (max-width: 1024px){
  input, select, textarea{
    font-size: 16px !important; /* ✅ evita zoom al completar */
  }
}




/* Safari iOS: evita el “tint azul” en botones */
@supports (-webkit-touch-callout: none) {

  /* hamburguesa + flechas */
  #menuBtn,
  .header__menu,
  .icon-btn,
  .arrow {
    color: #111 !important;          /* tu color */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }

  /* fuerza que el icono (FontAwesome) herede el color del botón */
  #menuBtn i,
  .header__menu i,
  .icon-btn i,
  .arrow i {
    color: currentColor !important;
  }
}




/* =========================
   MARCAS (marquee infinito) - CORREGIDO
   (más angosto + ~5 visibles + sin duplicados raros)
   ========================= */
.brands{
  background:#fff;
  padding: 18px 0 26px;
}

.brands__wrap{
  max-width: 980px;        /* ✅ más angosto */
  margin: 0 auto;
  padding: 0 16px;
}

.brands__title{
  font-family:"Oswald", system-ui, sans-serif;
  font-weight:700;
  font-size: 17px;
  margin: 0 0 12px;
  text-align:center;
}

/* “ventana” del carrusel */
.brands__marquee{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 8px 0;

  max-width: 820px;        /* ✅ ventana más angosta */
  margin: 0 auto;
}

/* “fade” suave a los lados */
.brands__marquee:before,
.brands__marquee:after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 34px;             /* ✅ menos ancho (antes 64) */
  z-index: 2;
  pointer-events:none;
}
.brands__marquee:before{
  left:0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.brands__marquee:after{
  right:0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

/* Track (fila infinita) */
.brands__track{
  display:flex;
  flex-wrap: nowrap;
  align-items:center;
  gap: 18px;               /* ✅ un poco menos gap */
  width: max-content;
  animation: brandsScroll 18s linear infinite; /* ✅ un poco más rápido */
  will-change: transform;
}

/* Cada logo en “círculo” */
.brand{
  width: 112px;            /* ✅ más chico (antes 128) */
  height: 112px;
  border-radius: 999px;
  background: #f6f7f9;
  display:flex;
  align-items:center;
  justify-content:center;
  
  flex: 0 0 auto;          /* ✅ evita que se achique */
}

.brand img{
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .9;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.brand:hover img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Animación (requiere SET 2 = SET 1 duplicado igualito) */
@keyframes brandsScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 860px){
  .brands__wrap{ max-width: 100%; }
  .brands__marquee{ max-width: 100%; }

  .brands__title{ font-size: 16px; }
  .brand{ width: 96px; height: 96px; }
  .brands__track{ gap: 14px; animation-duration: 16s; }

  .brands__marquee:before,
  .brands__marquee:after{ width: 24px; }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .brands__track{ animation: none; }
}



@media (min-width: 640px){
  .resenas__title,
  .brands__title,
  .hc__title{
    font-size: 26px;
  }
}




/* =========================
   SEARCH SUGGEST (Header) - CORREGIDO
   (incluye botón "Cerrar" arriba derecha)
   ========================= */
.searchBox{
  position: relative;
  width: 100%;
  max-width: 360px; /* igual que tu search desktop */
}

/* en mobile que ocupe todo */
.searchBox--mobile{ max-width: none; }

/* Dropdown */
.searchSuggest{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);

  /* ✅ espacio superior para el botón cerrar */
  padding: 12px;
  padding-top: 48px;

  z-index: 60;         /* ✅ por encima del hero */
  display: none;
}

.searchSuggest.is-open{ display: block; }

/* ✅ Botón Cerrar (top-right) */
.searchSuggest__close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.searchSuggest__close:hover{
  background: #f7f7f8;
  border-color: rgba(253,66,109,.28);
}

/* si prefieres que se abra con hover en desktop */
@media (hover:hover){
  .searchBox--desktop:hover .searchSuggest{
    display: block;
  }
}

.searchSuggest__section + .searchSuggest__section{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15,23,42,.08);
}

.searchSuggest__title{
  font-size: 12px;
  font-weight: 800;
  color: #111;
  margin: 0 0 10px;
}

.searchSuggest__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.searchChip{
  border: 1px solid rgba(15,23,42,.10);
  background: #f7f7f8;
  color: #111;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.searchChip:hover{
  transform: scale(1.04);
  background: #fff;
  border-color: rgba(253,66,109,.35);
}

/* Mobile: dropdown más pegado */
@media (max-width: 860px){
  .searchSuggest{
    top: calc(100% + 8px);
    border-radius: 14px;
    padding: 10px;
    padding-top: 46px; /* mantiene espacio para cerrar */
  }

  .searchSuggest__close{
    top: 8px;
    right: 8px;
    padding: 7px 11px;
  }
}

/* ✅ Si el usuario cerró manualmente, bloquea el hover en desktop */
.searchBox.is-locked .searchSuggest{
  display: none !important;
}

@media (hover:hover){
  .searchBox--desktop:hover .searchSuggest{
    display: block;
  }
  /* ✅ pero si está locked, no abrir por hover */
  .searchBox--desktop.is-locked:hover .searchSuggest{
    display: none !important;
  }
}



/* =========================
   MEDIOS DE PAGO
   ========================= */
.payMethods{
  background: #fff;
  padding: 22px 0 26px;
}

.payMethods__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.payMethods__title{
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .2px;
  text-align: center;
  margin: 0 0 14px;
}

.payMethods__grid{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.payMethods__item{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  padding: 0 24px;
  border-radius: 14px;
  background: #fff;
  
}

.payMethods__item img{
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* responsive */
@media (max-width: 860px){
  .payMethods{ padding: 18px 0 22px; }
  .payMethods__item{ height: 60px; padding: 0 16px; }
  .payMethods__item img{ height: 32px; }
}

@media (min-width: 640px){
  .payMethods__title{ font-size: 26px; }
}

/* =========================
   SERVICES (grid ecommerce)
   Desktop: 4 columnas / Mobile: 2 columnas
   ========================= */

/* (Opcional) si no tienes var --line definido arriba */


/* contenedor (por si no lo tienes definido aún) */
.svc-section{ background:#fff; padding: 24px 0; }
.svc-wrap{ max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.svc-head{ margin-bottom: 10px; }
.svc-title{
  margin: 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}
.svc-subtitle{
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

/* mini barra */
.svc-controls{ margin-top: 14px; }
.svc-mini{ display:flex; gap: 12px; align-items:center; flex-wrap: wrap; }
.svc-cartBtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.svc-cartText{ font-weight: 800; font-size: 13px; color:#111; }
.svc-badge{
  min-width: 20px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: var(--brand);
  color:#fff;
  font-size: 12px;
  font-weight: 900;
}
.svc-goReserva{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
}
.svc-goReserva:hover{ opacity: .92; }

/* GRID: desktop 4, tablet 3, mobile 2 */
.svc-grid{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:16px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width:1100px){
  .svc-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width:860px){
  .svc-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
}

/* CARD tipo ecommerce */
.svc-card{
  position:relative;
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
  border-radius:18px;
  overflow:hidden;
 
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.svc-card:hover{
  transform: translateY(-2px);
 
}

/* Imagen */
.svc-media{
  width: 100%;
  aspect-ratio: 3 / 4;      /* ajusta: 16/9, 4/3, 1/1, etc */
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f3f4f6; 
}
.svc-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* clave */
  object-position: center;    /* o: top center si quieres */
}

/* Body */
.svc-body{ padding: 14px 14px 16px; }
.svc-brand{
  margin:0 0 8px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 800;
  color:#9ca3af;
  text-transform: uppercase;
}
.svc-name{
  margin:0;
  font-size:14px;
  line-height:1.25;
  font-weight:900;
  color:#111;
}
.svc-desc{
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #6b7280;

  display: -webkit-box;
  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2; /* Safari/Chrome */
  line-clamp: 2;         /* estándar */

  overflow: hidden;
  min-height: 36px;
}
.svc-foot{ margin-top: 12px; }
.svc-price{
  display:inline-block;
  font-size:13px;
  font-weight:900;
  color:#111;
}

/* Favorito flotante */
.svc-fav{
  position:absolute;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.svc-fav:hover{ transform: scale(1.04); }
.svc-fav .fav-on{ display:none; color: var(--brand); }
.svc-fav.is-on{ border-color: rgba(253,66,109,.28); }
.svc-fav.is-on .fav-off{ display:none; }
.svc-fav.is-on .fav-on{ display:inline; }


.svc-fav{
  color: #111;                 /* color base del corazón (OFF) */
  -webkit-appearance: none;
  appearance: none;
}

/* Oculta tu layout antiguo para que no duplique */
.svc-top, .svc-meta{ display:none !important; }
.svc-bottom{ display:none !important; }

/* Drawer Carrito (si ya lo tienes, puedes omitir este bloque) */
.svc-drawer{ position: fixed; inset:0; display:none; z-index: 9999; }
.svc-drawer.is-open{ display:block; }
.svc-drawerOverlay{ position:absolute; inset:0; background: rgba(0,0,0,.38); }
.svc-drawerPanel{
  position:absolute; top:0; right:0;
  width: min(420px, 92vw);
  height:100%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,0,0,.08);
  box-shadow: -20px 0 40px rgba(0,0,0,.20);
  display:flex; flex-direction:column;
}



/* =========================
   RESERVA (SIN TAILWIND)
   ========================= */
.rsv{
  background: #ffffff;
  min-height: 100svh;
  display: grid;
  place-items: start center;
  padding: 18px 12px;
}

.rsvCard{
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 18px;
 
  overflow: hidden;
}

.rsvHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 18px 18px 10px;
}

.rsvLogo{
  height: 46px;
  width: auto;
  object-fit: contain;
}

.rsvPowered{
  text-align:right;
  line-height: 1.1;
  margin-top: 4px;
}

.rsvPowered__small{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.rsvPowered__strong{
  font-size: 12px;
  color: #334155;
}

.rsvIntro{
  text-align:center;
  padding: 0 18px 14px;
  color: #64748b;
}

.rsvIntro__bold{
  font-weight: 900;
  color: #0f172a;
}

.rsvDivider{
  height: 1px;
  background: rgba(15,23,42,.08);
}

.rsvBody{
  padding: 16px;
}

.rsvSummary{
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.75);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}

.rsvSummaryRow{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.rsvThumb{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  object-fit: cover;
  background: #fff;
  flex: 0 0 auto;
}

.rsvSummaryMeta{
  min-width: 0;
}

.rsvTag{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
  margin-bottom: 4px;
}

.rsvTitle{
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rsvDesc{
  font-size: 12.5px;
  color: #64748b;
  margin-top: 4px;
}

.rsvChips{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.rsvChip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
}

.rsvH2{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.rsvMonth{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 900;
}

.rsvDays{
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.rsvDayBtn{
  min-width: 72px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  cursor:pointer;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 900;
  color: #64748b;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 4px;
  -webkit-tap-highlight-color: transparent;
}

.rsvDayBtn strong{
  font-size: 18px;
  letter-spacing: 0;
  color: #0f172a;
}

.rsvDayBtn.is-on{
  background: var(--brand);
  border-color: transparent;
  color: #fff;
}

.rsvDayBtn.is-on strong{ color:#fff; }

.rsvLabel{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 900;
  margin: 8px 0 8px;
}

.rsvHelp{
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 600;
}

.rsvHelpSmall{
  font-size: 11.5px;
  color: #64748b;
}

.rsvSlots{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
@media (min-width: 520px){
  .rsvSlots{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.rsvSlotBtn{
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  cursor:pointer;
  font-size: 14px;
  font-weight: 700;
  color:#0f172a;
  -webkit-tap-highlight-color: transparent;
}

.rsvSlotBtn:hover{ background:#f8fafc; }

.rsvSlotBtn.is-on{
  background: var(--brand);
  color:#fff;
  border-color: transparent;
}

.rsvSlotBtn.is-disabled{
  opacity: .40;
  pointer-events: none;
}

.rsvActions{
  margin-top: 16px;
}

.rsvBtn{
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 14px;
  cursor:pointer;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}

.rsvBtn--primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(253,66,109,.25);
}

.rsvBtn:disabled{
  background: #f1f5f9;
  color: #94a3b8;
  box-shadow: none;
  cursor: not-allowed;
}

.rsvStep.is-hidden{ display:none; }

.rsvTopRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 4px 0 10px;
}

.rsvBack{
  border:0;
  background: transparent;
  color: #475569;
  font-weight: 800;
  cursor:pointer;
}

.rsvPills{
  display:flex;
  gap: 8px;
  align-items:center;
}

.rsvPill{
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color:#475569;
  font-size: 12px;
  font-weight: 900;
}

.rsvPill--on{
  background: var(--brand);
  color:#fff;
}

.rsvResume{
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.75);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}

.rsvResume__label{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 900;
  margin-bottom: 6px;
}

.rsvResume__service{
  font-size: 14px;
  font-weight: 900;
  color:#0f172a;
}

.rsvResume__date{
  font-size: 12.5px;
  color:#64748b;
  margin-top: 4px;
  font-weight: 700;
}

.rsvFormCard{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px;
  background:#fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
}

.rsvFormHead{ margin-bottom: 10px; }
.rsvH3{
  margin:0;
  font-size: 14px;
  font-weight: 900;
  color:#0f172a;
}
.rsvSmall{
  margin: 6px 0 0;
  color:#64748b;
  font-size: 12px;
  font-weight: 600;
}

.rsvGrid2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 520px){
  .rsvGrid2{ grid-template-columns: 1fr 1fr; }
}

.rsvField{
  display:grid;
  gap: 6px;
  margin: 10px 0;
  color:#475569;
  font-size: 12px;
  font-weight: 900;
}

.rsvField small{
  font-size: 11px;
  color:#94a3b8;
  font-weight: 700;
}

.rsvInput, .rsvTextarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color:#0f172a;
  background:#fff;
}

.rsvTextarea{ resize: vertical; min-height: 84px; }

.rsvInput:focus, .rsvTextarea:focus{
  border-color: rgba(253,66,109,.55);
  
}

.rsvCheckRow{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 10px 0 12px;
  color:#475569;
  font-size: 12.5px;
  font-weight: 700;
}

.rsvCheckRow input{
  margin-top: 2px;
  accent-color: var(--brand);
}


.question {
 font-family:"Oswald", system-ui, sans-serif;
  font-weight:700;
  font-size:17px;
  letter-spacing:.2px;
  margin:0;
  color: #1b1b1b;;
}


.reserva-title{
    margin: 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #1b1b1b;;
}


.sub_time{
  margin: 8px auto 0;
  max-width: 760px;
  color:#1b1b1b;;
  font-size: 13px;
  line-height:1.45;
}


.time{
    margin: 0;
  font-family: "Bebas Neue", system-ui, sans-serif; /* ✅ más alta */
  font-weight: 200;          /* Bebas no necesita 600 */
  letter-spacing: .8px;      /* ✅ look premium */
  font-size: 18px;           /* ✅ más presencia */
  line-height: 1.05;
  color: #94a3b8         /* ✅ compacta y alta */
}

/* Evita zoom iOS en inputs */
@media (max-width: 860px){
  input, select, textarea, button{ font-size: 16px; }
}

/* SweetAlert look */
.sw-pop{ width: min(520px, 92vw) !important; border-radius: 16px !important; }
.sw-confirm{ background: var(--brand) !important; color:#fff !important; border-radius: 10px !important; }
.sw-btn{ padding: .7rem 1rem !important; font-weight: 900 !important; }
.sw-toast{ width: min(380px, 92vw) !important; border-radius: 12px !important; }

/* Focus highlight (JS lo usa) */
.rsvFocus{
  
  border-color: rgba(253,66,109,.55) !important;
}


/* =========================
   RESERVA — Responsive móvil
   (pegar al final del CSS)
   ========================= */

/* 1) Base móvil (hasta 520px aprox) */
@media (max-width: 520px){

  /* Que el layout use todo el ancho */
  .rsv{
    padding: 0;                 /* elimina padding exterior */
    place-items: start stretch;  /* que el card se estire */
    background:#f6f7fb;          /* opcional: tu fondo */
  }

  /* Card a pantalla completa en móvil */
  .rsvCard{
    max-width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;            /* si quieres full clean */
  }

  /* Padding más compacto */
  .rsvHeader{ padding: 16px 16px 10px; }
  .rsvBody{ padding: 14px; }
  .rsvIntro{ padding: 0 16px 12px; }

  /* Logo + powered más equilibrado */
  .rsvLogo{ height: 42px; }
  .rsvPowered__small{ font-size: 10px; }
  .rsvPowered__strong{ font-size: 11px; }

  /* Titulares / textos */
  .rsvH2{ font-size: 17px; }
  .rsvMonth{ font-size: 11px; }
  .rsvHelp{ font-size: 12px; }
  .rsvHelpSmall{ font-size: 11px; }

  /* Summary: que no reviente */
  .rsvTitle{
  font-size: 15px;
  white-space: normal;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  line-clamp: 2;     /* fallback moderno (algunos navegadores) */
  overflow: hidden;
}

  /* Chips más chicos */
  .rsvChip{
    font-size: 11.5px;
    padding: 6px 9px;
  }

  /* Scroll horizontal de días más suave y sin “rebote feo” */
  .rsvDays{
    gap: 8px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .rsvDayBtn{
    min-width: 68px;
    padding: 11px 10px;
    scroll-snap-align: start;
  }
  .rsvDayBtn strong{ font-size: 17px; }

  /* Slots: 2 columnas siempre en móvil */
  .rsvSlots{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 9px;
  }
  .rsvSlotBtn{
    padding: 12px 10px;
    font-size: 14px;
  }

  /* Botón principal más “tap-friendly” */
  .rsvBtn{
    padding: 15px 14px;
    font-size: 12.5px;
  }

  /* Form card: menos sombra (si se ve pesado en móvil) */
  .rsvFormCard{
    box-shadow: none;
  }

  /* Inputs: evita zoom iOS (clave) */
  .rsvInput, .rsvTextarea{
    font-size: 16px;
  }
}

/* 2) “Phablet” / tablets pequeñas */
@media (min-width: 521px) and (max-width: 860px){
  .rsv{ padding: 14px 12px; }
  .rsvCard{ max-width: 560px; border-radius: 18px; }
}




