/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #16a34a;
  --green-dark:  #15803d;
  --green-light: #dcfce7;
  --green-mid:   #166534;
  --navy:        #0f172a;
  --navy-light:  #1e293b;
  --slate:       #475569;
  --slate-light: #94a3b8;
  --border:      #e2e8f0;
  --bg-soft:     #f8fafc;
  --white:       #ffffff;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* Centraliza a tag nas seções com título centralizado */
.problem-section .section-tag,
.service-section .section-tag,
.benefits-section .section-tag,
.authority-section .section-tag,
.how-section .section-tag {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

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

.section {
  padding: 96px 0;
}

.highlight {
  color: var(--green);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  border: none;
}

.btn-sm {
  background: var(--green);
  color: var(--white);
  padding: 9px 20px;
  font-size: .85rem;
}
.btn-sm:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-hero {
  background: var(--green);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(22,163,74,.35);
}
.btn-hero:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,.4);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-arrow { font-size: 1.1rem; }

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
  font-size: 1.15rem;
}
.logo-icon { font-size: 1.3rem; }
.logo-text { font-weight: 500; }
.logo-text strong { font-weight: 800; color: var(--green); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 55%, #f0fdf4 100%);
  padding: 100px 0 96px;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(22,163,74,.2);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--slate);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-light);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
}

.hero-note {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--slate-light);
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── NUMBERS BAR ───────────────────────────────────────────── */
.numbers-bar {
  background: var(--navy);
  padding: 40px 0;
}

.numbers-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 56px;
}
.number-item strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.number-item span {
  font-size: .85rem;
  color: var(--slate-light);
  margin-top: 4px;
  max-width: 180px;
}

.divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ─── PAIN SECTION ──────────────────────────────────────────── */
.problem-section {
  background: var(--bg-soft);
}
.problem-section .section-title,
.problem-section .section-subtitle {
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 0;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 12px 0 8px;
}
.pain-card p {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.65;
  text-align: justify;
}
.pain-icon { font-size: 1.8rem; }

.pain-card-highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: transparent;
  color: white;
}
.pain-card-highlight h3 { color: white; }
.pain-card-highlight p { color: rgba(255,255,255,.85); }

/* ─── SOLUTION ──────────────────────────────────────────────── */
.solution-section {
  background: linear-gradient(135deg, var(--green-mid) 0%, #052e16 100%);
  padding: 96px 0;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-text .section-title.white { color: var(--white); }

.solution-desc {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: justify;
}
.solution-desc strong { color: white; }

.vs-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vs-col {
  padding: 28px;
}
.vs-col + .vs-col {
  border-top: 1px solid rgba(255,255,255,.1);
}

.vs-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vs-col.bad .vs-label { color: rgba(255,255,255,.45); }
.vs-col.good .vs-label { color: #86efac; }

.vs-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vs-col ul li { font-size: .92rem; color: rgba(255,255,255,.8); }

/* ─── SERVICE STEPS ─────────────────────────────────────────── */
.service-section .section-title,
.service-section .section-subtitle { text-align: center; }

.service-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.service-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.service-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.step-content p {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.65;
  text-align: justify;
}

/* ─── BENEFITS ──────────────────────────────────────────────── */
.benefits-section {
  background: var(--bg-soft);
}
.benefits-section .section-title,
.benefits-section .section-subtitle { text-align: center; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.benefit-icon { font-size: 2.2rem; margin-bottom: 16px; }

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.benefit-card p {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.65;
  text-align: justify;
}

/* ─── OBJECTION ─────────────────────────────────────────────── */
.objection-section { background: var(--white); }

.objection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.objection-text .section-title { text-align: left; }
.objection-text > p {
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.75;
  text-align: justify;
}

.objection-items { display: flex; flex-direction: column; gap: 20px; }

.objection-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.obj-icon {
  font-size: 1.4rem;
  line-height: 1;
  padding-top: 2px;
}

.objection-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.objection-item p {
  margin: 0;
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.65;
  text-align: justify;
}

.quote-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}
.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}
.quote-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  text-align: justify;
}
.quote-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-light);
}

/* ─── AUTHORITY ─────────────────────────────────────────────── */
.authority-section {
  background: var(--bg-soft);
}
.authority-section .section-title,
.authority-section .section-subtitle { text-align: center; }

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.authority-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.authority-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.auth-icon { font-size: 2rem; margin-bottom: 14px; }
.authority-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.authority-card p {
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.65;
  text-align: justify;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how-section .section-title,
.how-section .section-subtitle { text-align: center; }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.how-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.how-connector {
  position: absolute;
  left: 21px;
  top: 44px;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--green), var(--border));
}

.how-content {
  padding-bottom: 52px;
}
.how-step:last-child .how-content { padding-bottom: 0; }

.how-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
  padding-top: 8px;
}
.how-content p {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.65;
  text-align: justify;
}

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #052e16 0%, var(--green-mid) 50%, #052e16 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #86efac;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.15);
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta-note {
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  color: white;
}
.footer-logo .logo-text strong { color: var(--green); }

.footer-text {
  font-size: .88rem;
  color: var(--slate-light);
  max-width: 440px;
  line-height: 1.6;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ─── FORM PAGE ─────────────────────────────────────────────── */
.form-page {
  min-height: 100vh;
  background: var(--bg-soft);
}

.form-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.form-body {
  padding: 60px 0 80px;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}
.form-intro h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-intro p {
  font-size: 1rem;
  color: var(--slate);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--slate-light);
  font-size: .8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.form-group select:disabled {
  background: var(--bg-soft);
  color: var(--slate-light);
  cursor: not-allowed;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 20px 0 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  margin-bottom: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 32px;
  text-align: center;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(22,163,74,.35);
  transition: all .2s;
  font-family: var(--font);
}
.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,.4);
}

.form-disclaimer {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  text-align: center;
}
.form-disclaimer strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #9a3412;
  margin-bottom: 4px;
}
.form-disclaimer p {
  font-size: .82rem;
  color: #c2410c;
  line-height: 1.55;
}

.form-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  transition: color .2s;
}
.form-back:hover { color: var(--green); }

/* ─── SELECT LOADING STATE ──────────────────────────────────── */
.select-loading {
  position: relative;
}
.select-loading::after {
  content: '';
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ─── SUCCESS STATE ─────────────────────────────────────────── */
.success-box {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-box.visible { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-box h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.success-box p { color: var(--slate); font-size: 1rem; line-height: 1.6; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .solution-inner,
  .objection-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .numbers-inner { flex-direction: column; gap: 28px; }
  .divider { width: 40px; height: 1px; }
  .number-item { padding: 0; }

  .form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-checks { flex-direction: column; align-items: center; gap: 12px; }

  .how-connector { height: 48px; }
  .how-content { padding-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 0 64px; }
  .section { padding: 64px 0; }
  .service-steps,
  .benefits-grid,
  .pain-grid,
  .authority-grid { grid-template-columns: 1fr; }
}
