/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #F7EFE4; color: #224768; line-height: 1.5; padding-top: 121px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar fino e discreto (só no html para não quebrar position:fixed) ── */
html {
  overflow-y: scroll; /* garante que html é o scroll container */
  scrollbar-width: thin;
  scrollbar-color: rgba(34,71,104,0.25) transparent;
}
html::-webkit-scrollbar { width: 5px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: rgba(34,71,104,0.25); border-radius: 10px; }
html::-webkit-scrollbar-thumb:hover { background: rgba(34,71,104,0.5); }

/* ── Variables ── */
:root {
  --bg:      #F7EFE4;
  --card:    #F9F4EC;
  --tan-bg:  #EADDcb;
  --blue:    #224768;
  --accent:  #D67747;
  --gold:    #DEC397;
  --tan:     #947C5C;
  --cream:   #F7EFE4;
  --yellow:  #F8AB21;
}

/* ── Container ── */
/* Figma: página 1440px, margem lateral 70px → conteúdo útil 1300px */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

/* ══════════════════════════════
   LOGO
══════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* SVG logo como imagem — altura define o tamanho, largura proporcional */
.logo__img {
  height: 62px;
  width: auto;
  display: block;
}

/* Versão menor usada no rodapé */
.logo__img--sm {
  height: 48px;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--pill {
  height: 56px;
  border-radius: 28px;
  padding: 0 0 0 28px;
  font-size: 15px;
  line-height: 56px;
}
.btn--blue {
  background: var(--blue);
  color: #fff;
}
.btn--blue:hover { background: #1a3654; }

.btn__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: var(--blue);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
  align-self: stretch;
}

/* Botão SVG do Figma (imagem completa) */
.btn-svg-link { display: inline-block; text-decoration: none; }
.btn-svg-link:hover { opacity: 0.9; }
.btn-svg-img { height: 56px; width: auto; display: block; }

.btn-sm {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-sm--gold {
  background: var(--gold);
  color: #fff;
}
.btn-sm--gold:hover { background: #c9a97a; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  background: var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 121px;
  transition: transform 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 48px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  transition: opacity 0.15s;
}
.nav__links a:hover { opacity: 0.75; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__photo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1); /* espelhado horizontalmente como no Figma */
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero__content { max-width: 420px; }
.hero__title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 18px;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 320px;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 56px; height: 56px;
  background: #29A71A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ══════════════════════════════
   SOBRE
══════════════════════════════ */
.sobre {
  padding: 80px 0;
  background: var(--bg);
}
.sobre__inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
.sobre__content { flex: 1; }
.sobre__title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 24px;
}
.sobre__lead {
  font-size: 15px;
  color: var(--blue);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.sobre__photo-wrap {
  /* Figma: 696×489, rx=244.5 → stadium shape */
  flex-shrink: 0;
  width: 500px;
  height: 352px;
  border-radius: 176px;
  overflow: hidden;
  position: relative;
}
.sobre__photo {
  position: absolute;
  width: 600px;
  max-width: none; /* cancela o img { max-width: 100% } do reset */
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
}

/* ══════════════════════════════
   COMPROMISSO
══════════════════════════════ */
.compromisso {
  padding: 80px 0 60px;
  background: var(--bg);
}
.compromisso__inner { text-align: center; }
.compromisso__title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--blue);
  margin-bottom: 20px;
  line-height: 1.2;
}
.compromisso__sub {
  font-size: 15px;
  color: var(--blue);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* MVV grid */
.mvv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.mvv__item { text-align: center; }
.mvv__icon {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvv__icon svg  { width: 56px; height: 56px; }
.mvv__icon img  { width: 56px; height: 56px; object-fit: contain; }
.mvv__label {
  font-family: 'Merriweather', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.mvv__text {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.6;
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section-title {
  font-family: 'Merriweather', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--blue);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 44px; }

/* 3-column cards row */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ══════════════════════════════
   SOLUÇÕES
══════════════════════════════ */
.solucoes {
  padding: 80px 0;
  background: var(--bg);
}
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px; /* room for overflowing icon */
}
.sol-card {
  background: var(--card);
  border-radius: 8px;
  padding-bottom: 28px;
  position: relative;
}
.sol-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-top: -72px;
  margin-bottom: 0;
}
.sol-card__icon {
  width: 144px; height: 144px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sol-card__icon svg      { width: 72px; height: 72px; }
.sol-card__icon-img     { width: 80px; height: 80px; object-fit: contain; }
.sol-card__body { padding: 20px 24px 0; text-align: center; }
.sol-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.sol-card__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--tan);
  line-height: 1.5;
}

/* ══════════════════════════════
   WORD CLOUD
══════════════════════════════ */
.wordcloud {
  padding: 60px 0;
  background: var(--bg);
}
.wordcloud__img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: block;
}

/* ══════════════════════════════
   POR QUE ESCOLHER
══════════════════════════════ */
.why { padding: 60px 0 80px; background: var(--bg); }
.why__pill {
  background: var(--blue);
  /* Figma: 1300×396px, rx=198 — proporcional ao container */
  border-radius: 198px;
  min-height: 360px;
  padding: 64px 100px 64px 120px;
  display: grid;
  grid-template-columns: 1fr 2fr; /* ~33% título / ~67% ícones */
  gap: 60px;
  align-items: center;
}
.why__title {
  font-family: 'Merriweather', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
}
/* Grid 2 colunas — igual ao Figma (home_5) */
.why__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.why__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.why__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__icon svg { width: 36px; height: 36px; }
.why__icon img { width: 44px; height: 44px; object-fit: contain; }
.why__item p { padding-top: 4px; }

/* ══════════════════════════════
   PARCERIAS
══════════════════════════════ */
.parcerias { padding: 80px 0; background: var(--bg); }
.parcerias__box {
  /* borda removida — sem retângulo */
  padding: 40px 48px;
  margin-bottom: 24px;
}
.parcerias__logos {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.parcerias__logos img {
  max-height: 90px;
  max-width: 200px;
  object-fit: contain;
  /* remove fundo branco dos PNGs sobre o fundo bege */
  mix-blend-mode: multiply;
}
.parcerias__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(213,196,172,1);
}
.dot--active { background: var(--accent); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { padding: 80px 0; background: var(--bg); }
.faq__list {
  max-width: 960px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(201,193,179,1);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q { width: 100%; }
.faq__marker {
  width: 18px; height: 18px;
  border: 2px solid rgba(201,193,179,1);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}
.faq__marker::before,
.faq__marker::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__marker::before { width: 8px; height: 2px; }
.faq__marker::after  { width: 2px; height: 8px; }
details[open] .faq__marker::after { display: none; }
.faq__a {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--tan);
  line-height: 1.6;
  max-width: 840px;
}

/* ══════════════════════════════
   NOTÍCIAS / NEWS CARD
══════════════════════════════ */
.noticias { padding: 80px 0; background: var(--bg); }
.news-card { border-radius: 4px; overflow: hidden; }
.news-card__img {
  height: 210px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__img--placeholder {
  background: linear-gradient(135deg, #8BABC4 0%, #5A7DA0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  letter-spacing: 1px;
}
.news-card__img--placeholder::after { content: 'LGPD'; }
.news-card__body {
  background: var(--card);
  padding: 16px 16px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.news-card__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.45;
}

/* ══════════════════════════════
   MÍDIA
══════════════════════════════ */
.midia { padding: 80px 0; background: var(--bg); }

/* ══════════════════════════════
   CTA SECTION — Vamos conversar?
══════════════════════════════ */
.cta-section {
  background: var(--tan-bg);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

/* Arte decorativa: absoluta, sangra nas bordas */
.cta-section__deco {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 42%;
  pointer-events: none;
}
.cta-deco__img {
  position: absolute;
  width: 680px;
  height: 759px;
  max-width: none;
  left: -85px;
  top: -130px;
  transform: rotate(-4deg) scale(1.0);
  transform-origin: 0 0;
}

/* Conteúdo: começa depois da arte */
.cta-section__content {
  display: flex;
  align-items: center;
  margin-left: 42%;
  padding: 32px 80px 32px 0;
  min-height: 200px;
}

.cta-section__text {
  flex: 1;
  padding-right: 40px;
}
.cta-section__title {
  font-family: 'Merriweather', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-section__desc {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 290px;
}
.cta-section__divider {
  width: 1px;
  height: 140px;
  background: rgba(34,71,104,0.2);
  flex-shrink: 0;
  margin: 0 40px;
}
.cta-section__contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.cta-contact-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--accent); }

.footer__main { padding: 52px 0 36px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__col a,
.footer__col span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}
.footer__col a:hover { color: #fff; }

.footer__social-icons {
  display: flex;
  gap: 44px; /* Figma: ~60px de centro a centro entre ícones */
  margin-top: 4px;
  align-items: center;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.social-icon:hover { opacity: 1; }

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 0;
}

.footer__bottom { padding: 24px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.footer__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__copy p {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
.footer__policy {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.footer__policy:hover { opacity: 0.8; }

/* ══════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding-left: 40px; padding-right: 40px; }

  /* Nav */
  .nav { height: auto; min-height: 80px; }
  .nav__inner { flex-wrap: wrap; gap: 16px; padding: 16px 0; height: auto; }
  .nav__links { gap: 16px; flex-wrap: wrap; margin-left: 0; }

  /* Hero */
  .hero__title { font-size: 34px; }
  .hero__sub   { font-size: 16px; }

  /* Sobre */
  .sobre__inner      { gap: 40px; }
  .sobre__photo-wrap { width: 380px; height: 267px; border-radius: 134px; }
  .sobre__photo      { width: 430px; }
  .sobre__title      { font-size: 34px; }

  /* MVV */
  .mvv { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Soluções */
  .cards-row { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why__pill {
    border-radius: 80px;
    padding: 56px 60px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why__right { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-section__content { margin-left: 36%; padding-right: 40px; }
  .cta-section__divider { margin: 0 24px; }

  /* Footer */
  .footer__grid { gap: 32px; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════ */
@media (max-width: 768px) {
  /* Mobile: reduz padding-top do body para compensar nav menor */

  .container { padding-left: 20px; padding-right: 20px; }

  /* ── Nav ── */
  .nav { height: auto; }
  body { padding-top: 80px; } /* compensa nav menor no mobile */
  .nav__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 16px 24px; /* padding horizontal explícito para não colar nas bordas */
    gap: 14px;
  }
  .nav__links {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .nav__links a { font-size: 14px; }
  .logo__img { height: 48px; }

  /* ── Hero ── */
  .hero { min-height: 420px; }
  .hero__photo-bg { opacity: 0.25; }
  .hero__inner { padding-top: 48px; padding-bottom: 48px; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: 28px; }
  .hero__sub   { font-size: 15px; max-width: 100%; }
  .btn-svg-img { height: 42px; }

  /* ── Sobre ── */
  .sobre { padding: 48px 0; }
  .sobre__inner {
    flex-direction: column;
    gap: 28px;
  }
  .sobre__photo-wrap {
    width: 100%;
    height: 220px;
    border-radius: 110px;
  }
  .sobre__photo {
    width: 110%;
    top: -20px;
  }
  .sobre__title { font-size: 30px; }
  .sobre__lead  { max-width: 100%; }

  /* ── Compromisso ── */
  .compromisso { padding: 48px 0 36px; }
  .compromisso__title { font-size: 24px; }
  .compromisso__sub   { font-size: 14px; }

  /* ── MVV ── */
  .mvv { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mvv__label { font-size: 18px; }

  /* ── Soluções ── */
  .solucoes { padding: 48px 0; }
  .section-title { font-size: 24px; }
  .section-sub   { font-size: 14px; }
  .cards-row {
    grid-template-columns: 1fr;
    margin-top: 80px;
    /* row-gap maior para acomodar o círculo que ultrapassa 72px para cima */
    row-gap: 100px;
  }

  /* ── Word cloud ── */
  .wordcloud { padding: 32px 0; }
  .wordcloud__img { width: 100%; }

  /* ── Why ── */
  .why { padding: 40px 0 56px; }
  .why__pill {
    border-radius: 32px;
    padding: 36px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why__title { font-size: 24px; }
  .why__right { grid-template-columns: 1fr; gap: 20px; }
  .why__item  { font-size: 13px; }

  /* ── Parcerias ── */
  .parcerias { padding: 48px 0; }
  .parcerias__box    { padding: 24px 20px; }
  .parcerias__logos  { gap: 20px; }
  .parcerias__logos img { max-height: 56px; max-width: 110px; }

  /* ── FAQ ── */
  .faq { padding: 48px 0; }
  .faq__item summary { font-size: 15px; padding: 16px 0; }

  /* ── CTA section ── */
  .cta-section { overflow: hidden; }
  .cta-section__deco { display: none; } /* esconde arte decorativa no mobile */
  .cta-section__content {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 20px;
    min-height: auto;
  }
  .cta-section__divider { display: none; }
  .cta-section__title   { font-size: 28px; }
  .cta-section__desc    { max-width: 100%; }
  .cta-contact-item     { font-size: 14px; }

  /* ── Footer ── */
  .footer__main { padding: 40px 0 28px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__social-icons { gap: 28px; }
  .logo--footer .logo__roberta,
  .logo--footer .logo__luanda { font-size: 18px; }

  /* ── WhatsApp float ── */
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ══════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════ */
@media (max-width: 480px) {
  .hero__title { font-size: 24px; }
  .sobre__title { font-size: 26px; }
  .mvv { grid-template-columns: 1fr 1fr; }
  .parcerias__logos { flex-direction: column; align-items: center; }
  .cta-section__title { font-size: 24px; }
  .why__pill { border-radius: 24px; padding: 28px 18px; }
}

/* ══════════════════════════════
   PÁGINA DE CONTATO
══════════════════════════════ */
.contato-page {
  background: var(--tan-bg);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.contato-page__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 42%;
  padding: 56px 80px 72px 0;
}

/* Linha 1: título à esq, contatos à dir */
.contato-page__top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.contato-page__heading { flex: 1; }
.contato-page__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
  flex-shrink: 0;
}

/* Formulário */
.contato-form { display: flex; flex-direction: column; gap: 32px; }

.contato-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contato-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contato-form__field label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.contato-form__field input,
.contato-form__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(34,71,104,0.35);
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--blue);
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.contato-form__field input::placeholder,
.contato-form__field textarea::placeholder {
  color: rgba(34,71,104,0.4);
}

.contato-form__field input:focus,
.contato-form__field textarea:focus {
  border-bottom-color: var(--blue);
}

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

.contato-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 100px;
  padding: 14px 20px 14px 28px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.15s;
}

.contato-form__btn:hover { background: #1a3654; }

.contato-form__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  font-size: 16px;
}

/* Botão enviar SVG */
.contato-form__btn-svg {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}
.contato-form__btn-svg:hover { opacity: 0.85; }

/* Link ativo no nav */
.nav__link--active { opacity: 0.7; }

/* Responsivo — contato */
@media (max-width: 768px) {
  .contato-page__inner {
    margin-left: 0;
    padding: 36px 20px 60px;
    gap: 28px;
  }
  .contato-page__top {
    flex-direction: column;
    gap: 24px;
  }
  .contato-form__row { grid-template-columns: 1fr; gap: 24px; }
}

