:root {
  --bg: #faf7fc;
  --surface: #ffffff;
  --text: #2f1f3b;
  --muted: #6f5d7d;
  --primary: rgb(160, 161, 192);
  --primary-strong: #8586aa;
  --line: #eadff0;
  --shadow: 0 14px 36px rgba(77, 40, 104, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f2e8f8 0%, var(--bg) 40%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 252, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
}

.logo img {
  height: 96px;
  width: auto;
  border-radius: 20px;
}

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

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.top-nav a:hover,
.top-nav a.active { color: var(--primary-strong); }

.menu-toggle {
  display: none;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary-strong);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(160, 161, 192, 0.28);
}

.btn-secondary {
  border: 1px solid var(--primary);
  color: #8586aa;
  background: rgba(255, 255, 255, 0.9);
}

.btn:hover { transform: translateY(-1px); }

.hero {
  padding: 66px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-strong);
  margin: 0 0 12px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 2.8vw, 2.4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

.lead {
  color: var(--muted);
  margin: 18px 0 0;
  line-height: 1.7;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  overflow: hidden;
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-media.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.hero-media.photo-pair img {
  border-radius: 14px;
  min-height: 404px;
}

.section { padding: 42px 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card { padding: 14px; }
.service-card img {
  border-radius: 14px;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-card h3 { margin-top: 14px; }
.service-card p { color: var(--muted); line-height: 1.6; margin: 10px 0 0; }
.contact-link {
  color: var(--primary-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  color: #8586aa;
  border-color: #8586aa;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 10px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.social-card h3 {
  text-align: left;
  margin-bottom: 24px;
}

.social-card .social-links {
  margin-top: 4px;
}

.banner {
  padding: 30px;
  background: linear-gradient(125deg, #efe1f8, #f6effb 45%, #fff);
  border: 1px solid #d8c3e9;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.banner p { color: #614f71; margin: 10px 0 0; }

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.price-list { display: grid; gap: 10px; }

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
}

.prices-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.price-section {
  padding: 16px;
}

.price-section h3 {
  margin-bottom: 12px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 6px;
  text-align: left;
  font-size: 0.95rem;
}

.price-table th:nth-child(2),
.price-table th:nth-child(3),
.price-table td:nth-child(2),
.price-table td:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}

.price-table thead th {
  color: var(--primary-strong);
  font-weight: 700;
  background: #f8f1fc;
}

.price-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.muted { color: var(--muted); }

.pill {
  display: inline-block;
  font-size: 0.8rem;
  border: 1px solid var(--primary);
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 6px 10px;
}

.campanhas-page .pill {
  color: var(--primary-strong);
  background: transparent;
  border-color: var(--primary);
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  background: #fcf9ff;
}

.footer-wrap {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 0.8fr 1fr;
  align-items: center;
  gap: 18px;
  color: #705f7d;
}

.footer-wrap p { margin: 4px 0; }

.footer-link {
  color: var(--primary-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
}

.footer-link:hover {
  color: #705f7d;
  border-color: #705f7d;
}

.footer-privacy {
  text-align: right;
}

.privacy-content {
  padding: 28px;
}

.privacy-content h2 {
  margin-top: 26px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: var(--muted);
  line-height: 1.7;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.social-links a {
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 4px;
}

.social-links img { width: 50px; height: 50px; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .top-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .top-nav.is-open { display: flex; }
  .hero-grid, .grid-3 { grid-template-columns: 1fr; }
  .hero-media.photo-pair { grid-template-columns: 1fr; }
  .prices-layout { grid-template-columns: 1fr; }
  .banner { flex-direction: column; align-items: flex-start; }
  .footer-wrap {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 22px 0;
  }

  .footer-privacy {
    text-align: left;
  }
}
