:root {
  --rose: #e85db5;
  --rose-soft: #f7d4e8;
  --blush: #edd2cf;
  --cream: #f8f3ef;
  --ink: #312a2e;
  --muted: #6c5a60;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(82, 52, 67, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fff8fb 45%, #fdf6f2 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.alt { background: linear-gradient(180deg, rgba(248,243,239,.85), rgba(247,212,232,.35)); }
.center { text-align: center; }
.soft-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(232,93,181,0.12);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232,93,181,0.12);
  color: var(--rose);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .98;
  margin: 0 0 16px;
}
h1 { font-size: clamp(3rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h3 { font-size: 1.8rem; }
p { line-height: 1.8; color: var(--muted); margin: 0 0 16px; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.78); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,93,181,.12);
}
.nav {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }
.brand strong { display: block; font-size: 1rem; }
.brand span { font-size: .85rem; color: var(--muted); }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { font-weight: 600; font-size: .95rem; }
.hero {
  position: relative; min-height: 92vh; display: grid; place-items: center; overflow: hidden;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; }
.hero-overlay { background: linear-gradient(110deg, rgba(26,15,20,.7), rgba(125,73,97,.28), rgba(255,255,255,.06)); }
.hero-content { position: relative; z-index: 1; color: white; padding: 80px 0; }
.hero .badge {
  display: inline-block; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26); margin-bottom: 18px; font-weight: 600;
}
.hero p { max-width: 720px; color: rgba(255,255,255,.88); font-size: 1.05rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--rose), #f28fc6); color: white; box-shadow: 0 10px 24px rgba(232,93,181,.28); }
.btn-secondary { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.26); }
.two-col, .split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.info-card { padding: 28px; }
.info-card ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 2; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.service-card { padding: 24px; min-height: 210px; }
.highlight-wrap { padding: 34px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.benefits { display: grid; gap: 16px; }
.benefits div { padding: 18px; border-radius: 18px; background: linear-gradient(135deg, rgba(232,93,181,.08), rgba(237,210,207,.35)); }
.benefits strong { display: block; margin-bottom: 6px; }
.gallery-grid {
  margin-top: 34px;
  display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  padding: 0; border: 0; background: transparent; border-radius: 20px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.wide { grid-column: span 2; }
.video-card, .social-card, .form-card, .contact-list, .map-wrap { padding: 28px; }
.video-wrap, .fb-embed { border-radius: 20px; overflow: hidden; }
.video-wrap iframe, .map-wrap iframe { width: 100%; border: 0; min-height: 380px; }
.fb-fallback { display: flex; align-items: center; gap: 18px; margin: 18px 0 22px; }
.fb-fallback img { width: 82px; height: 82px; border-radius: 50%; object-fit: cover; }
.contact-grid { align-items: start; }
.contact-list { display: grid; gap: 14px; margin-bottom: 18px; }
.contact-list a, .contact-list p { margin: 0; }
form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 600; }
input, textarea {
  width: 100%; border: 1px solid rgba(49,42,46,.12); background: #fff; border-radius: 16px; padding: 14px 16px;
  font: inherit; color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid rgba(232,93,181,.2); border-color: var(--rose); }
.full { width: 100%; }
.site-footer { padding: 24px 0 36px; background: #fff; border-top: 1px solid rgba(232,93,181,.12); }
.footer-content { text-align: center; }
.footer-content p { margin: 0; }
.footer-content a { color: var(--rose); font-weight: 700; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 60px; height: 60px; border-radius: 50%; z-index: 30;
  display: grid; place-items: center; background: #25d366; box-shadow: 0 16px 28px rgba(0,0,0,.22);
}
.whatsapp-float svg { width: 30px; fill: white; }
.lightbox {
  position: fixed; inset: 0; display: none; place-items: center; background: rgba(15, 10, 12, .82); z-index: 40; padding: 20px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,.4); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  font-size: 2rem; background: white; color: var(--ink);
}
@media (max-width: 980px) {
  .two-col, .split-grid, .highlight-wrap, .cards-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .nav { padding: 14px 0; align-items: flex-start; }
  nav { gap: 12px 16px; }
  .two-col, .split-grid, .highlight-wrap, .cards-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .hero { min-height: 86vh; }
  .hero-content { padding-top: 110px; }
  .video-wrap iframe, .map-wrap iframe { min-height: 300px; }
}
