:root {
  --pink: #e764bf;
  --pink-2: #f07fd0;
  --rose: #e35a7a;
  --soft: #fff4fb;
  --ink: #2a2130;
  --muted: #6d6272;
  --card: #ffffff;
  --shadow: 0 12px 28px rgba(78, 32, 73, 0.12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg, #fff, var(--soft)); }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 2vw, 2.1rem); }
.section-title p { margin: 0; color: var(--muted); }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  background: url('../images/portada.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,235,247,.78));
  backdrop-filter: blur(1px);
}
.hero-content { position: relative; z-index: 2; padding: 64px 0; }
.brand-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(231,100,191,0.15);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 22px;
}
.brand-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(231,100,191,.28);
  background: #fff;
}
.eyebrow {
  margin: 0 0 6px;
  color: #b53f90;
  font-weight: 700;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}
.hero-text { color: var(--muted); margin: 10px 0 0; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--rose)); color: white; box-shadow: 0 10px 22px rgba(227, 90, 122, .25); }
.btn-secondary { background: white; color: var(--pink); border-color: rgba(231,100,191,.25); }
.btn.full { width: 100%; margin-top: 10px; }

.top-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav-inner {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  padding: 12px 0;
}
.nav-inner a { color: var(--ink); font-weight: 600; }
.nav-inner a:hover { color: var(--pink); }

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  padding: 22px;
}
.card h2, .card h3 { margin-top: 0; }
.highlight {
  background: linear-gradient(180deg, #fff, #fff7fc);
  border-color: rgba(231,100,191,.16);
}
.check-list {
  margin: 14px 0 0; padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.check-list li {
  position: relative; padding-left: 28px;
}
.check-list li::before {
  content: '❤'; position: absolute; left: 0; top: 0;
  color: var(--pink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border: 0; padding: 0; background: white; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); cursor: zoom-in;
}
.gallery-item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.social-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.fb-embed-wrap {
  width: 100%; overflow: hidden; border-radius: 14px; border: 1px solid rgba(0,0,0,.05);
  background: #f7f7f7;
}
.fb-embed-wrap iframe { width: 100%; min-height: 420px; }
.embed-note { color: var(--muted); font-size: .92rem; }
.promo-image { border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 12px; }

.map-card { padding: 10px; }
.map-card iframe {
  width: 100%; height: 420px; border: 0; border-radius: 12px;
}

.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12); font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: rgba(231,100,191,.45);
  box-shadow: 0 0 0 4px rgba(231,100,191,.12);
}
.form-note { margin-top: 12px; color: var(--muted); }
.mini-gallery {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.mini-gallery img { border-radius: 12px; aspect-ratio: 1/1; object-fit: cover; }

.site-footer {
  background: #1f1724; color: #eee; padding: 26px 0 36px; text-align: center;
}
.site-footer p { margin: 6px 0; }
.site-footer a { color: #ffd0f1; }

.float-btn {
  position: fixed; right: 18px; width: 54px; height: 54px;
  border: 0; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(0,0,0,.2); cursor: pointer; z-index: 80;
}
.float-btn.whatsapp {
  bottom: 18px; background: #25D366; color: white;
}
.float-btn.whatsapp svg { width: 28px; height: 28px; fill: currentColor; }
.float-btn.top {
  bottom: 84px; background: var(--pink); color: white; font-size: 22px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.float-btn.top.show { opacity: 1; pointer-events: auto; }

.lightbox {
  position: fixed; inset: 0; background: rgba(17, 10, 20, .88);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 100;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 75vh;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.lightbox p { color: #fff; margin: 12px 0 0; text-align: center; }
.lightbox-close {
  position: absolute; top: 12px; right: 14px; border: 0; background: rgba(255,255,255,.14);
  color: white; width: 44px; height: 44px; border-radius: 50%; font-size: 28px; cursor: pointer;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .grid-2, .social-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .brand-row { grid-template-columns: 1fr; text-align: center; }
  .brand-logo { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .map-card iframe { height: 340px; }
  .float-btn { right: 14px; width: 52px; height: 52px; }
}
