:root {
  --cream: #F3ECDF;
  --cream-alt: #FBF8F1;
  --green: #3F4A36;
  --green-light: #6B7A5E;
  --terracotta: #B5573C;
  --rose: #E3B7AC;
  --text: #2B2B26;
  --text-soft: #5C5A50;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(43, 43, 38, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream-alt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Background layers: soft blurred color underneath the whole page */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}
.bg-blob--rose {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -120px;
  background: var(--rose);
}
.bg-blob--green {
  width: 420px;
  height: 420px;
  top: 55vh;
  left: -160px;
  background: var(--green-light);
  opacity: 0.16;
}
.bg-blob--terracotta {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: -100px;
  background: var(--terracotta);
  opacity: 0.14;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left { transform: translate(-30px, 14px); }
.reveal-right { transform: translate(30px, 14px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { line-height: 1.6; color: var(--text-soft); margin: 0 0 1em; }

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.6em;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--cream-alt);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); background: #33402c; }
.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--cream-alt); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63, 74, 54, 0.08);
  box-shadow: 0 0 0 rgba(43, 43, 38, 0);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 8px 24px rgba(43, 43, 38, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  position: relative;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover { color: var(--terracotta); }
.nav a:hover::after { transform: scaleX(1); }
.btn-nav { padding: 11px 22px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Hero */
.hero { padding: 72px 0 48px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: 2.6rem; }
.hero-lead { font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-art { display: flex; justify-content: center; }
.hero-logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(43, 43, 38, 0.14));
  transition: transform 0.2s ease-out;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}

/* Strip */
.strip { background: var(--green); }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
}
.strip-item strong {
  color: var(--cream-alt);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* Sobre */
.sobre { padding: 84px 0; }
.sobre-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.sobre-art { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.sobre-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sobre-art:hover .sobre-photo { transform: scale(1.04); }
.checklist { list-style: none; padding: 0; margin: 1.2em 0 0; }
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.85;
}

/* Serviços */
.servicos { padding: 84px 0; background: var(--cream); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.card {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(43, 43, 38, 0.13);
}
.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  transition: stroke 0.3s ease, transform 0.3s ease;
}
.card:hover .icon { stroke: var(--terracotta); transform: scale(1.08); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.card p { font-size: 0.95rem; margin: 0; }

/* CTA band */
.cta-band { background: var(--terracotta); padding: 56px 0; }
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: var(--cream-alt); margin: 0; max-width: 26ch; font-size: 1.7rem; }
.cta-band .btn-primary { background: var(--green); }

/* Localização */
.localizacao { padding: 84px 0; }
.loc-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.loc-address { font-size: 1.05rem; color: var(--text); }
.loc-link {
  display: inline-block;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.loc-btn { display: block; width: fit-content; }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--green); padding: 44px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { color: var(--cream-alt); }
.footer-tag { color: rgba(251,248,241,0.7); font-size: 0.85rem; margin: 4px 0 0; }
.footer-contact p { color: rgba(251,248,241,0.85); margin: 0 0 6px; font-size: 0.92rem; }
.footer-contact a:hover { color: var(--rose); }

/* Responsive */
@media (max-width: 860px) {
  .hero-inner, .sobre-inner, .loc-inner { grid-template-columns: 1fr; }
  .sobre-art, .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.1rem; }
  .bg-blob { filter: blur(46px); }
  .bg-blob--rose { width: 260px; height: 260px; }
  .bg-blob--green { width: 220px; height: 220px; }
  .bg-blob--terracotta { width: 200px; height: 200px; }
}

@media (max-width: 640px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-alt);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
