:root {
  --sage: #80935A;
  --sage-dark: #636f45;
  --cream: #faf7f2;
  --cream-alt: #f1ece2;
  --ink: #2e2a26;
  --ink-soft: #635c53;
  --border: #e3ddd0;
  --radius: 14px;
  --max-width: 1100px;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; margin: 0 0 0.5em; color: var(--ink); }

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  text-align: justify;
  text-justify: inter-word;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__brand {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar__links {
  display: flex;
  gap: 28px;
}

.navbar__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.navbar__links a:hover { color: var(--sage-dark); }

@media (max-width: 720px) {
  .navbar__links { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 6px 18px rgba(124, 152, 133, 0.35);
}

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

.btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Hero */
.hero { padding: 72px 0 96px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { order: -1; }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero__text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: #a4215b;
}

.hero__lead { font-size: 1.1rem; max-width: 44ch; }

.photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #b89a55;
  position: relative;
  z-index: 1;
}

.photo--square { aspect-ratio: 3 / 4; border-radius: 90px; }

/* Formas geométricas decorativas */
.hero__photo {
  position: relative;
}

.hero__photo::before,
.hero__photo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero__photo::before {
  width: 140px;
  height: 140px;
  background: var(--sage);
  opacity: 0.18;
  top: -32px;
  left: -32px;
}

.hero__photo::after {
  width: 90px;
  height: 90px;
  border: 3px solid var(--sage);
  opacity: 0.35;
  bottom: -24px;
  right: -20px;
}

.sobre {
  position: relative;
}

.sobre .photo {
  position: relative;
  z-index: 1;
}

.sobre__inner > div:first-child {
  position: relative;
}

.sobre__inner > div:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--sage);
  opacity: 0.3;
  border-radius: 90px;
  top: 16px;
  left: 16px;
  z-index: 0;
  max-width: 320px;
}

/* Sections */
.section { padding: 88px 0; }
.section--alt { background: var(--cream-alt); }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.section__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--sage);
  margin: 0 auto 18px;
}

.section__title--left::before { margin: 0 0 18px; }

.section__title--left { text-align: left; }

#sobre .section__title,
#processo .section__title,
#duvidas .section__title { color: #a4215b; }

.highlight {
  background: #dd9eba;
  color: #fff;
  padding: 0.05em 0.4em;
  border-radius: 4px;
}

.highlight-green {
  color: var(--sage);
  font-weight: 700;
  text-decoration: underline;
  font-style: italic;
}

.section__subtitle {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 48px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr; }
}

.timeline__step {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
}

.timeline__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: bold;
  margin-bottom: 16px;
}

.info-strip {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
}

.info-strip strong {
  display: block;
  font-size: 1.3rem;
  color: var(--sage-dark);
  font-family: Georgia, serif;
}

.info-strip span { color: var(--ink-soft); font-size: 0.9rem; }

.info-strip__icon {
  width: 32px;
  height: 32px;
  color: var(--sage);
  margin: 0 auto 10px;
  display: block;
}

/* Sobre */
.sobre__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.sobre .photo { max-width: 320px; }

.sobre__formacao {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--sage-dark);
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .sobre__inner { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 14px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--sage-dark);
  font-size: 1.2rem;
}

.faq__item[open] summary::after { content: "−"; }

.faq__item p { margin-top: 12px; margin-bottom: 0; }

/* CTA */
.cta {
  background: var(--sage);
  color: #fff;
  text-align: center;
}

.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.9); text-align: center; }
.cta .btn--primary { background: #fff; color: var(--sage-dark); box-shadow: none; }
.cta .btn--primary:hover { background: var(--cream); }

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.footer__contact {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icon-link:hover { color: var(--sage-dark); }

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.timeline .reveal:nth-child(2) { transition-delay: 0.1s; }
.timeline .reveal:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 60;
}

.icon--float { width: 28px; height: 28px; }
