/* ============================================
   SUALISSE — Identidad visual
   Verde botella · Ámbar de frasco · Papel crema
============================================ */
:root {
  --verde-osc: #7E434E;
  --verde: #B06A76;
  --verde-suave: #F9E8E6;
  --ambar: #C4737F;
  --ambar-osc: #A55561;
  --crema: #FBF3F1;
  --tinta: #4A3238;
  --blanco: #FFFFFF;
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--tinta);
  background: var(--blanco);
}
h1,h2,h3,h4,h5,.marca-texto { font-family: 'Fraunces', serif; }

/* ---- Navegación ---- */
.navbar-spa { background: var(--verde-osc); padding: .8rem 0; }
.navbar-spa .nav-link { color: #F9EAEA; font-weight: 500; }
.navbar-spa .nav-link:hover { color: #F5CBD2; }
.marca-logo { width: 34px; height: 34px; margin-right: .55rem; vertical-align: middle; }
.marca-texto { color: var(--blanco); font-size: 1.25rem; font-weight: 700; font-family: Georgia, 'Times New Roman', serif; font-style: italic; }
.marca-texto em { font-style: italic; color: #F5CBD2; }

/* ---- Botones ---- */
.btn-ambar { background: var(--ambar); color: #fff; font-weight: 700; border: none; }
.btn-ambar:hover { background: var(--ambar-osc); color: var(--blanco); }
.btn-verde { background: var(--verde); color: var(--blanco); font-weight: 700; border: none; }
.btn-verde:hover { background: var(--verde-osc); color: var(--blanco); }
.btn-borde { border: 2px solid #F9EAEA; color: #F9EAEA; font-weight: 600; }
.btn-borde:hover { background: rgba(255,255,255,.12); color: var(--blanco); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  padding: 8rem 0 5rem;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(196,115,127,.25), transparent 50%),
    linear-gradient(160deg, var(--verde-osc) 0%, var(--verde) 100%);
  color: #FDF4F2;
}
.etiqueta-sup {
  letter-spacing: .22em; text-transform: uppercase; font-size: .78rem;
  color: #F5CBD2; font-weight: 700; margin-bottom: 1rem;
}
.titulo-hero { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; }
.titulo-hero .acento { color: #F5CBD2; font-style: italic; }
.lead-hero { font-size: 1.15rem; max-width: 34rem; margin-top: 1rem; opacity: .92; }
.datos-hero span { font-size: .92rem; opacity: .85; }

/* Etiqueta de frasco (firma visual) */
.frasco-marco {
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px; padding: 12px; max-width: 340px; margin: auto;
}
.frasco-etiqueta {
  background: var(--crema); color: var(--tinta);
  border: 2px solid var(--ambar); border-radius: 8px;
  text-align: center; padding: 2.2rem 1.6rem; position: relative;
}
.frasco-etiqueta::before, .frasco-etiqueta::after {
  content: ''; position: absolute; left: 10px; right: 10px; height: 1px; background: var(--ambar);
}
.frasco-etiqueta::before { top: 8px; } .frasco-etiqueta::after { bottom: 8px; }
.frasco-num { letter-spacing: .3em; font-size: .72rem; color: var(--ambar-osc); font-weight: 700; }
.frasco-icono { font-size: 2.6rem; color: var(--verde); display: block; margin: .8rem 0; }
.frasco-etiqueta h3 { font-weight: 700; color: var(--verde-osc); }
.frasco-etiqueta p { font-size: .9rem; margin-bottom: 1rem; }
.frasco-sello {
  display: inline-block; border: 1px solid var(--verde); border-radius: 20px;
  padding: .2rem .9rem; font-size: .75rem; color: var(--verde);
}

/* ---- Secciones ---- */
.seccion { padding: 5.5rem 0; }
.seccion-verde { background: var(--verde-osc); }
.seccion-crema { background: var(--crema); }
.etiqueta-seccion {
  letter-spacing: .22em; text-transform: uppercase; font-size: .75rem;
  color: var(--ambar-osc); font-weight: 700;
}
.etiqueta-seccion.clara { color: #F5CBD2; }
.titulo-seccion { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; color: var(--verde-osc); margin-bottom: 1rem; }
.seccion-verde .titulo-seccion { color: var(--blanco); }

/* ---- Tarjetas ---- */
.tarjeta-valor {
  background: var(--verde-suave); border-radius: 12px; padding: 1.4rem; height: 100%;
  border-left: 4px solid var(--ambar);
}
.tarjeta-valor i { font-size: 1.6rem; color: var(--verde); }
.tarjeta-valor h5 { margin: .6rem 0 .3rem; color: var(--verde-osc); }
.tarjeta-valor p { font-size: .9rem; margin: 0; }

.tarjeta-servicio {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 1.8rem 1.4rem; height: 100%; color: #F9EAEA;
  transition: transform .2s, border-color .2s;
}
.tarjeta-servicio:hover { transform: translateY(-4px); border-color: var(--ambar); }
.tarjeta-servicio i { font-size: 2rem; color: #F5CBD2; }
.tarjeta-servicio h5 { margin: .8rem 0 .4rem; color: var(--blanco); }
.tarjeta-servicio p { font-size: .9rem; margin: 0; opacity: .85; }

/* ---- Formularios ---- */
.tarjeta-form {
  background: var(--blanco); border: 1px solid #F0DCDD; border-radius: 16px;
  padding: 2rem; box-shadow: 0 8px 30px rgba(126,67,78,.07);
}
.form-control, .form-select { border-color: #E8CDD0; padding: .65rem .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--verde); box-shadow: 0 0 0 .2rem rgba(176,106,118,.15); }
.opcion-via { cursor: pointer; }
.opcion-via input { display: none; }
.opcion-via span {
  display: inline-block; border: 2px solid #E8CDD0; border-radius: 30px;
  padding: .5rem 1.3rem; font-weight: 600; transition: all .15s;
}
.opcion-via input:checked + span { border-color: var(--verde); background: var(--verde-suave); color: var(--verde-osc); }

/* ---- Contacto ---- */
.lista-contacto { list-style: none; padding: 0; }
.lista-contacto li { display: flex; gap: 1rem; margin-bottom: 1.3rem; }
.lista-contacto i { font-size: 1.3rem; color: var(--ambar-osc); }
.lista-contacto a { color: var(--verde); font-weight: 600; }

/* ---- Pie ---- */
.pie { background: var(--verde-osc); color: #F3DFE0; padding: 2.5rem 0; }
.pie a { color: #F3DFE0; text-decoration: none; }
.pie a:hover { color: #F5CBD2; }
.pie-marca { font-size: 1.15rem; }
.enlace-admin { opacity: .6; font-size: .8rem; }

/* ---- WhatsApp flotante ---- */
.btn-flotante-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 1050;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .15s;
}
.btn-flotante-wa:hover { transform: scale(1.08); color: #fff; }

/* ---- Tienda ---- */
.tarjeta-producto {
  background: var(--crema); border: 1.5px solid #EED4D6; border-radius: 12px;
  padding: 1.4rem; height: 100%; position: relative; transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.tarjeta-producto:hover { border-color: var(--ambar); transform: translateY(-3px); }
.producto-tapa {
  width: 34px; height: 10px; background: var(--ambar); border-radius: 4px 4px 0 0;
  margin: -1.4rem auto .8rem;
}
.producto-foto {
  width: calc(100% + 2.8rem); margin: -1.4rem -1.4rem 1rem;
  height: 170px; object-fit: cover; border-radius: 10px 10px 0 0;
}
.producto-cat { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ambar-osc); font-weight: 700; }
.producto-nombre { font-size: 1.05rem; font-weight: 700; color: var(--verde-osc); margin: .3rem 0; }
.producto-desc { font-size: .87rem; flex-grow: 1; }
.producto-precio { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 700; color: var(--verde); }

/* Carrito */
.badge-carrito {
  position: absolute; top: -6px; right: -8px; background: var(--ambar);
  color: var(--verde-osc); border-radius: 50%; font-size: .68rem;
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.item-carrito { display: flex; justify-content: space-between; align-items: center; padding: .7rem 0; border-bottom: 1px dashed #E8CDD0; }
.opcion-entrega { cursor: pointer; display: block; }
.opcion-entrega input { display: none; }
.opcion-entrega .caja {
  border: 2px solid #E8CDD0; border-radius: 12px; padding: 1rem; transition: all .15s;
}
.opcion-entrega input:checked + .caja { border-color: var(--verde); background: var(--verde-suave); }

@media (max-width: 576px) {
  .seccion { padding: 3.5rem 0; }
  .hero { padding-top: 6.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ---- Foto de producto ---- */
.producto-foto {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 8px; margin-bottom: .8rem;
  border: 1px solid #EED4D6;
}


/* ---- Menú de precios (waxing) ---- */
.menu-precios {
  background: #fff; border: 1.5px solid #EED4D6; border-radius: 16px;
  overflow: hidden; box-shadow: 0 8px 30px rgba(126,67,78,.08);
}
.menu-cabecera {
  background: var(--ambar); color: #fff; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; font-size: .8rem;
  padding: .7rem 1.4rem;
}
.fila-precio {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.4rem; border-bottom: 1px dashed #EED4D6;
}
.fila-precio:last-child { border-bottom: none; }
.fp-icono {
  width: 42px; height: 42px; border-radius: 50%; background: var(--verde-suave);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde); font-size: 1.2rem; flex-shrink: 0;
}
.fp-nombre { flex-grow: 1; font-weight: 700; color: var(--verde-osc); line-height: 1.2; }
.fp-nombre small { font-weight: 400; color: #A78; font-style: italic; }
.fp-precio {
  background: var(--ambar); color: #fff; font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 1.15rem; border-radius: 10px;
  padding: .3rem 1rem; flex-shrink: 0;
}
