/* ============================================================
   TROPEIRO – Landing Page CSS
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent; /* remove highlight azul no toque iOS/Android */
}
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* remove delay de 300ms no toque */
}
input, select, textarea {
  -webkit-appearance: none; /* remove estilo padrão iOS */
  appearance: none;
  border-radius: 6px;
}
select { -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ---- VARIÁVEIS ---- */
:root {
  --green-deep: #1B4D1E;
  --green-mid: #2D5016;
  --green-light: #4a7c2f;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --red: #C44B2B;
  --terracotta: #A0522D;
  --white: #ffffff;
  --off-white: #f9f6f0;
  --gray-light: #f4f4f4;
  --gray-mid: #888;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--green-deep);
  color: #fff;
}
.btn-primary:hover { background: var(--green-light); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  letter-spacing: 0.03em;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: #fff;
  border-bottom: 2px solid var(--off-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.header-logo { flex-shrink: 0; }
.logo-header {
  height: 99px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  flex-wrap: nowrap;
  align-items: center;
}
.header-nav a {
  color: var(--green-deep);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--gold); }
.header-cta { flex-shrink: 0; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--green-deep);
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 20px 24px;
  background: #fff;
  border-top: 2px solid var(--off-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.mobile-menu a {
  color: var(--green-deep);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  /* área de toque mínima 44px conforme diretrizes iOS/Android */
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a.btn {
  border-bottom: none;
  margin-top: 14px;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  display: flex;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,77,30,0.72) 45%, rgba(27,77,30,0.38) 100%);
  z-index: 1;
}
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-text { max-width: 740px; margin: 0 auto 0 0; }
.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.hero-line-normal {
  display: block;
  color: #fff;
  font-weight: 900;
}
.gold-emphasis {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 900;
  font-size: 1.08em;
  text-shadow: 0 2px 18px rgba(212,160,23,0.25);
}
.hero-title-divider {
  width: 72px;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  border-radius: 4px;
  margin: 22px 0 22px 0;
}
/* manter compatibilidade legado */
.red-emphasis {
  color: var(--red);
  font-style: italic;
  font-weight: 900;
}
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btn { font-size: 1.1rem; padding: 16px 40px; }

/* BIG NUMBERS */
.hero-numbers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.number-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  min-width: 0;
  flex: 1 1 140px;
}
.big-number {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
}
.compliance-number {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.number-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.number-label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
.section { padding: 80px 0; }
.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-align: center;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.premium-title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.section-title-divider {
  width: 72px;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  border-radius: 4px;
  margin: 18px auto 24px;
}
.cta-title-premium {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.cta-title-divider {
  width: 72px;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  border-radius: 4px;
  margin: 18px auto 28px;
}
.green-title { color: var(--green-deep); }
.white-title { color: #fff; }
.section-subtitle {
  text-align: center;
  color: var(--gray-mid);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.white-subtitle { color: rgba(255,255,255,0.8); }

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

/* ============================================================
   PROBLEMAS
   ============================================================ */
.problemas { background: var(--off-white); }
.problema-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.problema-card:hover { transform: translateY(-4px); }
.problema-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  border-radius: 0 0 0 0;
}
.problema-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(196,75,43,0.08);
  border-radius: 50%;
  margin-bottom: 16px;
}
.problema-icon {
  font-size: 1.6rem;
  color: var(--red);
}
/* SVG icon inside circle */
.problema-icon-svg {
  width: 60px;
  height: 60px;
}
.problema-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.problema-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* ============================================================
   ALERTA
   ============================================================ */
.alerta-section {
  background: var(--green-deep);
  padding: 56px 0;
}
.alerta-inner { text-align: center; }
.alerta-text {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.5;
}
.alerta-text strong {
  color: var(--gold-light);
  font-style: italic;
}

/* ============================================================
   QUEM SOMOS / MUITO PRAZER
   ============================================================ */
.quem-somos { background: #fff; }
.quem-somos-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.logo-vertical-qs {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}
.muito-prazer-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 4px;
  text-shadow: 1px 2px 8px rgba(184,134,11,0.15);
}
.somos-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.slogan-destaque {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 700;
  color: var(--green-deep);
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.quem-somos-text {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.boxes-qs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.box-qs {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: 8px;
  padding: 16px;
}
.box-qs-icon {
  width: 36px;
  height: 36px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.box-qs strong { display: block; color: var(--green-deep); margin-bottom: 4px; }
.box-qs p { font-size: 0.9rem; color: #555; }

/* ============================================================
   PROPOSTA DE VALOR
   ============================================================ */
.proposta { background: var(--off-white); }
.proposta-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  align-items: flex-start;
}
.check-icon {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #fff;
}
.proposta-highlight {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.proposta-text p { font-size: 1.1rem; color: #555; line-height: 1.7; }

/* ============================================================
   SEPARADOR IMAGEM (MEIO)
   ============================================================ */
.separador-imagem {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.img-separador {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.separador-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
}
.separador-textbox {
  background: rgba(45, 80, 22, 0.60);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 36px 44px;
  max-width: 520px;
}
.separador-frase {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: var(--green-deep); }
.diferenciais .section-title { color: #fff; }
.diferenciais .section-subtitle {
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
}
.diferencial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 24px;
  color: #fff;
  position: relative;
}
.diferencial-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 14px 0 10px;
  color: #fff;
}
.diferencial-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.dif-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
}
/* DESTAQUE ESPECIAL: primeiro box */
.diferencial-destaque {
  background: #fff;
  border: 2px solid var(--gold);
}
.diferencial-destaque h3, .dif-title-green {
  color: var(--green-deep) !important;
  font-size: 1.05rem !important;
}
.diferencial-destaque p {
  color: #444 !important;
  font-size: 1.1rem !important;
}
.gold-icon {
  background: rgba(184, 134, 11, 0.12) !important;
  color: var(--gold) !important;
}
.gold-icon i { color: var(--gold) !important; }
.badge-diferencial {
  display: inline-block;
  margin-top: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ============================================================
   METODOLOGIA
   ============================================================ */
.metodologia { background: var(--green-mid); }
.gold-italic { font-style: italic; color: var(--gold-light); }
.passos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.passo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 24px 18px;
}
.passo-num {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.passo-titulo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.passo-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* ============================================================
   PRÉ-QUALIFICAÇÃO
   ============================================================ */
.prequalificacao { padding: 0; }
.preq-bg {
  background: url('../images/img-compras.jpg') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}
.preq-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.40);
}
.preq-bg .container { position: relative; z-index: 1; display: flex; justify-content: center; }
.preq-box {
  background: rgba(27, 77, 30, 0.70);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 52px 60px;
  max-width: 860px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
}
.preq-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.preq-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  line-height: 1.1;
}
.preq-divider {
  width: 72px;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  border-radius: 4px;
  margin: 18px auto 20px;
}
.preq-subtitle {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height: 1.6;
}
.preq-text {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 32px;
  text-align: left;
}
.preq-text strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* ============================================================
   TRANSFORME CUSTO FIXO
   ============================================================ */
.transforme { background: var(--off-white); }
.transforme-inner { text-align: center; }
.transforme-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}
.transforme-green { color: var(--green-deep); }
.transforme-gold {
  color: var(--gold);
  font-style: italic;
}
.transforme-text {
  max-width: 680px;
  margin: 0 auto 36px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
}
.transforme-boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.transforme-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.transforme-box i { font-size: 1.1rem; color: var(--gold-light); }

/* ============================================================
   CREDENCIAIS
   ============================================================ */
.credenciais { background: var(--green-deep); }
.credencial-grid { }
.credencial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
}
.credencial-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.credencial-legenda {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.credencial-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 4px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon { transition: transform 0.3s; color: var(--gold); }
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
}
.faq-answer.open { display: block; }
.faq-answer p { color: #555; line-height: 1.7; font-size: 1.1rem; }

/* ============================================================
   DIAGNÓSTICO / CTA
   ============================================================ */
.diagnostico { background: #fff; }
.diagnostico-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.logo-diagnostico {
  height: 90px;
  width: auto;
  margin-bottom: 24px;
  object-fit: contain;
}
.diagnostico-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.diagnostico-subtitle {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.diagnostico-lista {
  list-style: none;
  margin-bottom: 28px;
}
.diagnostico-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: #444;
  font-size: 1.1rem;
}
.diagnostico-lista li i { color: var(--green-deep); flex-shrink: 0; margin-top: 3px; }
.diagnostico-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 12px 20px;
  background: var(--off-white);
  border-radius: 8px;
  min-width: 110px;
}
.stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--green-deep);
  font-weight: 800;
}
.stat span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}
.diagnostico-tipos {
  font-size: 1rem;
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.7;
}

/* FORMULÁRIO */
.diagnostico-form-wrap { }
.form-box {
  background: var(--green-deep);
  border-radius: 14px;
  padding: 40px 36px;
}
.form-title {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.16);
}
.form-group select option { background: var(--green-deep); color: #fff; }
.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

/* ============================================================
   CTA IMAGEM FINAL
   ============================================================ */
.cta-imagem {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.img-cta {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,77,30,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-textbox { text-align: center; padding: 0 24px; }
.cta-textbox h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 28px;
  max-width: 640px;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: #fff;
  border-top: 2px solid var(--off-white);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand {}
.logo-footer {
  height: 105px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer-slogan {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.95rem;
  color: var(--gray-mid);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav a {
  font-size: 1.1rem;
  color: #555;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green-deep); }
.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contato h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-contato p {
  font-size: 1.1rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contato p i { color: var(--green-deep); width: 16px; }
.footer-contato a { color: #555; }
.footer-contato a:hover { color: var(--green-deep); }

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
}
.modal-icon { font-size: 3rem; color: var(--green-deep); margin-bottom: 16px; }
.modal-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.modal-box p { color: #555; margin-bottom: 24px; }

/* ============================================================
   RESPONSIVIDADE — MOBILE FIRST COMPLETO
   Breakpoints: 1024px (tablet landscape), 768px (tablet portrait / mobile grande), 480px (mobile médio), 360px (mobile pequeno)
   ============================================================ */

/* =========================================================
   TABLET LANDSCAPE — até 1024px
   ========================================================= */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Header */
  .logo-header { height: 80px; }

  /* Hero */
  .hero-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }

  /* Grids */
  .passos-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Quem somos */
  .quem-somos-inner { grid-template-columns: 180px 1fr; gap: 40px; }

  /* Diagnóstico */
  .diagnostico-inner { gap: 40px; }

  /* Pré-qualificação */
  .preq-box { padding: 44px 40px; }

  /* Separador */
  .separador-textbox { padding: 28px 32px; max-width: 460px; }
}

/* =========================================================
   TABLET PORTRAIT & MOBILE GRANDE — até 768px
   ========================================================= */
@media (max-width: 768px) {

  /* ---- CONTAINER ---- */
  .container { padding: 0 20px; }

  /* ---- HEADER ---- */
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: block; margin-left: auto; }
  .logo-header { height: 56px; }
  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
    min-height: 64px;
  }

  /* ---- MENU MOBILE ---- */
  .mobile-menu { padding: 8px 20px 20px; }
  .mobile-menu a { font-size: 1rem; padding: 13px 0; }

  /* ---- HERO ---- */
  .hero { min-height: auto; width: 100%; }
  .hero-overlay {
    background: linear-gradient(160deg, rgba(27,77,30,0.88) 55%, rgba(27,77,30,0.55) 100%);
  }
  .hero-image-wrapper { width: 100%; }
  .hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
    width: 100%;
  }
  .hero-text { max-width: 100%; width: 100%; }
  .hero-title {
    font-size: clamp(1.2rem, 4.5vw, 1.7rem);
    line-height: 1.45;
    margin-bottom: 0;
  }
  .gold-emphasis { font-size: 1em; }
  .hero-title-divider { height: 5px; margin: 12px 0; width: 52px; }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .hero-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.95rem;
    box-sizing: border-box;
  }
  /* Big numbers: 3 colunas iguais sem overflow */
  .hero-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }
  .number-card {
    padding: 12px 6px;
    min-width: 0;
    flex: none;
    width: 100%;
  }
  .big-number { font-size: clamp(1rem, 3.2vw, 1.6rem); }
  .compliance-number { font-size: clamp(0.85rem, 2.8vw, 1.3rem); }
  .number-label { font-size: 0.68rem; margin-top: 4px; }
  .number-icon { font-size: 1rem; margin-bottom: 5px; }

  /* ---- SEÇÕES ---- */
  .section { padding: 44px 0; width: 100%; }
  .section-title {
    font-size: clamp(1.25rem, 4.5vw, 1.7rem);
    margin-bottom: 12px;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .premium-title { font-size: clamp(1.3rem, 4.5vw, 1.9rem); }
  .section-title-divider { margin: 14px auto 20px; }

  /* ---- GRIDS ---- */
  .grid-3 { grid-template-columns: 1fr; gap: 14px; }

  /* ---- ALERTA ---- */
  .alerta-section { padding: 40px 0; }
  .alerta-text { font-size: clamp(1.1rem, 4vw, 1.6rem); line-height: 1.5; }

  /* ---- PROBLEMAS ---- */
  .problemas { }
  .problema-card { padding: 20px 16px 18px; }
  .problema-card h3 { font-size: 0.95rem; }
  .problema-card p { font-size: 0.95rem; }
  .problema-icon-wrap { width: 52px; height: 52px; margin-bottom: 12px; }

  /* ---- QUEM SOMOS ---- */
  .quem-somos-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .quem-somos-logo-col { text-align: center; }
  .logo-vertical-qs { max-width: 140px; margin: 0 auto; }
  .muito-prazer-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .somos-title { font-size: clamp(1rem, 3.5vw, 1.4rem); }
  .slogan-destaque { font-size: clamp(0.95rem, 3vw, 1.2rem); }
  .quem-somos-text { font-size: 0.95rem; margin-bottom: 20px; }
  .boxes-qs { grid-template-columns: 1fr; gap: 10px; }
  .box-qs { padding: 14px; }
  .box-qs p { font-size: 0.88rem; }

  /* ---- PROPOSTA DE VALOR ---- */
  .proposta-card { padding: 18px 16px; gap: 12px; }
  .proposta-highlight { font-size: 0.88rem; }
  .proposta-text p { font-size: 0.95rem; }
  .check-icon { width: 38px; height: 38px; font-size: 0.95rem; flex-shrink: 0; }

  /* ---- SEPARADOR IMAGEM ---- */
  .separador-imagem { height: auto; min-height: 260px; }
  .separador-overlay {
    padding: 20px 16px 28px;
    justify-content: center;
    align-items: flex-end;
  }
  .separador-textbox {
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 10px;
  }
  .separador-frase { font-size: clamp(1rem, 4vw, 1.3rem); }

  /* ---- DIFERENCIAIS ---- */
  .diferenciais .section-subtitle { font-size: 0.95rem; }
  .diferencial-card { padding: 22px 18px; }
  .diferencial-card h3 { font-size: 0.95rem; }
  .diferencial-card p { font-size: 0.95rem; }
  .dif-icon-wrap { width: 44px; height: 44px; font-size: 1.2rem; }

  /* ---- METODOLOGIA ---- */
  .metodologia .section-title { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
  .passos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .passo-card { padding: 20px 16px; }
  .passo-num { font-size: 1.6rem; margin-bottom: 8px; }
  .passo-titulo { font-size: 0.95rem; margin-bottom: 6px; }
  .passo-desc { font-size: 0.92rem; }

  /* ---- PRÉ-QUALIFICAÇÃO ---- */
  .preq-bg { padding: 48px 0; }
  .preq-box {
    padding: 28px 18px;
    border-radius: 12px;
    text-align: center;
  }
  .preq-eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; }
  .preq-title { font-size: clamp(1.6rem, 7vw, 2.4rem); letter-spacing: 0.02em; }
  .preq-divider { margin: 14px auto 16px; }
  .preq-subtitle { font-size: 0.95rem; margin-bottom: 16px; }
  .preq-text { font-size: 0.92rem; line-height: 1.75; text-align: left; }
  .preq-box .btn {
    display: block;
    width: 100%;
    font-size: 0.95rem;
    padding: 14px 16px;
    line-height: 1.4;
    white-space: normal;
  }

  /* ---- TRANSFORME ---- */
  .transforme-title { font-size: clamp(1.2rem, 4.5vw, 1.7rem); }
  .transforme-text { font-size: 0.95rem; }
  .transforme-boxes {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .transforme-box {
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  /* ---- CREDENCIAIS ---- */
  .credencial-card { padding: 22px 14px; }
  .credencial-legenda { font-size: 1rem; }
  .credencial-card p { font-size: 0.92rem; }
  .credencial-icon { font-size: 1.7rem; margin-bottom: 10px; }

  /* ---- FAQ ---- */
  .faq-list { max-width: 100%; }
  .faq-question {
    font-size: 0.95rem;
    padding: 16px 0;
    gap: 10px;
  }
  .faq-answer p { font-size: 0.92rem; line-height: 1.7; }

  /* ---- DIAGNÓSTICO ---- */
  .diagnostico-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .logo-diagnostico { height: 60px; margin-bottom: 16px; }
  .diagnostico-title { font-size: clamp(1.15rem, 4.5vw, 1.5rem); }
  .diagnostico-subtitle { font-size: 0.95rem; margin-bottom: 16px; }
  .diagnostico-lista { margin-bottom: 20px; }
  .diagnostico-lista li { font-size: 0.92rem; padding: 6px 0; gap: 8px; }
  .diagnostico-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .stat { min-width: unset; padding: 10px 8px; }
  .stat strong { font-size: 0.95rem; }
  .stat span { font-size: 0.7rem; }
  .diagnostico-tipos { font-size: 0.88rem; line-height: 1.6; }

  /* FORMULÁRIO */
  .form-box { padding: 24px 18px; border-radius: 12px; }
  .form-title { font-size: 1.1rem; margin-bottom: 18px; }
  .form-group { margin-bottom: 12px; }
  .form-group label { font-size: 0.82rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 11px 12px; font-size: 0.92rem; }
  .form-disclaimer { font-size: 0.75rem; }

  /* ---- CTA FINAL ---- */
  .cta-imagem { height: 320px; }
  .cta-textbox { padding: 0 20px; }
  .cta-textbox h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.6rem);
    margin-bottom: 20px;
    max-width: 100%;
  }
  .cta-title-divider { margin: 14px auto 20px; }
  .btn-gold { padding: 13px 28px; font-size: 1rem; }

  /* ---- RODAPÉ ---- */
  .footer { padding: 48px 0 28px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .logo-footer { margin: 0 auto 14px; height: 72px; }
  .footer-slogan { font-size: 0.95rem; }
  .footer-copy { font-size: 0.85rem; }
  .footer-nav { align-items: center; }
  .footer-nav h4 { font-size: 0.95rem; }
  .footer-nav a { font-size: 0.95rem; }
  .footer-contato h4 { font-size: 0.95rem; }
  .footer-contato p { font-size: 0.95rem; justify-content: center; }

  /* ---- WHATSAPP ---- */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 80px;
    right: 16px;
  }
}

/* =========================================================
   MOBILE MÉDIO — até 480px (maioria dos Android/iPhone)
   ========================================================= */
@media (max-width: 480px) {

  /* ---- CONTAINER ---- */
  .container { padding: 0 16px; }

  /* ---- HEADER ---- */
  .logo-header { height: 46px; }
  .header-inner { min-height: 58px; }
  .mobile-menu-btn { font-size: 1.25rem; }

  /* ---- HERO ---- */
  .hero { min-height: auto; width: 100%; }
  .hero-content { padding-top: 32px; padding-bottom: 32px; gap: 18px; width: 100%; }
  .hero-title {
    font-size: clamp(1rem, 5vw, 1.35rem);
    line-height: 1.45;
  }
  .hero-subtitle { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
  .hero-title-divider { height: 4px; margin: 10px 0; width: 48px; }
  .hero-btn { font-size: 0.9rem; padding: 13px 14px; width: 100%; display: block; box-sizing: border-box; }
  .hero-numbers {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
  }
  .number-card { padding: 10px 4px; min-width: 0; }
  .number-card:last-child { grid-column: unset; }
  .big-number { font-size: clamp(0.95rem, 3.5vw, 1.3rem); }
  .compliance-number { font-size: clamp(0.82rem, 3vw, 1.1rem); }
  .number-label { font-size: 0.63rem; }

  /* ---- SEÇÕES ---- */
  .section { padding: 40px 0; }
  .section-title { font-size: clamp(1.1rem, 5.5vw, 1.5rem); }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 24px; }
  .premium-title { font-size: clamp(1.15rem, 5.5vw, 1.6rem); }
  .section-title-divider { width: 56px; height: 6px; margin: 12px auto 18px; }

  /* ---- ALERTA ---- */
  .alerta-section { padding: 32px 0; }
  .alerta-text { font-size: clamp(1rem, 4.5vw, 1.3rem); }

  /* ---- PROBLEMAS ---- */
  .problema-card { padding: 18px 14px; }
  .problema-icon-wrap { width: 46px; height: 46px; margin-bottom: 10px; }
  .problema-icon { font-size: 1.3rem; }
  .problema-icon-svg { width: 46px; height: 46px; }
  .problema-card h3 { font-size: 0.9rem; margin-bottom: 6px; }
  .problema-card p { font-size: 0.88rem; line-height: 1.6; }

  /* ---- QUEM SOMOS ---- */
  .logo-vertical-qs { max-width: 110px; }
  .muito-prazer-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .somos-title { font-size: clamp(0.9rem, 3.5vw, 1.2rem); margin-bottom: 14px; }
  .slogan-destaque { font-size: 0.9rem; padding-left: 12px; margin-bottom: 16px; }
  .quem-somos-text { font-size: 0.9rem; line-height: 1.7; }
  .box-qs { padding: 12px; gap: 10px; }
  .box-qs-icon { width: 32px; height: 32px; font-size: 0.8rem; }
  .box-qs strong { font-size: 0.88rem; }
  .box-qs p { font-size: 0.82rem; }

  /* ---- PROPOSTA ---- */
  .proposta-card { padding: 16px 14px; gap: 10px; }
  .check-icon { width: 34px; height: 34px; font-size: 0.85rem; }
  .proposta-highlight { font-size: 0.82rem; margin-bottom: 4px; }
  .proposta-text p { font-size: 0.88rem; }

  /* ---- SEPARADOR ---- */
  .separador-imagem { min-height: 220px; }
  .separador-textbox { padding: 16px 14px; }
  .separador-frase { font-size: clamp(0.9rem, 4vw, 1.15rem); }

  /* ---- DIFERENCIAIS ---- */
  .diferencial-card { padding: 18px 14px; }
  .dif-icon-wrap { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 8px; }
  .diferencial-card h3 { font-size: 0.9rem; margin: 10px 0 8px; }
  .diferencial-card p { font-size: 0.88rem; }
  .diferencial-destaque h3,
  .dif-title-green { font-size: 0.92rem !important; }
  .diferencial-destaque p { font-size: 0.88rem !important; }

  /* ---- METODOLOGIA ---- */
  .passo-card { padding: 16px 14px; }
  .passo-num { font-size: 1.4rem; margin-bottom: 6px; }
  .passo-titulo { font-size: 0.9rem; }
  .passo-desc { font-size: 0.87rem; }

  /* ---- PRÉ-QUALIFICAÇÃO ---- */
  .preq-bg { padding: 40px 0; }
  .preq-box { padding: 24px 14px; }
  .preq-eyebrow { font-size: 0.68rem; }
  .preq-title { font-size: clamp(1.4rem, 7.5vw, 2rem); }
  .preq-subtitle { font-size: 0.88rem; }
  .preq-text { font-size: 0.87rem; line-height: 1.7; }
  .preq-box .btn { font-size: 0.88rem; padding: 13px 14px; }

  /* ---- TRANSFORME ---- */
  .transforme-title { font-size: clamp(1.05rem, 5vw, 1.4rem); }
  .transforme-text { font-size: 0.9rem; margin-bottom: 24px; }
  .transforme-box { font-size: 0.85rem; padding: 11px 14px; }

  /* ---- CREDENCIAIS ---- */
  .credencial-card { padding: 18px 12px; }
  .credencial-icon { font-size: 1.5rem; }
  .credencial-legenda { font-size: 0.95rem; }
  .credencial-card p { font-size: 0.85rem; }

  /* ---- FAQ ---- */
  .faq-question { font-size: 0.9rem; padding: 14px 0; }
  .faq-icon { font-size: 0.85rem; }
  .faq-answer p { font-size: 0.88rem; }

  /* ---- DIAGNÓSTICO ---- */
  .logo-diagnostico { height: 52px; }
  .diagnostico-title { font-size: clamp(1.05rem, 5vw, 1.35rem); }
  .diagnostico-subtitle { font-size: 0.9rem; }
  .diagnostico-lista li { font-size: 0.88rem; }
  .diagnostico-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .stat { padding: 8px 6px; }
  .stat strong { font-size: 0.85rem; }
  .stat span { font-size: 0.65rem; }
  .diagnostico-tipos { font-size: 0.82rem; line-height: 1.6; }

  /* FORMULÁRIO */
  .form-box { padding: 20px 14px; }
  .form-title { font-size: 1rem; margin-bottom: 16px; }
  .form-group { margin-bottom: 10px; }
  .form-group label { font-size: 0.8rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 10px 11px; font-size: 0.88rem; border-radius: 5px; }
  .form-disclaimer { font-size: 0.7rem; }

  /* ---- CTA FINAL ---- */
  .cta-imagem { height: 280px; }
  .cta-textbox { padding: 0 14px; }
  .cta-textbox h2 { font-size: clamp(1rem, 4.5vw, 1.4rem); margin-bottom: 16px; }
  .btn-gold { padding: 12px 24px; font-size: 0.95rem; }

  /* ---- RODAPÉ ---- */
  .footer { padding: 36px 0 24px; }
  .logo-footer { height: 60px; }
  .footer-slogan { font-size: 0.88rem; }
  .footer-copy { font-size: 0.8rem; }
  .footer-nav h4, .footer-contato h4 { font-size: 0.88rem; }
  .footer-nav a, .footer-contato p { font-size: 0.88rem; }

  /* ---- WHATSAPP ---- */
  .whatsapp-float {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
    bottom: 76px;
    right: 12px;
  }
}

/* =========================================================
   MOBILE PEQUENO — até 360px (Samsung Galaxy S, iPhone SE)
   ========================================================= */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .logo-header { height: 38px; }
  .hero { width: 100%; }
  .hero-content { padding-top: 28px; padding-bottom: 28px; gap: 16px; }
  .hero-title { font-size: clamp(0.92rem, 5vw, 1.15rem); }
  .hero-subtitle { font-size: 0.8rem; }
  .hero-btn { font-size: 0.82rem; padding: 12px 10px; width: 100%; display: block; }
  .hero-numbers { grid-template-columns: repeat(3, 1fr); gap: 5px; width: 100%; }
  .number-card { padding: 9px 3px; min-width: 0; }
  .big-number { font-size: clamp(0.82rem, 3.5vw, 1.05rem); }
  .compliance-number { font-size: clamp(0.72rem, 3vw, 0.95rem); }
  .number-label { font-size: 0.56rem; }
  .section-title { font-size: clamp(1rem, 5.5vw, 1.3rem); }
  .premium-title { font-size: clamp(1.05rem, 5.5vw, 1.35rem); }
  .preq-title { font-size: clamp(1.2rem, 7.5vw, 1.8rem); }
  .muito-prazer-title { font-size: clamp(1.3rem, 7vw, 1.9rem); }
  .form-box { padding: 18px 12px; }
  .diagnostico-stats { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .stat { padding: 7px 4px; }
  .stat strong { font-size: 0.75rem; }
  .stat span { font-size: 0.56rem; }
  .whatsapp-float { width: 40px; height: 40px; font-size: 1.1rem; right: 10px; bottom: 72px; }
}
