*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c1: #f0c0a8;
  --c2: #a8c090;
  --c3: #a8c090;
  --c4: #789090;
  --c5: #787878;
  --dark: #3a3030;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: #fff; color: var(--dark);
  max-width: 1440px; margin: 0 auto;
}

/* NAV */
nav {
  position: fixed; top: 0; z-index: 100;
  width: min(100%, 1440px);
  left: 50%; transform: translateX(-50%);
  background: #faf8f4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 60px;
  box-shadow: 0 2px 12px rgba(58,48,48,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo span { font-family: var(--serif); font-size: 1.2rem; color: var(--c4); font-weight: 600; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  color: var(--c5); text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c4); }

/* HERO */
.hero {
  max-height: 900px;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-left: 5px;
  overflow: hidden;
  position: relative;
  background: url('../img/fundo.png') no-repeat calc(50% + 40px) center / auto 120% scroll;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(35,58,58,0.95) 0%,
    rgba(40,65,65,0.90) 32%,
    rgba(40,65,65,0.40) 50%,
    rgba(40,65,65,0.08) 65%,
    transparent 75%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 80px 60px 80px 80px;
}
.hero-content .crp {
  font-size: 0.78rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.65);
  font-weight: 500; margin-bottom: 18px; text-transform: uppercase;
}
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 24px;
}
.hero-bullets { list-style: none; margin-bottom: 24px; }
.hero-bullets li {
  font-size: 0.95rem; color: rgba(255,255,255,0.88);
  padding: 5px 0; display: flex; align-items: flex-start;
  gap: 10px; line-height: 1.45;
}
.hero-cta-text {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  line-height: 1.65; margin-bottom: 28px; max-width: 380px;
}
.btn-primary {
  display: inline-block; background: var(--c4); color: #fff;
  padding: 15px 44px; font-family: var(--sans); font-size: 1.05rem;
  font-weight: 600; letter-spacing: 0.04em; border-radius: 3px;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: #677f7f; }
.btn-hero {
  display: inline-block; background: var(--c1); color: #3a2218;
  padding: 14px 40px; font-family: var(--sans); font-size: 1.05rem;
  font-weight: 600; letter-spacing: 0.04em; border-radius: 3px;
  text-decoration: none; transition: background 0.2s;
}
.btn-hero:hover { background: #e8ae90; }

/* INTRO */
.s-intro { padding: 72px 60px; background: #fff; }
.s-intro .intro-quote {
  font-family: var(--serif); font-size: 1.45rem; font-style: italic;
  color: var(--c4); text-align: center; max-width: 620px;
  margin: 0 auto 28px; line-height: 1.6;
}
.s-intro p {
  font-size: 1.08rem; line-height: 1.85; color: var(--c5);
  text-align: center; max-width: 600px; margin: 0 auto 16px;
}
.s-intro p:last-child { margin-bottom: 0; }

/* PROBLEMS */
.s-problems { padding: 72px 40px; background: #faf8f4; }
.sec-label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--c3); font-weight: 600; text-align: center; margin-bottom: 10px;
}
.sec-title {
  font-family: var(--serif); font-size: 2.4rem; color: var(--c4);
  text-align: center; margin-bottom: 44px; line-height: 1.2;
}
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.prob-bottom-row {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 66%; margin: 0 auto; width: 100%;
}
.prob-card {
  background: #fff; border-radius: 10px; padding: 24px 20px;
  border-top: 3px solid var(--c3);
  box-shadow: 0 2px 14px rgba(120,144,144,0.08);
}
.prob-card h3 {
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--c4); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.prob-card ul { list-style: none; }
.prob-card ul li {
  font-size: 0.9rem; color: var(--c5); padding: 3px 0;
  line-height: 1.45;
}
.prob-card ul li::before { content: '· '; color: var(--c3); font-weight: 700; }

/* PATTERN BAND */
.s-pattern { padding: 64px 60px; background: var(--c4); text-align: center; }
.s-pattern .pattern-quote {
  font-family: var(--serif); font-size: 1.45rem; font-style: italic;
  color: rgba(255,255,255,0.92); line-height: 1.75;
  max-width: 580px; margin: 0 auto 28px;
}
.pattern-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pattern-tag {
  background: rgba(255,255,255,0.15); border-radius: 20px;
  padding: 6px 16px; font-size: 0.88rem; color: rgba(255,255,255,0.9);
}

/* TIMELINE */
.s-timeline { padding: 50px 60px; background: #faf8f4; }
.s-timeline h2 { font-family: var(--serif); font-size: 2.4rem; color: var(--c4); text-align: center; margin-bottom: 56px; }
.tl-track {
  position: relative; display: flex;
  justify-content: space-between; align-items: flex-start;
  max-width: 1000px; margin: 0 auto; padding: 0 2px;
}
.tl-track::before {
  content: ''; position: absolute; top: 22px;
  left: 10px; right: 10px;
  height: 3px; background: var(--c3);
}
.tl-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 20px; }
.tl-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c4); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  line-height: 1; margin: 0 auto 18px;
  box-shadow: 0 3px 14px rgba(120,144,144,0.4);
}
.tl-step h4 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.tl-step p { font-size: 0.88rem; color: var(--c5); line-height: 1.6; }

/* ABORDAGEM */
.s-abordagem { padding: 72px 60px; background: #fff; }
.s-abordagem h2 { font-family: var(--serif); font-size: 2.1rem; color: var(--c4); margin-bottom: 24px; }
.s-abordagem p { font-size: 1.06rem; line-height: 1.85; color: var(--c5); margin-bottom: 16px; }
.s-abordagem p:last-of-type { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag-item {
  background: #f0f6f0; border-radius: 20px; padding: 5px 14px;
  font-size: 0.88rem; color: var(--c4); border: 1px solid var(--c3);
}

/* SOBRE */
.s-sobre { padding: 80px 40px; background: var(--c2); }
.sobre-inner {
  display: flex; gap: 56px; align-items: center;
  max-width: 860px; margin: 0 auto;
}
.sobre-photo {
  width: 250px; min-width: 250px; height: 280px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(90,69,53,0.12);
  border: 3px solid rgba(255,255,255,0.6);
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre-text .sec-label { text-align: left; margin-bottom: 12px; }
.sobre-text h2 { font-family: var(--serif); font-size: 2.4rem; color: var(--dark); margin-bottom: 22px; }
.sobre-text p { font-size: 1.05rem; line-height: 1.9; color: #5a4535; margin-bottom: 14px; text-align: justify; }
.sobre-text p:last-child { margin-bottom: 0; }

/* CTA FINAL */
.s-cta-final { padding: 80px 40px; background: #fff; text-align: center; }
.s-cta-final blockquote {
  font-family: var(--serif); font-size: 1.65rem; font-style: italic;
  color: var(--c4); line-height: 1.65; max-width: 560px;
  margin: 0 auto 24px;
}
.s-cta-final .cta-sub {
  font-size: 1.06rem; color: var(--c5); max-width: 460px;
  margin: 0 auto 32px; line-height: 1.75;
}

/* AGENDAR */
.s-agendar { padding: 72px 40px; background: #faf8f4; text-align: center; }
.s-agendar h2 { font-family: var(--serif); font-size: 2.5rem; color: var(--c4); margin-bottom: 36px; }
.widget-block {
  background: #fff; border-radius: 10px; padding: 28px 24px;
  margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.reviews-block {
  background: #fff; border-radius: 10px; padding: 28px 24px;
  margin-bottom: 32px; max-width: 700px; margin-left: auto; margin-right: auto;
}

/* REVIEWS CAROUSEL */
.reviews-carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.4s ease; }
.carousel-slide { min-width: 100%; }
.review-card { text-align: center; padding: 6px 4px; }
.review-stars { font-size: 1.3rem; color: #f4b400; margin-bottom: 14px; letter-spacing: 3px; }
.review-text {
  font-size: 1rem; line-height: 1.75; color: var(--c5);
  margin-bottom: 14px; font-style: italic;
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 18px;
}
.carousel-btn {
  background: none; border: 1.5px solid var(--c3); color: var(--c4);
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1;
}
.carousel-btn:hover { background: var(--c4); color: #fff; border-color: var(--c4); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d4d4d4; border: none; cursor: pointer;
  transition: background 0.25s; padding: 0;
}
.carousel-dot.active { background: var(--c4); }
.social-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 26px; border-radius: 4px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; background: #fff; color: var(--c4);
  border: 1.5px solid var(--c4); transition: all 0.2s;
}
.social-btn img { width: 24px; height: 24px; object-fit: contain; }
.social-btn:hover { background: var(--c4); color: #fff; }

/* FOOTER */
footer { padding: 22px 40px; background: var(--c4); text-align: center; }
footer p { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* RESPONSIVE */

@media (max-width: 800px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  .hero {
    background-position: 50% 0;
    background-size: cover;
    background-attachment: scroll;
    align-items: flex-end;
    justify-content: center;
    min-height: 100svh;
  }
  .hero::before {
    background: linear-gradient(
      to top,
      rgba(35,58,58,0.97) 0%,
      rgba(35,58,58,0.90) 35%,
      rgba(35,58,58,0.40) 60%,
      transparent 80%
    );
  }
  .hero-content {
    padding: 40px 24px 56px;
    max-width: 100%;
    text-align: center;
  }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-bullets li { font-size: 0.82rem; }
  .hero-cta-text { margin-left: auto; margin-right: auto; font-size: 0.82rem; }
  .hero-bullets { text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }

  .s-intro { padding: 48px 24px; }
  .s-intro p { font-size: 1rem; }

  .s-problems { padding: 48px 20px; }
  .prob-grid { grid-template-columns: 1fr; }
  .prob-bottom-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .sec-title { font-size: 1.7rem; margin-bottom: 32px; }

  .s-pattern { padding: 48px 24px; }
  .s-pattern .pattern-quote { font-size: 1.15rem; }

  .s-timeline { padding: 48px 24px; }
  .s-timeline h2 { font-size: 1.7rem; margin-bottom: 36px; }
  .tl-track {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0;
  }
  .tl-track::before { display: none; }
  .tl-step { max-width: 360px; padding: 0; }
  .tl-dot { margin: 0 auto 14px; }
  .tl-step p { font-size: 0.85rem; }

  .s-abordagem { padding: 48px 24px; }
  .s-abordagem h2 { font-size: 1.7rem; }
  .s-abordagem p { font-size: 0.97rem; }

  .s-sobre { padding: 48px 24px; }
  .sobre-inner {
    flex-direction: column;
    gap: 32px;
  }
  .sobre-photo {
    width: 180px; min-width: 180px; height: 220px;
  }
  .sobre-text h2 { font-size: 1.8rem; }
  .sobre-text p { font-size: 0.95rem; text-align: left; }

  .s-cta-final { padding: 48px 24px; }
  .s-cta-final blockquote { font-size: 1.25rem; }

  .s-agendar { padding: 48px 24px; }
  .s-agendar h2 { font-size: 1.8rem; }

  .review-text { font-size: 0.92rem; }
  .review-stars { font-size: 1.15rem; }

  footer { padding: 18px 24px; }
}
