/* ============================================================
   AMPARA · Site
   Light premium aesthetic — longevidade com cuidado e confiança
   Display: Fraunces  ·  Body: Manrope
   ============================================================ */

:root {
  /* Color palette — exactly as briefed */
  --green-deep: #243D35;        /* títulos, botões principais, áreas de destaque */
  --green-deep-hover: #1B2E27;
  --cream: #F6F2EA;             /* fundo principal */
  --white-warm: #FFFDF8;        /* cards, áreas internas */
  --graphite: #1F2523;          /* textos principais */
  --olive: #6F7F68;             /* ícones, linhas finas, secundários */
  --olive-soft: rgba(111, 127, 104, 0.18);
  --champagne: #C9A86A;         /* destaques premium, com moderação */
  --champagne-soft: rgba(201, 168, 122, 0.16);
  --champagne-warmer: #B8975A;

  --max-w: 1280px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --radius-card: 18px;
  --radius-btn: 8px;
  --shadow-card: 0 2px 14px rgba(36, 61, 53, 0.06), 0 0 0 1px rgba(111, 127, 104, 0.08);
  --shadow-card-hover: 0 8px 28px rgba(36, 61, 53, 0.1), 0 0 0 1px rgba(201, 168, 122, 0.18);

  --display: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--champagne); color: var(--graphite); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--champagne-warmer);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.eyebrow--light { color: var(--champagne); }
.eyebrow--gold { color: var(--champagne); }

em {
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(246, 242, 234, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(111, 127, 104, 0.12);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-deep);
}

.nav__mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}

.nav__word {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 13px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  font-size: 14px;
  color: var(--graphite);
  font-weight: 500;
}

.nav__links a {
  transition: color 0.25s ease;
  position: relative;
}

.nav__links a:hover { color: var(--green-deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-deep);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--green-deep);
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
}

.nav__cta:hover {
  background: var(--green-deep);
  color: var(--cream);
}

@media (max-width: 880px) { .nav__links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 5rem;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(201, 168, 122, 0.08), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(111, 127, 104, 0.06), transparent 55%),
    var(--cream);
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__content { max-width: 620px; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.75rem;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144;
}

.hero__title em { color: var(--champagne-warmer); }

.hero__subtitle {
  font-size: 1.13rem;
  line-height: 1.65;
  color: var(--graphite);
  margin: 0 0 2.5rem;
  max-width: 540px;
  font-weight: 400;
  opacity: 0.85;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ============================================================
   HIGHLIGHTS STRIP (below hero, 4 cards)
   ============================================================ */

.highlights {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 3rem 0 0;
  border-top: 1px solid var(--olive-soft);
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.highlight__icon {
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.highlight__title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0;
  letter-spacing: -0.005em;
}

.highlight__body {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--graphite);
  opacity: 0.78;
  margin: 0;
}

@media (max-width: 960px) {
  .highlights { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 540px) {
  .highlights { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 64px rgba(36, 61, 53, 0.18);
  display: block;
}

@media (max-width: 960px) {
  .hero { padding-top: 7rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__photo { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero__signals { gap: 1rem; }
  .signal { font-size: 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
}

.btn--primary {
  background: var(--green-deep);
  color: var(--white-warm);
}

.btn--primary:hover {
  background: var(--green-deep-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(36, 61, 53, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--champagne);
}

.btn--secondary:hover {
  background: var(--champagne-soft);
  border-color: var(--champagne-warmer);
}

.btn--gold {
  background: var(--champagne);
  color: var(--graphite);
}

.btn--gold:hover {
  background: var(--champagne-warmer);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 168, 122, 0.3);
}

.btn--large {
  padding: 1.15rem 2.25rem;
  font-size: 15px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 7rem var(--gutter);
  background: var(--white-warm);
}

.section--cream { background: var(--cream); }

.section--dark {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--champagne), transparent);
  opacity: 0.5;
}

.section--investors {
  background: var(--graphite);
  color: var(--cream);
  position: relative;
}

.section--investors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--champagne), transparent);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.section__header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.section__header--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__number {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--champagne-warmer);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.section__number--light { color: var(--champagne); }

.section__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144;
}

.section__title em { color: var(--champagne-warmer); }

.section__title--light {
  color: var(--cream);
}

.section__title--light em { color: var(--champagne); }

.section__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--graphite);
  opacity: 0.82;
  max-width: 680px;
  margin: 0 0 1.2rem;
  font-weight: 400;
}

.section__lead:last-child { margin-bottom: 0; }

.section__lead--light {
  color: var(--cream);
  opacity: 0.85;
}

.section__header--centered .section__lead { margin-left: auto; margin-right: auto; }

@media (max-width: 880px) {
  .section { padding: 5rem var(--gutter); }
  .section__header { margin-bottom: 3rem; }
}

/* ============================================================
   GRID
   ============================================================ */

.grid { display: grid; gap: 1.75rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--investors {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--investors { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .grid--3, .grid--4, .grid--investors { grid-template-columns: 1fr; }
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--olive);
}

.card__icon svg { width: 24px; height: 24px; }

.card--solution .card__icon {
  background: var(--green-deep);
  color: var(--champagne);
}

.card__title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-deep);
  margin: 0 0 0.85rem;
  line-height: 1.3;
}

.card__body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--graphite);
  opacity: 0.82;
  margin: 0;
}

.section--cream .card { background: var(--white-warm); }

/* ============================================================
   IMPACT BLOCK (green callout)
   ============================================================ */

.impact-block {
  background: var(--green-deep);
  color: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 4rem 3rem;
  margin: 5rem 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-block::before, .impact-block::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: var(--champagne);
}

.impact-block::before { top: 2rem; left: 50%; transform: translateX(-50%); }
.impact-block::after { bottom: 2rem; left: 50%; transform: translateX(-50%); }

.impact-block__quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  font-variation-settings: "opsz" 144;
}

.impact-block__quote em { color: var(--champagne); }

/* ============================================================
   DATA CARDS (Por que agora — dark section)
   ============================================================ */

.grid--data { gap: 1.5rem; }

.data-card {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

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

.data-card--featured {
  background: var(--cream);
  border: 1px solid var(--champagne-soft);
}

.data-card__number {
  font-family: var(--display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--champagne-warmer);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.data-card__label {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0 0 1.5rem;
}

.data-card__source {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid var(--olive-soft);
}

/* ============================================================
   SUPPORT CARDS (O que o AMPARA apoia)
   ============================================================ */

.grid--support { gap: 1.5rem; }

.support-card {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.support-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.support-card__icon {
  width: 44px;
  height: 44px;
  color: var(--olive);
  margin-bottom: 1.25rem;
}

.support-card__icon svg { width: 100%; height: 100%; }

.support-card__title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-deep);
  margin: 0 0 0.6rem;
}

.support-card__body {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--graphite);
  opacity: 0.8;
  margin: 0 0 1.5rem;
}

.support-card__photo {
  margin-top: auto;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--olive-soft), var(--champagne-soft));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-tag--small {
  position: static;
  transform: none;
  font-size: 9px;
  background: rgba(36, 61, 53, 0.65);
  padding: 0.35rem 0.7rem;
}

/* ============================================================
   PROCESS (Como funciona)
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--olive-soft) 20%, var(--olive-soft) 80%, transparent);
}

.process__step {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 3rem 1.75rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  margin-top: 1.5rem;
}

.process__num {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--white-warm);
  border: 1px solid var(--champagne);
  color: var(--champagne-warmer);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.process__title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-deep);
  margin: 0 0 0.75rem;
}

.process__body {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--graphite);
  opacity: 0.78;
  margin: 0;
}

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; gap: 2.5rem; }
  .process::before { display: none; }
}

/* ============================================================
   ROADMAP (Modelo de crescimento)
   ============================================================ */

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  padding-top: 2.5rem;
}

.roadmap__line {
  position: absolute;
  top: 3rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--olive-soft), var(--champagne), var(--olive-soft));
}

.phase {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.phase__marker {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phase__dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--white-warm);
  border: 2px solid var(--olive);
  border-radius: 50%;
}

.phase--accent .phase__dot {
  background: var(--champagne);
  border-color: var(--champagne-warmer);
}

.phase__label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--champagne-warmer);
  margin-bottom: 1rem;
}

.phase__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin: 0 0 0.75rem;
}

.phase__body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--graphite);
  opacity: 0.78;
  margin: 0;
}

@media (max-width: 880px) {
  .roadmap { grid-template-columns: 1fr; gap: 1.25rem; padding-top: 0; }
  .roadmap__line { display: none; }
  .phase__marker { display: none; }
}

/* ============================================================
   INVESTORS SECTION
   ============================================================ */

.thesis {
  background: rgba(201, 168, 122, 0.06);
  border-left: 3px solid var(--champagne);
  padding: 2.5rem 3rem;
  margin: 0 auto 4rem;
  max-width: 920px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.thesis p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.3;
  color: var(--cream);
  margin: 0;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

.thesis em { color: var(--champagne); }

.investor-card {
  background: rgba(255, 253, 248, 0.05);
  border: 1px solid rgba(201, 168, 122, 0.18);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
}

.investor-card:hover {
  background: rgba(255, 253, 248, 0.08);
  border-color: var(--champagne);
  transform: translateY(-3px);
}

.investor-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.investor-card__title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 0.6rem;
}

.investor-card__body {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.75;
  margin: 0;
}

.investor-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 122, 0.18);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 5rem var(--gutter) 3rem;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--champagne);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.footer__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
}

.footer__name {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 1.1rem;
}

.footer__tagline {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin: 0 0 3rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

.footer__tagline em { color: var(--champagne); }

.footer__meta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(246, 242, 234, 0.15);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.65;
}

.footer__meta span:nth-child(2) { color: var(--champagne); opacity: 1; }

/* ============================================================
   GRID variants for new layout
   ============================================================ */

.grid--solution { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid--support-compact { gap: 1.5rem; margin: 3rem 0; }

@media (max-width: 1100px) {
  .grid--solution { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--solution { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOWCASE IMAGE (full-width hero image inside sections)
   ============================================================ */

.showcase-image {
  margin: 3rem 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(36, 61, 53, 0.1);
}

.showcase-image__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SUPPORT COMPACT (text-only cards below "O que apoia" image)
   ============================================================ */

.support-compact {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.support-compact:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.support-compact__title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-deep);
  margin: 0 0 0.5rem;
}

.support-compact__body {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--graphite);
  opacity: 0.8;
  margin: 0;
}

/* ============================================================
   DISCLAIMER (important note about non-clinical phase)
   ============================================================ */

.disclaimer {
  margin: 3rem auto 0;
  max-width: 920px;
  padding: 1.5rem 2rem;
  background: rgba(36, 61, 53, 0.04);
  border-left: 2px solid var(--olive);
  border-radius: 0 8px 8px 0;
}

.disclaimer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--graphite);
  opacity: 0.85;
  margin: 0;
}

.disclaimer strong {
  color: var(--green-deep);
  font-weight: 600;
}

/* ============================================================
   QUOTE VARIATIONS
   ============================================================ */

.why-quote {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  color: var(--cream);
  text-align: center;
  margin: 4rem auto 1.5rem;
  max-width: 880px;
  padding: 2rem;
  font-style: normal;
  border-top: 1px solid rgba(201, 168, 122, 0.25);
  font-variation-settings: "opsz" 144;
}

.why-quote em {
  color: var(--champagne);
}

.data-sources {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  margin: 0;
}

.how-quote {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--green-deep);
  text-align: center;
  max-width: 820px;
  margin: 3rem auto 0;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "opsz" 144;
}

.how-quote em {
  color: var(--champagne-warmer);
}

.how-quote--center {
  border-top: 1px solid var(--olive-soft);
  padding-top: 3rem;
  margin-top: 4rem;
}

.investor-close {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--cream);
  text-align: center;
  max-width: 880px;
  margin: 4rem auto 3rem;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "opsz" 144;
  opacity: 0.92;
}

.investor-close em {
  color: var(--champagne);
}

.investor-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 122, 0.18);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 242, 234, 0.4);
}

.btn--outline-light:hover {
  background: rgba(246, 242, 234, 0.08);
  border-color: var(--cream);
}

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

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__channels {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact__channel {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.contact__channel:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateX(3px);
}

.contact__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--champagne-warmer);
}

.contact__value {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--green-deep);
  font-weight: 500;
}

.form {
  background: var(--white-warm);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__field--full {
  grid-column: 1 / -1;
}

.form__field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-deep);
  opacity: 0.85;
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--olive-soft);
  border-radius: 8px;
  background: var(--cream);
  color: var(--graphite);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--white-warm);
}

.form__field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
}

.form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .form { padding: 1.75rem; grid-template-columns: 1fr; }
  .form__actions { justify-content: stretch; }
  .form__actions .btn { width: 100%; }
}

/* ============================================================
   FOOTER intro (new addition)
   ============================================================ */

.footer__intro {
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.78;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.section, .hero__content, .hero__visual {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.is-visible, .hero__content.is-visible, .hero__visual.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section, .hero__content, .hero__visual { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { padding: 1rem var(--gutter); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .impact-block { padding: 3rem 1.5rem; }
  .footer__meta { flex-direction: column; gap: 0.5rem; }
  .footer__meta span:nth-child(2) { display: none; }
}

/* ============ BOTÃO FLUTUANTE WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(36, 61, 53, 0.32);
  z-index: 999;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  background: var(--green-deep-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(36, 61, 53, 0.4);
}
.wa-float svg { display: block; }
@media (max-width: 600px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
