:root {
  --rose: #d0587a;
  --rose-dark: #a94362;
  --rose-soft: #f7dde4;
  --crema: #fdf6f1;
  --blush: #fbeef2;
  --ink: #3a2e33;
  --ink-soft: #7a6870;
  --white: #ffffff;
  --green: #7a9b6c;
  --shadow: 0 18px 45px rgba(208, 88, 122, 0.14);
  --radius: 18px;
  --font-display: "Playfair Display", serif;
  --font-body: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--crema);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(253, 246, 241, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(208, 88, 122, 0.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.brand-name em { color: var(--rose); font-style: normal; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.nav-cta) { font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav a:not(.nav-cta):hover { color: var(--rose); }
.nav-cta { background: var(--rose); color: #fff !important; padding: 10px 18px; border-radius: 999px; font-weight: 600; transition: background .2s; }
.nav-cta:hover { background: var(--rose-dark); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(247, 221, 228, .8), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(247, 221, 228, .6), transparent 45%),
    linear-gradient(180deg, var(--blush), var(--crema));
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-block; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  font-size: .78rem; color: var(--rose); background: var(--rose-soft);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.7rem); line-height: 1.08; margin-bottom: 18px; }
.hero h1 span { color: var(--rose); font-style: italic; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-points { list-style: none; }
.hero-points li { margin-bottom: 6px; color: var(--ink-soft); font-weight: 500; }

.hero-art { display: flex; justify-content: center; }
.hero-art img { width: min(420px, 100%); filter: drop-shadow(var(--shadow)); }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 600;
  font-size: 1rem; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  border: none;
}
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 8px 20px rgba(208, 88, 122, .35); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--rose); border: 2px solid var(--rose); }
.btn-ghost:hover { background: var(--rose-soft); }
.btn-block { width: 100%; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-tinted { background: var(--blush); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.eyebrow-2 { font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: .76rem; color: var(--rose); margin-bottom: 12px; }
.section-head h2, .so-copy h2, .contact-info h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-head p, .contact-info p { color: var(--ink-soft); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--rose-soft); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 16px 18px 18px; }
.card-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 3px; }
.card-body p { color: var(--ink-soft); font-size: .95rem; }
.card-body .price { color: var(--rose); font-weight: 600; margin-top: 8px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service {
  background: var(--white); border-radius: var(--radius); padding: 34px 26px;
  text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,.05); transition: transform .25s;
}
.service:hover { transform: translateY(-6px); }
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.service p { color: var(--ink-soft); font-size: .96rem; }

/* Sobre */
.so-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.so-art img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.so-copy h2 { margin-bottom: 18px; }
.so-copy > p:not(.eyebrow-2) { color: var(--ink-soft); margin-bottom: 20px; }
.check-list { list-style: none; }
.check-list li { padding: 8px 0 8px 30px; position: relative; font-weight: 500; color: var(--ink-soft); }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05); display: flex; flex-direction: column;
}
.testimonial .stars { color: #e9b949; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { color: var(--ink-soft); font-style: italic; flex: 1; margin-bottom: 18px; }
.testimonial .person { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--rose-soft); }
.testimonial .person strong { display: block; font-size: .98rem; }
.testimonial .person span { color: var(--ink-soft); font-size: .85rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 28px; }
.contact-list { list-style: none; }
.c-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(208,88,122,.15); }
.c-item .c-icon { width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; background: var(--rose-soft); border-radius: 14px; font-size: 1.3rem; }
.c-item strong { display: block; margin-bottom: 2px; }
.c-item a:hover { color: var(--rose); }
.c-item span { color: var(--ink-soft); }

.contact-form form {
  background: var(--white); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; gap: 6px;
}
.contact-form label { font-weight: 600; font-size: .9rem; margin-top: 10px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid rgba(208,88,122,.25);
  background: var(--crema); font-family: inherit; font-size: 1rem; color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--rose); }
.form-note { margin-top: 12px; font-weight: 600; color: var(--green); min-height: 20px; }

/* Footer */
.site-footer { background: #2c1f24; color: rgba(255,255,255,.78); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer-logo { width: 42px; height: 42px; margin-bottom: 14px; }
.footer-brand p { max-width: 34ch; margin-bottom: 18px; }
.footer-brand h4, .footer-col h4 { font-family: var(--font-display); color: #fff; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--rose-soft); }
.social { display: flex; gap: 12px; }
.social a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.1); font-weight: 700; font-size: .8rem; transition: background .2s;
}
.social a:hover { background: var(--rose); color: #fff; }
.legal { text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .gallery, .services-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .so-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-points li { text-align: center; }
  .hero-art { order: -1; }
}
@media (max-width: 620px) {
  .gallery, .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav {
    position: fixed; top: 74px; right: -260px; width: 240px; height: calc(100vh - 74px);
    background: var(--white); flex-direction: column; align-items: flex-start; gap: 18px;
    padding: 30px 26px; box-shadow: -10px 0 30px rgba(0,0,0,.1); transition: right .3s ease;
  }
  .nav.open { right: 0; }
  .nav-toggle { display: block; }
}