@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7faf8;
  --bg-soft: #edf5f1;
  --card: #ffffff;

  --text: #1d2b24;
  --text-soft: #64746d;
  --text-muted: #7b8a83;

  --primary: #3d7a63;
  --primary-dark: #285846;
  --primary-soft: #dcece5;

  --accent: #d8a765;
  --accent-soft: #f5ead9;

  --line: #dce7e0;

  --shadow: 0 22px 55px rgba(29, 43, 36, 0.08);
  --shadow-strong: 0 30px 90px rgba(61, 122, 99, 0.18);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ANIMAÇÃO AO ROLAR */

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.95s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s ease;
}

.reveal.ativo {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* TOPO */

.topo {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topo-conteudo {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo span {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.logo small {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: 0.2s;
}

.menu a:hover {
  color: var(--primary);
}

.btn-topo,
.btn-principal,
.btn-contato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(61, 122, 99, 0.2);
  transition: 0.25s;
}

.btn-topo:hover,
.btn-principal:hover,
.btn-contato:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secundario {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-weight: 800;
  transition: 0.25s;
}

.btn-secundario:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 167, 101, 0.18), transparent 28%),
    radial-gradient(circle at 8% 16%, rgba(61, 122, 99, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(2.45rem, 5.4vw, 4.75rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.selos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.selos div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(29, 43, 36, 0.04);
}

.selos strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.selos span {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 3px;
}

/* HERO CARD */

.hero-card {
  min-height: 500px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 167, 101, 0.32), transparent 30%),
    linear-gradient(145deg, #5d927c 0%, #2f6d58 54%, #214d3f 100%);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.card-consulta {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 64px rgba(29, 43, 36, 0.22);
}

.card-consulta h2 {
  margin: 12px 0;
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.card-consulta p {
  font-size: 0.98rem;
  color: var(--text-soft);
}

.consulta-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.consulta-info div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.consulta-info strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.consulta-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.card-consulta a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

/* FAIXA */

.faixa {
  padding: 0 0 28px;
  margin-top: -20px;
}

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

.faixa-grid div {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.faixa-grid strong {
  display: block;
  color: var(--primary-dark);
  font-weight: 800;
}

.faixa-grid span {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* SEÇÕES */

.sobre,
.atendimentos,
.como-funciona,
.beneficios,
.duvidas,
.contato {
  padding: 82px 0;
}

.sobre-grid,
.beneficios-grid,
.como-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.secao-cabecalho h2,
.secao-titulo h2,
.como-card h2,
.contato-card h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.texto p,
.secao-titulo p {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-top: 14px;
}

.secao-titulo {
  max-width: 740px;
  margin-bottom: 34px;
}

/* CARDS */

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

.card {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
}

.card.destaque {
  background: var(--primary-dark);
  color: white;
}

.card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.card.destaque span {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.card p {
  color: var(--text-soft);
}

.card.destaque p {
  color: rgba(255, 255, 255, 0.78);
}

/* COMO FUNCIONA */

.como-card {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 167, 101, 0.24), transparent 28%),
    linear-gradient(135deg, #244f40 0%, #17362c 100%);
  color: white;
  box-shadow: 0 28px 80px rgba(29, 43, 36, 0.18);
}

.como-card .tag {
  color: #f5d9ad;
}

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

.passos div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.passos strong {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  color: var(--primary-dark);
}

.passos p {
  color: rgba(255, 255, 255, 0.82);
}

/* BENEFÍCIOS */

.beneficios {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.beneficios-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.beneficios-lista div {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
}

.beneficios-lista h3 {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 800;
}

.beneficios-lista p {
  color: var(--text-soft);
}

/* FAQ */

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

details {
  padding: 22px 24px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(29, 43, 36, 0.04);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--text);
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 1.3rem;
}

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

details p {
  margin-top: 12px;
  color: var(--text-soft);
}

/* CONTATO */

.contato-card {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 167, 101, 0.22), transparent 28%),
    linear-gradient(135deg, #5d927c 0%, #2f6d58 100%);
  color: white;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contato-card .tag {
  color: #f5ead9;
}

.contato-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
}

.btn-contato {
  background: white;
  color: var(--primary-dark);
  box-shadow: none;
  white-space: nowrap;
}

.btn-contato:hover {
  background: var(--accent-soft);
}

/* RODAPÉ */

.rodape {
  padding: 30px 0 40px;
  background: white;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.rodape-conteudo {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

/* RESPONSIVO */

@media (max-width: 980px) {
  .hero-grid,
  .sobre-grid,
  .beneficios-grid,
  .como-card {
    grid-template-columns: 1fr;
  }

  .cards,
  .faixa-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

  .beneficios-lista {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .menu {
    display: none;
  }

  .topo-conteudo {
    min-height: 68px;
  }

  .logo small {
    display: none;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

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

  .consulta-info {
    grid-template-columns: 1fr;
  }

  .sobre,
  .atendimentos,
  .como-funciona,
  .beneficios,
  .duvidas,
  .contato {
    padding: 62px 0;
  }

  .como-card,
  .contato-card {
    padding: 32px 24px;
  }

  .contato-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-contato {
    width: 100%;
  }

  .rodape-conteudo {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-acoes {
    flex-direction: column;
  }

  .btn-principal,
  .btn-secundario {
    width: 100%;
  }

  .hero-card {
    min-height: 380px;
    padding: 20px;
  }

  .card-consulta {
    padding: 24px;
  }
}

/* MENU MOBILE — PORTFÓLIO */

@media (max-width: 850px) {
  .topo-conteudo {
    min-height: auto;
    padding: 18px 0 12px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .menu {
    order: 3;
    width: 100%;
    display: flex !important;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 0 4px;
    scrollbar-width: none;
  }

  .menu::-webkit-scrollbar {
    display: none;
  }

  .menu a {
    flex: 0 0 auto;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .btn-topo {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}