:root {
  --bg: #ffffff;
  --bg-soft: #f9eff6;
  --bg-soft-2: #f6eef3;
  --bg-card: rgba(255, 255, 255, 0.88);
  --text: #20332d;
  --muted: #5c6f68;
  --line: rgba(32, 51, 45, 0.12);
  --green: #6f8f7d;
  --green-dark: #577160;
  --green-soft: rgba(111, 143, 125, 0.12);
  --shadow-lg: 0 22px 64px rgba(31, 44, 38, 0.10);
  --shadow-md: 0 14px 36px rgba(31, 44, 38, 0.08);
  --shadow-sm: 0 8px 20px rgba(31, 44, 38, 0.05);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 239, 246, 0.85), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(249, 239, 246, 0.72), rgba(255, 255, 255, 0.94));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(111, 143, 125, 0.55);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.4rem, 6vw, 5.3rem);
  line-height: 0.92;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.7rem;
  line-height: 1.04;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32, 51, 45, 0.06);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(30, 45, 38, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(111, 143, 125, 0.09);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(32, 51, 45, 0.12);
}

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

.hero {
  overflow: clip;
  padding: 56px 0 92px;
}

.hero-grid,
.about-grid,
.benefits-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 68px;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.hero-text {
  margin-top: 28px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 0.98rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #759584 0%, #648272 100%);
  box-shadow: 0 14px 30px rgba(100, 130, 114, 0.20);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(100, 130, 114, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(32, 51, 45, 0.10);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.hero-points div,
.highlight-item {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(32, 51, 45, 0.06);
}

.hero-points strong,
.highlight-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.hero-points span,
.highlight-item span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.hero-panel {
  position: absolute;
  inset: 82px 54px 38px 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 239, 246, 0.46));
  border: 1px solid rgba(32, 51, 45, 0.05);
}

.hero-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #f1edea;
  border: 1px solid rgba(32, 51, 45, 0.06);
}

.main-photo {
  position: absolute;
  right: 0;
  top: 22px;
  width: min(100%, 500px);
  aspect-ratio: 0.82 / 1;
}

.main-photo img,
.portrait-card img,
.quote-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-photo img {
  object-position: 58% center;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 15px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(32, 51, 45, 0.05);
}

.floating-note-top {
  left: 0;
  top: 118px;
}

.floating-note-bottom {
  left: 34px;
  bottom: 10px;
  max-width: 252px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.section-heading {
  margin-bottom: 44px;
}

.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered h2 {
  margin-top: 16px;
}

.issue-grid,
.timeline-grid {
  display: grid;
  gap: 22px;
}

.issue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.issue-card,
.timeline-card,
.contact-shell,
.portrait-card,
.quote-card {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.issue-card,
.timeline-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(32, 51, 45, 0.06);
}

.issue-card h3,
.timeline-card h3 {
  margin-bottom: 12px;
}

.about-photo {
  min-height: 650px;
}

.portrait-card {
  overflow: hidden;
  height: 100%;
  min-height: 650px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(32, 51, 45, 0.06);
}

.portrait-card img {
  object-position: center 24%;
}

.about-copy h2,
.benefits-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-top: 16px;
  margin-bottom: 22px;
}

.about-copy p+p {
  margin-top: 18px;
}

.formation {
  padding: 18px 20px;
  border-left: 3px solid rgba(111, 143, 125, 0.55);
  background: rgba(111, 143, 125, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-highlights {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.timeline-card {
  position: relative;
  padding-top: 72px;
}

.timeline-step {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 700;
  border-radius: 12px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}

.benefits-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(180deg, #7f9d8c, #668371);
}

.quote-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(32, 51, 45, 0.06);
}

.quote-card img {
  height: 100%;
  object-position: center 18%;
}

.quote-overlay {
  position: absolute;
  inset: auto 22px 22px 22px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 51, 45, 0.05);
}

.quote-overlay p {
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.75;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 51, 45, 0.06);
  box-shadow: var(--shadow-sm);
}

.cta-band-inner h2 {
  max-width: 760px;
  margin-top: 16px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(32, 51, 45, 0.06);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-right: 26px;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin-top: 14px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(32, 51, 45, 0.06);
}

.contact-form,
.contact-copy {
  align-self: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 51, 45, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(111, 143, 125, 0.7);
  box-shadow: 0 0 0 4px rgba(111, 143, 125, 0.10);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.site-footer {
  padding: 34px 0 44px;
  background: #f7f4f6;
  border-top: 1px solid rgba(32, 51, 45, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-copy p,
.footer-copy small {
  display: block;
}

.footer-copy p+p {
  margin-top: 6px;
}

.footer-copy small {
  margin-top: 10px;
  line-height: 1.7;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: rgba(95, 126, 110, 0.96);
  box-shadow: 0 14px 30px rgba(67, 94, 81, 0.22);
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(32, 51, 45, 0.10);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

@media (max-width: 1080px) {

  .hero-grid,
  .about-grid,
  .benefits-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 660px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-copy,
  .benefits-copy {
    max-width: none;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav.open {
    display: grid;
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(32, 51, 45, 0.08);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
  }

  .site-nav.open a {
    justify-content: flex-start;
    padding: 0 14px;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .field-row,
  .hero-points,
  .timeline-grid,
  .cta-band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-panel {
    inset: 54px 20px 18px 0;
  }

  .main-photo {
    width: calc(100% - 20px);
    right: 0;
  }

  .floating-note-top {
    left: 8px;
    top: 82px;
  }

  .floating-note-bottom {
    left: 14px;
    bottom: -2px;
    max-width: 210px;
  }

  .portrait-card,
  .about-photo,
  .quote-card {
    min-height: 520px;
  }

  .contact-shell {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

/* ===== CONTATO ===== */

.contact-section {
  padding: 110px 0;
  background: #f6f6f4;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  background: #ffffff;
  border: 1px solid #e4e9e4;
  border-radius: 10px;
  padding: 48px;
  box-shadow: 0 18px 46px rgba(26, 36, 31, 0.06);
  position: relative;
}

.contact-shell::after {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: calc(50% - 28px);
  width: 1px;
  background: linear-gradient(to bottom,
      rgba(110, 139, 123, 0),
      rgba(110, 139, 123, 0.18),
      rgba(110, 139, 123, 0));
}

.contact-copy {
  padding-right: 8px;
}

.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e8b7b;
  font-weight: 700;
}

.contact-copy .eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #789684;
  display: inline-block;
}

.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #20332c;
}

.contact-copy p {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  color: #617067;
}

/* ===== FORM ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label span {
  font-size: 14px;
  font-weight: 700;
  color: #20332c;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5ddd7;
  background: #ffffff;
  border-radius: 8px;
  padding: 15px 16px;
  font-size: 15px;
  color: #23342d;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.18s ease;
  box-sizing: border-box;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #a8b9af;
  background: #fcfdfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6e8b7b;
  box-shadow: 0 0 0 4px rgba(110, 139, 123, 0.12);
  background: #ffffff;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #97a49d;
}

/* botão do formulário */
.contact-form button,
.contact-form .contact-btn,
.contact-form .btn-submit {
  margin-top: 4px;
  border: none;
  border-radius: 8px;
  background: #789684;
  color: #ffffff;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  box-shadow: 0 12px 24px rgba(120, 150, 132, 0.18);
}

.contact-form button:hover,
.contact-form .contact-btn:hover,
.contact-form .btn-submit:hover {
  background: #698775;
  transform: translateY(-1px);
}

.contact-form button:active,
.contact-form .contact-btn:active,
.contact-form .btn-submit:active {
  transform: translateY(0);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 24px;
  }

  .contact-shell::after {
    display: none;
  }

  .contact-copy p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 84px 0;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    font-size: 36px;
  }
}