/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fdfaf7;
  --surface: #ffffff;
  --text: #2e2a28;
  --muted: #8a7f79;
  --accent: #b76e79;      /* rosé */
  --accent-dark: #99515c;
  --gold: #c9a86a;
  --soft: #f6ece9;        /* blush claro */
  --dark: #2b2320;
  --border: #efe4df;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(120, 70, 80, 0.10);
  --max: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 22px;
}

section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(183, 110, 121, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== Announcement bar ===== */
.topbar {
  background: var(--dark);
  color: #f3e6df;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}

.topbar b {
  color: var(--gold);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 16, 14, 0.86) 0%, rgba(20, 16, 14, 0.6) 45%, rgba(20, 16, 14, 0.25) 100%),
    url("../images/hero.webp") center/cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 660px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 16px 0 20px;
}

.hero h1 em {
  font-style: italic;
  color: #f3d9b0;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero .eyebrow {
  color: #f3d9b0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stats .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.hero-stats .lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  height: 460px;
  border-radius: var(--radius);
  background: url("../images/sobre.webp") center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  color: var(--text);
}

.about-list .check {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== Services ===== */
.services {
  background: var(--soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service .icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 232px;
  gap: 16px;
}

.gallery-grid .tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}

.gallery-grid .tile:hover {
  transform: scale(1.02);
}

/* Mosaico: duas fotos altas nas laterais, duas largas empilhadas no centro */
.amb1 { grid-column: 1;     grid-row: 1 / 3; background-image: url("../images/amb1.webp"); }
.amb2 { grid-column: 2 / 4; grid-row: 1;     background-image: url("../images/amb2.webp"); }
.amb3 { grid-column: 4;     grid-row: 1 / 3; background-image: url("../images/amb3.webp"); }
.amb4 { grid-column: 2 / 4; grid-row: 2;     background-image: url("../images/amb4.webp"); }

/* ===== Testimonials ===== */
.testimonials {
  background: var(--dark);
  color: #f3e6df;
}

.testimonials .section-head h2 {
  color: #fff;
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px;
}

.testi .stars {
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.testi .who {
  font-weight: 600;
  color: #fff;
}

.testi .who small {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-list .ic {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.info-list .lbl {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-list .val {
  font-weight: 600;
  color: var(--text);
}

.contact-card {
  background: linear-gradient(160deg, #99515c, #2b2320);
  border-radius: var(--radius);
  padding: 44px 38px;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}

.contact-card .hours {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 26px;
  padding-top: 20px;
}

.contact-card .hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-card .btn-primary {
  width: 100%;
  justify-content: center;
  background: #25D366;
  box-shadow: none;
}

.contact-card .btn-primary:hover {
  background: #1da851;
}

/* ===== Footer ===== */
.site-footer {
  background: #1f1917;
  color: #cbbab2;
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}

.site-footer .logo {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer p {
  font-size: 0.92rem;
  color: #a2938c;
  max-width: 320px;
}

.site-footer h5 {
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: #cbbab2;
  padding: 5px 0;
  font-size: 0.92rem;
  transition: color 0.15s;
}

.site-footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.socials a:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.84rem;
  color: #8a7b74;
}

/* ===== Legal pages (Termos / Privacidade) ===== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 0;
}

.legal .back-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 22px;
}

.legal h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 10px 0 8px;
}

.legal .updated {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin: 36px 0 12px;
}

.legal-body p {
  color: #5c534e;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 18px 22px;
  color: #5c534e;
}

.legal-body li {
  margin-bottom: 7px;
}

.legal-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--soft);
  padding: 16px 24px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark);
}

.footer-legal-links {
  margin-bottom: 12px;
}

.footer-legal-links a {
  display: inline;
  color: #cbbab2;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  font-size: 1.7rem;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .amb1, .amb2, .amb3, .amb4 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 20px 22px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle {
    display: block;
  }
  .header-cta .btn {
    display: none;
  }
  .services-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 28px;
  }
}
