:root{
  --p:#ff4fb3;         /* fresa */
  --s:#7c3aed;         /* lavanda */
  --a:#ffb703;         /* miel */
  --bg:#fff6fb;        /* crema rosada */
  --card:rgba(255,255,255,.72);
  --line:rgba(17,24,39,.08);
  --tx:#0f172a;
  --muted:#5b6476;
  --shadow:0 30px 90px rgba(17,24,39,.12);
  --r:28px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--tx);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;

  /* Fondo continuo pastel (sin cortes) */
  background:
    radial-gradient(1200px 900px at 12% 8%, rgba(255,79,179,.20), transparent 62%),
    radial-gradient(1100px 820px at 88% 18%, rgba(124,58,237,.16), transparent 62%),
    radial-gradient(1000px 740px at 50% 96%, rgba(255,183,3,.10), transparent 65%),
    radial-gradient(1200px 900px at 50% 50%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);

  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

a{color:inherit}
img{max-width:100%;display:block}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:18px;
}

/* ========== TOPBAR ========== */
.topbar{
  position:sticky;
  top:0;
  z-index:60;
  padding:14px 18px;
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.topbar__in{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__logo{
  width:50px;
  height:50px;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(17,24,39,.10);
  padding:10px;
  box-shadow:0 18px 55px rgba(17,24,39,.10);
}
.brand__name{
  font-weight:1000;
  letter-spacing:.2px;
}
.brand__tag{
  font-size:12px;
  color:var(--muted);
  font-weight:900;
}

.menuBtn{
  display:none;
  width:48px;
  height:48px;
  border-radius:18px;
  border:1px solid rgba(17,24,39,.10);
  background:rgba(255,255,255,.86);
  cursor:pointer;
}
.menuBtn span{
  display:block;
  width:18px;
  height:2px;
  background:#111;
  margin:4px auto;
  border-radius:999px;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav__link{
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
  font-weight:900;
  color:rgba(15,23,42,.78);
}
.nav__link:hover{
  border-color:rgba(17,24,39,.10);
  background:rgba(255,255,255,.72);
}

.nav__pill{
  display:flex;
  gap:6px;
  padding:6px;
  border:1px solid rgba(17,24,39,.10);
  border-radius:999px;
  background:rgba(255,255,255,.70);
}
.pill{
  padding:8px 10px;
  border-radius:999px;
  text-decoration:none;
  font-weight:1000;
  font-size:12px;
  opacity:.65;
}
.pill--on{
  opacity:1;
  color:#fff;
  background:linear-gradient(135deg,var(--p),var(--s));
  box-shadow:0 18px 55px rgba(255,79,179,.20);
}

/* ========== PREMIUM CARD (Hero + Sections) ========== */
.hero,
.sectionCard{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.06);
  background:rgba(255,255,255,.62);
  box-shadow:var(--shadow);
  margin-top:18px;
}

/* Glow más “cremoso” */
.heroGlow,
.sectionGlow{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 620px at 18% 26%, rgba(255,79,179,.22), transparent 58%),
    radial-gradient(900px 620px at 86% 18%, rgba(124,58,237,.16), transparent 60%),
    radial-gradient(900px 620px at 58% 92%, rgba(255,183,3,.10), transparent 62%),
    radial-gradient(900px 620px at 50% 50%, rgba(255,255,255,.30), transparent 62%);
  filter:saturate(1.06);
  pointer-events:none;
}

.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  padding:28px;
}

.sectionInner{
  position:relative;
  padding:28px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.76);
  width:fit-content;
  font-weight:1000;
}
.kdot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--p),var(--s));
}

.heroTitle{
  margin:14px 0 10px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-1px;
}
.heroTitle .grad{
  background:linear-gradient(135deg,var(--p),var(--s));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.heroDesc{
  margin:0;
  color:rgba(91,100,118,.95);
  font-size:16px;
  line-height:1.55;
  max-width:62ch;
  font-weight:760;
}

.ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:20px;
  border:1px solid rgba(17,24,39,.10);
  text-decoration:none;
  font-weight:1000;
  background:rgba(255,255,255,.86);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 55px rgba(17,24,39,.12);
  filter:saturate(1.05);
}
.btnPrimary{
  border:0;
  color:#fff;
  background:linear-gradient(135deg,var(--p),var(--s));
  box-shadow:0 24px 70px rgba(255,79,179,.22);
}
.btnSm{
  padding:10px 12px;
  border-radius:18px;
  font-size:13px;
}

.socialRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.socialCard{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:20px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 16px 46px rgba(17,24,39,.10);
  text-decoration:none;
  font-weight:1000;
}
.socialIcon{
  width:40px;
  height:40px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(255,79,179,.18), rgba(124,58,237,.12));
  border:1px solid rgba(17,24,39,.06);
}

.rightCard{
  border-radius:28px;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.70);
  overflow:hidden;
  box-shadow:0 22px 70px rgba(17,24,39,.10);
}

.previewTop{
  padding:14px 14px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.pills{display:flex;gap:6px}
.pillDot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(15,23,42,.12);
}

.previewBody{padding:14px}
.previewImg{
  height:320px;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(255,79,179,.12), rgba(124,58,237,.10));
  border:1px solid rgba(17,24,39,.06);
  position:relative;
}
.previewImg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.previewOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 240px at 28% 18%, rgba(255,79,179,.22), transparent 60%),
    radial-gradient(520px 240px at 82% 65%, rgba(124,58,237,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.00));
  pointer-events:none;
}
.previewCap{
  margin-top:12px;
  font-weight:1000;
  color:rgba(15,23,42,.85);
}

/* Slider simple */
.slide{
  display:none;
  position:absolute;
  inset:0;
}
.slide.is-on{display:block}
.dots{
  position:absolute;
  left:14px;
  top:14px;
  display:flex;
  gap:8px;
  z-index:2;
}
.dot{
  width:11px;
  height:11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.86);
  background:rgba(255,255,255,.42);
  cursor:pointer;
}
.dot--on{background:#fff}

/* ========== SECTIONS CONTENT ========== */
.sectionHead{
  display:flex;
  gap:16px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}
.sectionTitle{
  margin:0;
  font-size:30px;
  letter-spacing:-.4px;
}
.sectionDesc{
  margin:0;
  color:var(--muted);
  max-width:72ch;
  font-weight:820;
}

/* Cards (productos) */
.gridCards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.card{
  border-radius:24px;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.78);
  overflow:hidden;
  box-shadow:0 18px 55px rgba(17,24,39,.10);
}
.cardImg{
  height:220px;
  background:rgba(15,23,42,.03);
}
.cardImg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cardBody{padding:14px}
.cardTop{
  display:flex;
  gap:10px;
  align-items:flex-start;
  justify-content:space-between;
}
.cardTitle{
  margin:0;
  font-size:16px;
  font-weight:1000;
}
.priceTag{
  font-size:12px;
  font-weight:1000;
  padding:8px 10px;
  border-radius:999px;
  background:linear-gradient(135deg,rgba(255,79,179,.16),rgba(124,58,237,.10));
  border:1px solid rgba(17,24,39,.06);
  white-space:nowrap;
}
.cardDesc{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  font-weight:760;
}
.cardActions{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

/* Galería */
.masonry{
  columns:3 280px;
  column-gap:12px;
  margin-top:14px;
}
.masonryItem{
  break-inside:avoid;
  margin:0 0 12px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.78);
  box-shadow:0 14px 46px rgba(17,24,39,.10);
}
.masonryItem img{width:100%;display:block}
.masonryItem figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-weight:1000;
  font-size:12px;
}

/* Contacto */
.contactGrid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:12px;
  margin-top:14px;
}
.box{
  border-radius:24px;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.78);
  box-shadow:0 18px 55px rgba(17,24,39,.10);
  padding:14px;
}
.line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(17,24,39,.06);
}
.line:last-child{border-bottom:0}
.k{color:var(--muted);font-weight:1000;font-size:12px}
.v{font-weight:1000;text-decoration:none}

.formRow{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}
.formRow label{
  font-weight:1000;
  font-size:12px;
  color:var(--muted);
}
.formRow input,
.formRow textarea{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(17,24,39,.10);
  background:#fff;
  outline:none;
}
.formRow textarea{
  min-height:110px;
  resize:vertical;
}

.footer{
  margin-top:18px;
  padding:16px;
  border-radius:24px;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.70);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* WhatsApp Float */
.waFloat{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  font-weight:1000;
  box-shadow:0 18px 55px rgba(37,211,102,.25);
}
.waFloatDot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .heroGrid { grid-template-columns: 1fr; }
  .heroTitle { font-size: 44px; }
  .gridCards { grid-template-columns: repeat(2, 1fr); }
  .contactGrid { grid-template-columns: 1fr; }
  .sectionInner { padding: 18px; }
}

@media (max-width: 760px) {
  .menuBtn { display: inline-flex; align-items: center; justify-content: center; }

  .nav {
    position: absolute;
    right: 18px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 18px;
    padding: 10px;
    min-width: 240px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
  }

  .nav--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav__link { width: 100%; text-align: center; }

  .gridCards { grid-template-columns: 1fr; }
  .masonry { columns: 2 200px; }
  .previewImg { height: 260px; }
}

@media (max-width: 420px) {
  .brand__tag { display: none; }
  .heroTitle { font-size: 36px; }
  .masonry { columns: 1; }
}
.previewImg img{
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.01);
}
