/* ===== Tokens ===== */
:root {
  --bg: #EFF4E8;
  --card: #D8E8B8;
  --dark: #1E4034;
  --text: #1E2B24;
  --text-soft: #5A6B5F;
  --accent: #6B8F4E;
  --white: #FFFFFF;
  --radius-lg: 32px;
  --radius-md: 24px;
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; }
h3 { font-size: 1.3rem; }

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

section { padding: 96px 0; }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

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

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.btn-arrow i, .btn-arrow svg { width: 18px; height: 18px; color: var(--white); }

.btn-small { padding: 8px 8px 8px 20px; font-size: .9rem; }
.btn-small .btn-arrow { width: 30px; height: 30px; }
.btn-small .btn-arrow i, .btn-small .btn-arrow svg { width: 15px; height: 15px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 244, 232, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30, 64, 52, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}

.logo i, .logo svg { width: 22px; height: 22px; color: var(--accent); }
.logo small { display: block; font-size: .65rem; font-weight: 400; color: var(--text-soft); letter-spacing: .04em; text-transform: uppercase; }

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--accent); }

.main-nav a.active { color: var(--accent); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

@media (max-width: 860px) {
  .main-nav { display: none; }
}

@media (max-width: 480px) {
  .header-inner .btn-small {
    font-size: .78rem;
    padding: 7px 7px 7px 14px;
    gap: 8px;
    white-space: nowrap;
  }
  .header-inner .btn-small .btn-arrow { width: 26px; height: 26px; }
  .header-inner .btn-small .btn-arrow i, .header-inner .btn-small .btn-arrow svg { width: 13px; height: 13px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 72px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-shape { position: absolute; width: 480px; opacity: .6; z-index: 0; }
.hero-shape-1 { top: -120px; right: -140px; }
.hero-shape-2 { bottom: 40px; left: -180px; width: 380px; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-sub {
  color: var(--text-soft);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-media { position: relative; }

.hero-photo-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media (min-width: 861px) {
  .hero-photo {
    transform: scale(1.18);
    transform-origin: 50% 30%;
  }
}

.social-proof-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(30, 43, 36, .15);
  text-decoration: none;
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
}

.social-proof-avatar { width: 44px; height: 44px; border-radius: 50%; }
.social-proof-card i, .social-proof-card svg { width: 14px; height: 14px; color: var(--accent); vertical-align: middle; }
.social-proof-card small { font-weight: 400; color: var(--text-soft); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 48px; }
  .hero-media { order: -1; max-width: 340px; margin: 0 auto 40px; }
  .social-proof-card { left: 12px; }
}

@media (max-width: 600px) {
  .hero { padding-top: 24px; }
  .hero-inner { gap: 0; position: relative; }
  .hero-text { position: relative; z-index: 1; }
  .hero-media {
    order: 0;
    position: absolute;
    inset: 0;
    max-width: none;
    margin: 0;
    z-index: 0;
    opacity: .16;
    pointer-events: none;
  }
  .hero-photo-frame { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; }
  .hero-photo { width: 100%; height: 100%; aspect-ratio: auto; }
  .social-proof-card { display: none; }
}

/* Marquee */
.marquee {
  background: var(--card);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track span {
  font-weight: 600;
  color: var(--dark);
  font-size: .95rem;
}

.marquee-track i, .marquee-track svg { width: 16px; height: 16px; color: var(--accent); margin-right: 16px; flex-shrink: 0; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Processo ===== */
.processo-cards {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: 0 8px 24px rgba(30, 64, 52, .06);
}

.processo-card { flex: 1; }

.processo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.card-tag {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.processo-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.processo-connector i,
.processo-connector svg {
  box-sizing: border-box;
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(107, 143, 78, .35);
}

@media (max-width: 860px) {
  .processo-cards { flex-direction: column; }
  .processo-connector { transform: rotate(90deg); align-self: center; }
}

/* ===== Sobre ===== */
.sobre-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.sobre-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.sobre-lista { list-style: none; padding: 0; margin: 0 0 32px; }

.sobre-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text-soft);
}

.sobre-lista li i,
.sobre-lista li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.sobre-lista li strong { color: var(--text); }

@media (max-width: 860px) {
  .sobre-inner { grid-template-columns: 1fr; }
}

/* ===== Depoimentos ===== */
.depoimentos {
  background: var(--dark);
  border-radius: var(--radius-md);
  margin: 0 clamp(24px, 6vw, 96px);
  padding: 56px 0;
  color: var(--white);
}

@media (max-width: 600px) {
  .depoimentos { margin: 0 16px; padding: 40px 0; }
}

.depoimentos h2 { color: var(--white); }
.depoimentos .section-sub { color: rgba(255,255,255,.7); }

.depoimentos-carrossel {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.depoimentos-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: depoimentos-scroll 65s linear infinite;
}

.depoimentos-carrossel:hover .depoimentos-track,
.depoimentos-track:focus-within {
  animation-play-state: paused;
}

@keyframes depoimentos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.depoimento-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 32px;
  width: 320px;
  flex: 0 0 320px;
}

.stars { color: var(--dark); letter-spacing: 2px; margin-bottom: 16px; }
.depoimento-card p { color: var(--text-soft); margin-bottom: 24px; }

.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.depoimento-autor strong { display: block; }
.depoimento-idade { color: var(--text-soft); font-size: .85rem; }

@media (max-width: 600px) {
  .depoimentos-track { animation-duration: 42s; gap: 16px; }
  .depoimento-card { width: 240px; flex: 0 0 240px; padding: 20px; }
  .depoimento-card p { font-size: .9rem; margin-bottom: 16px; }
  .depoimento-avatar { width: 36px; height: 36px; font-size: .9rem; }
  .depoimento-autor strong { font-size: .9rem; }
  .depoimento-idade { font-size: .8rem; }
}

/* ===== Localização + FAQ ===== */
.localizacao-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  text-align: left;
}

.localizacao-header h2 { text-align: left; }
.localizacao-header .section-sub { text-align: left; margin: 0 0 20px; }
.localizacao-header .btn { flex-shrink: 0; }

.endereco {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}

.endereco i, .endereco svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.mapa {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 8px 24px rgba(30, 64, 52, .08);
}

.mapa iframe { display: block; }

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

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.faq-titulo h2 { text-align: left; }

.faq-item {
  border-bottom: 1px solid rgba(30, 64, 52, .12);
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-pergunta i, .faq-pergunta svg { width: 20px; height: 20px; color: var(--accent); transition: transform .3s ease; flex-shrink: 0; }
.faq-pergunta[aria-expanded="true"] i, .faq-pergunta[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-resposta p { margin: 0 0 20px; color: var(--text-soft); padding: 0 4px; }

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

/* ===== CTA final ===== */
.cta-final-card {
  background: var(--card);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 24px;
  padding: 40px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.cta-final-text p { color: var(--text-soft); margin-bottom: 28px; }

.cta-final-media { position: relative; text-align: right; }
.cta-final-media img {
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-left: auto;
  transform: translateY(24px);
  box-shadow: 0 16px 40px rgba(30, 64, 52, .18);
}

@media (max-width: 860px) {
  .cta-final-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .cta-final-media { text-align: center; margin-top: 16px; }
  .cta-final-media img { transform: none; margin: 0 auto; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.logo-light { color: var(--white); }
.logo-light small { color: rgba(255,255,255,.6); }

.footer-col p { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: .92rem; }
.footer-col p i, .footer-col p svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-col a { color: rgba(255,255,255,.85); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.footer-col a:hover { color: var(--white); }

.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-links a { font-size: .85rem; opacity: .7; }

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.footer-bottom a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover { color: var(--white); }

/* ===== WhatsApp flutuante ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(30, 64, 52, .35);
  z-index: 90;
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float i, .whatsapp-float svg { width: 28px; height: 28px; }

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

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

/* ===== Páginas legais ===== */
.legal {
  padding: 64px 0 96px;
}

.legal .container { max-width: 760px; }

.legal-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.legal-voltar:hover { color: var(--accent); }
.legal-voltar i, .legal-voltar svg { width: 16px; height: 16px; }

.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); text-align: left; margin-bottom: 8px; }
.legal .legal-atualizado { color: var(--text-soft); font-size: .85rem; margin-bottom: 40px; }

.legal h2 {
  font-size: 1.25rem;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal p, .legal li { color: var(--text-soft); font-size: 1rem; }
.legal p { margin-bottom: 16px; }
.legal ul { padding-left: 20px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
.legal a { color: var(--accent); }
