*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #ffffff;
  --bg: #fdfafb;
  --tint: #fdeaf1;
  --tint-deep: #f9d3e3;
  --ink: #241a1e;
  --muted: #8a7680;
  --line: rgba(36, 26, 30, .1);
  --pink: #dd1b73;
  --pink-deep: #a1114f;
  --gold: #c69a4e;
  --whatsapp: #25d366;
  --radius: 22px;
  --radius-sm: 10px;
  --shadow: 0 10px 28px rgba(36, 26, 30, .08);
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Parisienne", cursive;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* ---------- NAV ---------- */
#nav {
  position: sticky;
  top: 0;
  z-index: 300;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.nav-brand .cash { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.nav-links a:not(.btn):hover { color: var(--pink); }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--pink); color: var(--white); box-shadow: 0 8px 22px rgba(221, 27, 115, .28); }
.btn-primary:hover { background: var(--pink-deep); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(221, 27, 115, .34); }
.btn-outline { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 64px 22px 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 48px;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
  background: var(--tint);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-copy .eyebrow svg { width: 15px; height: 15px; }
.hero-copy h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero-copy h1 .pink {
  font-family: var(--script);
  color: var(--pink);
  font-weight: 400;
  font-size: 1.35em;
  display: inline-block;
  line-height: .7;
  margin-left: .06em;
}
.hero-copy p.lead { font-size: 16.5px; color: var(--muted); max-width: 46ch; margin-bottom: 30px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: 46% 54% 38% 62% / 52% 40% 60% 48%;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; padding-top: 20px; }
}

/* ---------- CATEGORY ROW ---------- */
.cat-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 22px 40px;
  max-width: 1160px;
  margin: 0 auto;
  scrollbar-width: none;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 11px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.cat-chip:hover { border-color: var(--pink); background: var(--tint); }
.cat-chip .ico { width: 20px; height: 20px; color: var(--pink); flex-shrink: 0; }

/* ---------- SECTION COMMON ---------- */
.sec { padding: 72px 22px; }
.sec-alt { background: var(--tint); }
.sec-head { max-width: 560px; margin-bottom: 40px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--script);
  font-size: 30px;
  line-height: 1;
  color: var(--pink);
  margin-bottom: 6px;
}
.kicker .flourish { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.sec-head h2 { font-size: clamp(28px, 4.5vw, 40px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.sec-head p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gal-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.gal-card .media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.gal-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-card:hover .media img { transform: scale(1.06); }
.gal-card .tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255, 255, 255, .92);
  color: var(--pink-deep);
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- PRICING (service list, app-style) ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 780px) { .price-grid { grid-template-columns: 1fr 1fr; } }

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 10px;
}
.price-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.price-card-head .ico { width: 22px; height: 22px; color: var(--pink); flex-shrink: 0; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.price-row .svc { font-weight: 500; }
.price-row .amt { font-weight: 700; color: var(--pink-deep); white-space: nowrap; }
.price-note {
  padding: 13px 0 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.price-card.pending .price-note { border-top: none; padding-top: 4px; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; max-width: 360px; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
@media (min-width: 860px) { .about { grid-template-columns: .85fr 1fr; gap: 60px; } }

/* ---------- CONTACT ---------- */
.contact { text-align: center; }
.contact-card {
  background: var(--tint);
  border-radius: 32px;
  padding: 56px 30px;
  max-width: 620px;
  margin: 0 auto;
}
.contact-card h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.contact-card p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.contact-ig { margin-top: 22px; font-size: 14px; color: var(--muted); }
.contact-ig a { color: var(--pink-deep); font-weight: 600; }
.contact-ig a:hover { text-decoration: underline; }

/* ---------- FEATURES STRIP ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { display: flex; align-items: flex-start; gap: 12px; }
.feature .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--tint);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
}
.feature .ico svg { width: 18px; height: 18px; }
.feature h3 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.feature p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(4, 1fr); } }

/* ---------- SCALLOP DIVIDER (puntilla) ---------- */
.scallop {
  height: 16px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 28px 16px;
}
.scallop--to-tint {
  background-color: var(--white);
  background-image: radial-gradient(circle at 14px 0, transparent 13px, var(--tint) 14px);
}
.scallop--to-white {
  background-color: var(--tint);
  background-image: radial-gradient(circle at 14px 0, transparent 13px, var(--white) 14px);
}

/* ---------- FOOTER ---------- */
footer { padding: 32px 22px 120px; text-align: center; font-size: 13px; color: var(--muted); }
footer a:hover { color: var(--pink); }

/* ---------- FLOATING WHATSAPP ---------- */
.fab-whatsapp {
  position: fixed; bottom: 20px; right: 20px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  opacity: 0; transform: translateY(14px) scale(.85); pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.fab-whatsapp.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-whatsapp svg { width: 28px; height: 28px; color: #fff; }
.fab-whatsapp:active { transform: scale(.92); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
