:root {
  --purple: #5b4a70;
  --purple-dark: #241b2e;
  --green: #86bc3b;
  --green-dark: #6fa02c;
  --cream: #faf9fb;
  --text: #33283f;
  --text-light: #f5f3f7;
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0 0 .5em; }

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: 760px; }

/* Header */
.site-header {
  background: var(--purple);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
.brand img { height: 60px; }
.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a.active { text-decoration: underline; text-underline-offset: 6px; }
.site-nav a:hover { text-decoration: underline; text-underline-offset: 6px; }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--text-light);
  height: 2px;
  width: 26px;
  position: relative;
  border-radius: 2px;
}
.nav-toggle-label span::before { content: ""; position: absolute; top: -8px; }
.nav-toggle-label span::after { content: ""; position: absolute; top: 8px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  color: #fff;
}
.btn-green { background: var(--green); }
.btn-green:hover { background: var(--green-dark); text-decoration: none; }

.link-arrow, .link-arrow-light {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.link-arrow::after, .link-arrow-light::after { content: " →"; }
.link-arrow-light { color: var(--text-light); }

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  padding: 140px 0 100px;
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 640px;
  margin: 0 auto 32px;
}

.page-hero {
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  color: #fff;
}
.page-hero h1 { margin: 0; }

/* About split */
.about { padding: 72px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.about-photo { border-radius: 8px; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--purple);
  margin: 0 0 8px;
}

/* Atuação band (home) */
.atuacao-band {
  background: var(--purple);
  color: var(--text-light);
  padding: 64px 0;
}
.atuacao-band h2 { text-align: center; color: #fff; margin-bottom: 40px; }
.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.atuacao-item h3 { color: #fff; font-size: 1.1rem; }
.atuacao-item p { color: var(--text-light); opacity: .9; }

/* Services grid (atuacao page) */
.services { padding: 64px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  display: block;
  background: #faf9fb;
  border: 1px solid #eee6f2;
  border-radius: 8px;
  padding: 28px;
  color: var(--text);
}
.service-card:hover { border-color: var(--purple); text-decoration: none; }
.service-card h3 { color: var(--purple); }

/* Generic page */
.page { padding: 56px 0 72px; }
.page h1 { color: var(--purple); }
.page img { border-radius: 8px; margin: 24px 0; }

/* Footer */
.site-footer {
  background: var(--purple-dark);
  color: var(--text-light);
  padding: 56px 0 32px;
}
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a { color: var(--text-light); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start; }
.footer-brand img { height: 56px; margin-bottom: 12px; }
.footer-copy { font-size: .85rem; opacity: .7; }

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-brand { align-items: flex-start; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple);
    flex-direction: column;
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-toggle-label { display: block; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
}

/* Consent banner */
[hidden] { display: none !important; }

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--purple-dark);
  color: var(--text-light);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
}
.consent-banner p { margin: 0; }
.consent-actions { display: flex; gap: 12px; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}
.btn-outline:hover { background: rgba(255,255,255,.1); text-decoration: none; }

/* Hero v2 */
.hero-inner { text-align: left; max-width: 640px; }
.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 16px;
}
.hero h1 { text-align: left; margin: 0 0 20px; font-weight: 700; }
.hero h1 .hl { color: var(--green); }
.trust-bar {
  display: inline-block;
  font-size: .9rem;
  opacity: .9;
  margin: 0 0 28px;
}

/* Need-to-help band */
.need-band { padding: 64px 0; background: var(--cream); }
.need-band h2 { text-align: center; color: var(--purple); margin-bottom: 40px; }
.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.need-card {
  display: block;
  background: #fff;
  border: 1px solid #eee6f2;
  border-radius: 8px;
  padding: 28px;
  color: var(--text);
}
.need-card:hover { border-color: var(--purple); text-decoration: none; }
.need-card h3 { color: var(--purple); font-size: 1.05rem; }

/* Team carousel */
.team-section { padding: 64px 0 72px; background: var(--cream); }
.team-section h2 { text-align: center; color: var(--purple); margin-bottom: 32px; }
.team-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}
.team-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee6f2;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.team-card h3 { margin-bottom: 4px; }
.team-crp { color: var(--purple); font-weight: 600; font-size: .85rem; margin: 0 0 12px; }
.team-approach { font-size: .9rem; }
.team-nav { display: none; gap: 12px; justify-content: center; margin-top: 16px; }
.is-enhanced .team-nav { display: flex; }
.team-nav button {
  border: 1px solid var(--purple);
  background: #fff;
  color: var(--purple);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

/* FAQ accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #eee6f2;
  border-radius: 8px;
  padding: 16px 20px;
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
}
.faq-item p { margin: 12px 0 0; }
