:root {
  --bg: #fbfdf8;
  --surface: #ffffff;
  --surface-soft: #eef7ed;
  --text: #1d2a22;
  --muted: #5e6e63;
  --line: #d8e4d8;
  --green: #2f6b4f;
  --green-dark: #1f4d39;
  --gold: #c99b3c;
  --gold-soft: #f7e6bb;
  --shadow: 0 18px 45px rgba(41, 79, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

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

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(16px, calc((100vw - 1120px) / 2));
  background: rgba(251, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--green-dark);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.nav-strong {
  color: var(--green-dark);
}

.nav-strong {
  font-weight: 700;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 230, 187, 0.9), transparent 34%),
    linear-gradient(135deg, #fbfdf8 0%, #eef7ed 58%, #f8f4e9 100%);
}

.hero-photo {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #132319;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 29, 20, 0.78) 0%, rgba(13, 29, 20, 0.48) 42%, rgba(13, 29, 20, 0.1) 100%),
    url("../img/maca-natureza.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.glass-copy {
  max-width: 720px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(15, 35, 24, 0.36);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.glass-copy h1,
.glass-copy .lead {
  color: #fff;
}

.glass-copy .secondary {
  background: rgba(255, 255, 255, 0.92);
}

.hero-signals {
  display: grid;
  gap: 12px;
  align-self: end;
}

.hero-signals div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
}

.hero-signals span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-signals strong {
  display: block;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.hero-presencial {
  background:
    radial-gradient(circle at 82% 8%, rgba(247, 230, 187, 0.92), transparent 32%),
    linear-gradient(135deg, #fbfdf8 0%, #e8f3ea 62%, #fff8e8 100%);
}

.presencial-photo {
  background:
    linear-gradient(135deg, rgba(23, 47, 33, 0.88), rgba(23, 47, 33, 0.42)),
    url("../img/presencial-atendimento-real.webp") center / cover no-repeat;
}

.soft-glass {
  background: rgba(15, 35, 24, 0.54);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  color: var(--green-dark);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--green-dark);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.lead {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 107, 79, 0.24);
}

.secondary {
  background: #fff;
  color: var(--green-dark);
  border-color: var(--line);
}

.light {
  background: #fff;
  color: var(--green-dark);
  box-shadow: var(--shadow);
}

.quiet-box,
.quote-box,
.notice,
details,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.photo-panel {
  transform: rotate(1.2deg);
}

.hero-panel img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.hero-presencial .hero-panel img {
  height: 390px;
}

.panel-content {
  padding: 24px;
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--green-dark);
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.visual-break {
  padding: 0;
  background: #15251c;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
  min-height: 310px;
  padding-top: 58px;
  padding-bottom: 58px;
  color: #fff;
}

.visual-strip h2,
.visual-strip p,
.visual-strip .eyebrow {
  color: #fff;
}

.visual-strip p {
  margin: 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.soft {
  background: var(--surface-soft);
}

.intro p,
.section-heading p,
.quiet-box p,
.quote-box p,
.notice p,
details p,
.service-grid p,
.timeline p,
.gps-note {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: #fff;
}

.step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
}

.notice p,
.notice h3 {
  margin-bottom: 0;
}

.notice h3 {
  margin-bottom: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.visual-copy {
  align-self: center;
}

.compact-section {
  padding-top: 0;
}

.wide-box {
  box-shadow: none;
}

.wide-box .check-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.wide-box .check-list li {
  margin: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.quiet-box,
.quote-box {
  padding: 30px;
}

.quote-box {
  background: var(--green-dark);
}

.quote-box p {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.check-list,
.number-list {
  margin: 0;
  padding-left: 20px;
}

.check-list li,
.number-list li {
  margin-bottom: 10px;
}

.feature-band {
  background: linear-gradient(135deg, var(--green-dark), #367b5a);
  color: #fff;
}

.feature-band h2,
.feature-band p,
.feature-band .eyebrow {
  color: #fff;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.feature-content p {
  max-width: 650px;
}

.visual-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  align-items: center;
}

.cta-photo {
  margin: 0;
}

.cta-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.cta-photo figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

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

details {
  padding: 20px;
}

summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 22px;
  background: #fff;
  border-left: 3px solid var(--gold);
}

.timeline-item span {
  color: var(--green-dark);
  font-weight: 900;
}

.timeline-item p,
.timeline-item h3 {
  margin-bottom: 0;
}

.timeline-item h3 {
  margin-bottom: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-grid article {
  padding: 24px;
  box-shadow: none;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

address {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 800;
}

.gps-note {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: var(--surface-soft);
}

.map-button {
  margin-top: 6px;
}

.location-photo {
  margin: 0;
}

.image-card {
  margin: 0;
}

.image-card img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.location-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 36px 0;
  background: #15251c;
  color: #fff;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero-grid,
  .hero-overlay-grid,
  .visual-strip,
  .visual-cta,
  .two-col,
  .location-grid,
  .steps,
  .service-grid,
  .faq-grid,
  .wide-box .check-list {
    grid-template-columns: 1fr;
  }

  .notice,
  .feature-content,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions .button,
  .notice .button,
  .feature-content .button {
    width: 100%;
  }
}
