/* ============================================
   PALHARES ADVOGADOS — STYLE.CSS v2
   Agressiva, mobile-first, conversão
   ============================================ */

:root {
  --blue: #002B7F;
  --blue-dark: #001A52;
  --blue-light: #1E40AF;
  --gold: #FFC107;
  --gold-hover: #FFD54F;
  --gold-dark: #B78900;
  --green: #059669;
  --red: #DC2626;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.15);
  --shadow-xl: 0 20px 40px -10px rgba(0,0,0,.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: all 200ms ease; text-decoration: none;
}
.btn--gold {
  background: var(--gold); color: var(--blue-dark);
  padding: 14px 32px; font-size: 16px;
  box-shadow: 0 4px 14px rgba(255,193,7,.4);
}
.btn--gold:hover {
  background: var(--gold-hover); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,193,7,.5);
}
.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn--full { width: 100%; }
.btn--xl { padding: 18px 32px; font-size: 18px; }

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,43,127,.95); backdrop-filter: blur(8px);
  padding: 12px 0; transition: all 200ms;
}
.header--scrolled { background: rgba(0,26,82,.98); box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; flex-direction: column; }
.header__logo-name { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: 1px; line-height: 1; }
.header__logo-sub { font-size: 9px; font-weight: 500; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.header__nav { display: none; gap: 32px; }
.header__link { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: color 200ms; }
.header__link:hover { color: var(--white); }
.header__cta { display: none; padding: 10px 24px; font-size: 14px; }
.header__hamburger {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.header__hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 200ms; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--blue-dark); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 300ms;
}
.mobile-menu--open { opacity: 1; pointer-events: auto; }
.mobile-menu__close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer;
}
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu__link { color: var(--white); font-size: 20px; font-weight: 600; }
.mobile-menu__cta { margin-top: 16px; }

@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__hamburger { display: none; }
}

/* ========== HERO + CALCULATOR ========== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 88px 0 40px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: flex; flex-direction: column; gap: 24px;
}
.hero__content { flex: 1; }
.hero__badge {
  display: inline-block; background: rgba(255,193,7,.15); color: var(--gold);
  padding: 6px 16px; border-radius: 99px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px; border: 1px solid rgba(255,193,7,.3);
}
.hero__title {
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 14px; letter-spacing: -0.025em;
}
.hero__title--gold { color: var(--gold); }
.hero__subtitle {
  font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.5;
  margin-bottom: 16px;
}
.hero__subtitle strong { color: var(--gold); }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.hero__badge-item {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
}
.hero__cta-mobile { display: inline-flex; margin-bottom: 8px; }

/* Hero proof block (desktop only) */
.hero__proof { display: none; }
.hero__quote {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px;
}
.hero__quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; letter-spacing: 0.5px;
}
.hero__quote-text {
  font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.5;
  font-style: italic; margin-bottom: 6px;
}
.hero__quote-author {
  font-size: 13px; font-weight: 600; color: var(--gold);
}
.hero__quote-author span {
  font-weight: 400; color: rgba(255,255,255,.5); margin-left: 4px;
}
.hero__model {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 14px 18px;
}
.hero__model-icon { font-size: 20px; flex-shrink: 0; }
.hero__model-text {
  font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5;
}
.hero__model-text strong { color: var(--gold); }

/* Calculator card */
.hero__calc { flex: 1; max-width: 100%; }
.calc {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-xl);
  position: relative;
}
.calc__progress {
  height: 4px; background: var(--gray-200); border-radius: 99px;
  margin-bottom: 8px; overflow: hidden;
}
.calc__progress-bar {
  height: 100%; width: 50%; background: var(--gold);
  border-radius: 99px; transition: width 500ms ease;
}
.calc__step-label { font-size: 12px; color: var(--gray-500); margin-bottom: 16px; }
.calc__step-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 20px; line-height: 1.3; letter-spacing: -0.01em;
}
.calc__step { animation: fadeIn 300ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Result box */
.calc__result-box {
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F0FE 100%);
  border: 2px solid rgba(0,43,127,.1);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  margin-bottom: 20px;
}
.calc__result-intro { font-size: 14px; color: var(--gray-600); margin-bottom: 8px; }
.calc__result-value {
  font-size: 28px; font-weight: 900; color: var(--blue);
  margin-bottom: 8px; line-height: 1.2;
}
.calc__result-value--blur {
  filter: blur(8px); user-select: none; pointer-events: none;
}
.calc__result-months { font-size: 14px; color: var(--gray-600); }
.calc__capture-text { font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 16px; }
.calc__disclaimer {
  font-size: 11px; color: var(--gray-500); line-height: 1.5;
  margin-bottom: 12px; padding: 10px; background: var(--gray-50); border-radius: 6px;
}
.calc__disclaimer a { color: var(--blue-light); text-decoration: underline; }

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-group--conditional { margin-top: 8px; }
.form-group--checkbox { margin-bottom: 16px; }
.form-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px;
}
.tooltip {
  cursor: help; font-size: 14px; color: var(--gray-500);
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--gray-200);
}
.form-input {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font); font-size: 16px;
  color: var(--gray-900); background: var(--white);
  transition: border-color 200ms, box-shadow 200ms;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,43,127,.1);
}
.form-input--valid { border-color: var(--green); }
.form-input--error { border-color: var(--red); }
.form-error { display: block; font-size: 12px; color: var(--red); margin-top: 4px; min-height: 0; }

/* Radio */
.radio-group { display: flex; gap: 12px; }
.radio-option {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 14px; color: var(--gray-700); padding: 10px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  flex: 1; transition: border-color 200ms;
}
.radio-option:has(input:checked) { border-color: var(--blue); background: rgba(0,43,127,.03); }
.radio-option input { position: absolute; opacity: 0; }
.radio-custom {
  width: 18px; height: 18px; border: 2px solid var(--gray-300, #D1D5DB);
  border-radius: 50%; position: relative; flex-shrink: 0;
}
.radio-option input:checked + .radio-custom {
  border-color: var(--blue);
}
.radio-option input:checked + .radio-custom::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--blue); border-radius: 50%;
}

/* Checkbox */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 12px; color: var(--gray-600);
}
.checkbox-label input { position: absolute; opacity: 0; }
.checkbox-custom {
  width: 18px; height: 18px; border: 2px solid var(--gray-300, #D1D5DB);
  border-radius: 4px; flex-shrink: 0; margin-top: 1px; position: relative;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--blue); border-color: var(--blue);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: solid var(--white); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-text a { color: var(--blue-light); text-decoration: underline; }

.form-helper { display: block; font-size: 12px; color: var(--gray-500); margin-top: 4px; }
/* Social proof above calculator */
.calc__social-proof {
  text-align: center; font-size: 13px; color: rgba(255,255,255,.7);
  margin-bottom: 8px; font-weight: 500;
}
/* Anchor text below blur */
.calc__anchor {
  font-size: 13px; color: var(--green); font-weight: 600;
  text-align: center; margin: -8px 0 16px; line-height: 1.4;
}
.microcopy { font-size: 12px; color: var(--gray-500); margin-top: 8px; }
.microcopy--center { text-align: center; }

/* Desktop layout: hero grid */
@media (min-width: 1024px) {
  .hero { padding: 108px 0 52px; }
  .hero__grid {
    flex-direction: row; align-items: flex-start; gap: 48px;
  }
  .hero__content { flex: 1; padding-top: 12px; }
  .hero__title { font-size: 48px; }
  .hero__subtitle { font-size: 17px; }
  .hero__cta-mobile { display: none; }
  .hero__calc { flex: 0 0 440px; }
  .calc { padding: 32px; }
  .hero__proof { display: block; margin-top: 24px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__title { font-size: 34px; }
  .hero__cta-mobile { display: none; }
  .hero__grid { flex-direction: row; gap: 32px; }
  .hero__calc { flex: 0 0 380px; }
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--white); padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-strip__item { text-align: center; min-width: 100px; }
.trust-strip__number {
  display: block; font-size: 28px; font-weight: 800; color: var(--blue);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2px;
}
.trust-strip__number--static { font-size: 26px; }
.trust-strip__label { font-size: 13px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.trust-strip__divider {
  width: 1px; height: 40px; background: var(--gray-200);
}

@media (max-width: 480px) {
  .trust-strip__inner { gap: 16px; }
  .trust-strip__number { font-size: 20px; }
  .trust-strip__divider { height: 28px; }
}

/* ========== EXPLAINER BANNER ========== */
.explainer {
  padding: 32px 0; background: var(--blue-dark); color: var(--white);
}
.explainer__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}
.explainer__title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -0.01em; line-height: 1.3;
}
.explainer__bullets {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px;
}
.explainer__bullet {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.85); font-weight: 500;
}
.explainer__icon { font-size: 18px; flex-shrink: 0; }

@media (min-width: 768px) {
  .explainer__title { font-size: 22px; }
  .explainer__bullets { gap: 12px 40px; }
  .explainer__bullet { font-size: 15px; }
}

/* ========== DOR SECTION ========== */
.dor {
  padding: 64px 0; text-align: center; background: var(--gray-50);
}
.section-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 40px; line-height: 1.2; letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }
.dor__cards {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-bottom: 32px;
}
.dor__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; text-align: left; box-shadow: var(--shadow);
  border: none; border-left: 4px solid var(--gold);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.dor__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dor__icon { font-size: 36px; display: block; margin-bottom: 12px; }
.dor__card-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.3; }
.dor__card-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.dor__punch {
  font-size: 18px; color: var(--gray-900); margin-bottom: 24px;
  font-style: italic; font-weight: 500;
}

@media (min-width: 768px) {
  .dor__cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .section-title { font-size: 32px; }
}

/* ========== COMO FUNCIONA ========== */
.how {
  padding: 64px 0; text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}
.how__steps {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-bottom: 40px;
}
.how__step {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 24px; width: 100%; max-width: 340px;
  text-align: center;
}
.how__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--gold); color: var(--blue-dark);
  font-size: 16px; font-weight: 900; border-radius: 50%; margin-bottom: 12px;
}
.how__step-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.how__step-text { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.how__connector {
  width: 2px; height: 20px; background: rgba(255,255,255,.2);
}
.how__highlight {
  background: rgba(255,193,7,.12); border: 1px solid rgba(255,193,7,.3);
  border-radius: var(--radius-lg); padding: 20px 32px; margin-bottom: 40px;
  display: block; max-width: 600px; margin-left: auto; margin-right: auto;
  font-size: 16px; color: var(--gold); line-height: 1.5;
}

@media (min-width: 768px) {
  .how__steps { flex-direction: row; gap: 16px; }
  .how__step { flex: 1; }
  .how__connector { width: 40px; height: 2px; align-self: center; }
}

/* ========== INFO SECTION ========== */
.info-section { padding: 64px 0; background: var(--white); }
.info-section__inner { max-width: 720px; margin: 0 auto; }
.info-section__title {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  color: var(--gray-900); margin-bottom: 24px; text-align: center;
  letter-spacing: -0.01em;
}
.info-section__content { font-size: 16px; color: var(--gray-700); line-height: 1.8; }
.info-section__content p { margin-bottom: 16px; }
.info-section__content p:last-child { margin-bottom: 0; }
.info-section__content strong { color: var(--gray-900); }

@media (min-width: 1024px) {
  .info-section { padding: 80px 0; }
  .info-section__title { font-size: 28px; }
  .info-section__content { font-size: 17px; }
}

/* ========== FAQ ========== */
.faq { padding: 64px 0 80px; background: var(--gray-50); }
.faq .section-title { text-align: center; }
.faq__list { max-width: 700px; margin: 0 auto 32px; }
.faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.faq__item:first-child { border-top: 1px solid var(--gray-200); }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; font-family: var(--font); font-size: 16px; font-weight: 600;
  color: var(--gray-900); background: none; border: none; cursor: pointer;
  text-align: left; gap: 16px;
}
.faq__icon {
  font-size: 22px; color: var(--blue); transition: transform 200ms;
  flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 300ms ease;
}
.faq__item--open .faq__answer { max-height: 200px; }
.faq__item--open .faq__icon { transform: rotate(45deg); }
.faq__answer p { padding: 0 4px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq__cta-wrap { text-align: center; padding-top: 8px; }
.faq__cta-text { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900); padding: 48px 0 40px; text-align: center;
  color: rgba(255,255,255,.5); font-size: 13px;
}
.footer__name { color: var(--white); font-weight: 700; font-size: 15px; margin-bottom: 12px; letter-spacing: 0.5px; }
.footer__info { margin-bottom: 16px; line-height: 1.7; }
.footer__legal { margin-bottom: 16px; }
.footer__legal a { color: rgba(255,255,255,.6); text-decoration: underline; }
.footer__legal a:hover { color: var(--white); }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.35); }

/* ========== FLOATING CTA (Mobile) ========== */
.floating-cta {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--gold); color: var(--blue-dark); font-weight: 700; font-size: 14px;
  padding: 14px 28px; border-radius: 99px; z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,.25); text-decoration: none;
  transition: transform 300ms ease;
  white-space: nowrap;
}
.floating-cta--visible { transform: translateX(-50%) translateY(0); }

@media (min-width: 768px) {
  .floating-cta { display: none; }
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
  position: fixed; inset: 0; background: rgba(0,26,82,.95);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.loading-screen__inner { text-align: center; padding: 40px; max-width: 400px; }
.loading-screen__title {
  font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 24px;
}
.loading-screen__bar {
  height: 6px; background: rgba(255,255,255,.2); border-radius: 99px;
  overflow: hidden; margin-bottom: 16px;
}
.loading-screen__fill {
  height: 100%; width: 0; background: var(--gold);
  border-radius: 99px; transition: width 600ms ease;
}
.loading-screen__msg { font-size: 14px; color: rgba(255,255,255,.7); }

/* ========== THANK YOU PAGE STYLES ========== */
/* TY Page - Header */
.ty-header { background: var(--blue-dark); padding: 20px 0; text-align: center; }
.ty-header__logo-name { display: block; color: var(--white); font-size: 16px; font-weight: 800; letter-spacing: 1px; }
.ty-header__logo-sub { display: block; color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* TY Page - Resultado */
.ty-result { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 48px 0; text-align: center; }
.ty-result__badge { display: inline-block; background: rgba(5,150,105,.15); color: var(--green); padding: 8px 20px; border-radius: 99px; font-size: 14px; font-weight: 700; margin-bottom: 16px; border: 1px solid rgba(5,150,105,.3); }
.ty-result__title { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em; }
.ty-result__sub { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.ty-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; max-width: 500px; margin: 0 auto 16px; box-shadow: var(--shadow-xl); }
.ty-card__label { font-size: 14px; color: var(--gray-600); margin-bottom: 8px; }
.ty-card__value { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--blue); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.02em; }
.ty-card__breakdown { display: flex; gap: 16px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.ty-card__breakdown-item { flex: 1; text-align: center; }
.ty-card__breakdown-label { display: block; font-size: 11px; color: var(--gray-500); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 4px; }
.ty-card__breakdown-value { display: block; font-size: 18px; font-weight: 700; color: var(--gray-800, #1F2937); }
.ty-card__details { display: flex; justify-content: center; gap: 24px; }
.ty-card__detail { font-size: 14px; color: var(--gray-500); }
.ty-disclaimer { font-size: 11px; color: rgba(255,255,255,.4); max-width: 600px; margin: 16px auto 0; line-height: 1.5; }
.ty-transition { font-size: 15px; color: rgba(255,255,255,.8); max-width: 500px; margin: 24px auto 0; }

/* TY Page - Agendamento */
.ty-agendar { padding: 48px 0; text-align: center; background: var(--gray-50); }
.ty-agendar__title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; letter-spacing: -0.01em; }
.ty-agendar__sub { font-size: 16px; color: var(--gray-600); margin-bottom: 20px; }
.ty-agendar__bullets { list-style: none; max-width: 500px; margin: 0 auto 24px; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.ty-agendar__bullets li { font-size: 15px; color: var(--gray-700); padding-left: 28px; position: relative; }
.ty-agendar__bullets li::before { content: '\2705'; position: absolute; left: 0; }
.ty-agendar__microcopy { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.ty-calendly { max-width: 660px; margin: 0 auto 24px; }
.ty-agendar__dica { font-size: 13px; color: var(--gray-500); font-style: italic; }

/* Urgency banner */
.ty-urgency {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #FEF3C7; border: 1px solid #F59E0B; border-radius: var(--radius);
  padding: 12px 20px; margin-bottom: 20px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.ty-urgency__icon { font-size: 18px; }
.ty-urgency__text { font-size: 14px; font-weight: 600; color: #92400E; }

/* Post-Calendly states */
.ty-not-scheduled {
  background: #FEF2F2; border: 1px solid #FECACA; border-radius: var(--radius);
  padding: 20px 24px; max-width: 500px; margin: 20px auto 0; text-align: center;
}
.ty-not-scheduled p { font-size: 15px; color: #991B1B; margin-bottom: 12px; }
.ty-not-scheduled .btn { font-size: 15px; padding: 12px 28px; }
.ty-yes-scheduled {
  background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: var(--radius);
  padding: 20px 24px; max-width: 500px; margin: 20px auto 0; text-align: center;
}
.ty-yes-scheduled p { font-size: 15px; color: #166534; margin-bottom: 4px; }

/* TY Page - Timeline */
.ty-next { padding: 56px 0; background: var(--white); }
.ty-next__title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 32px; letter-spacing: -0.01em; text-align: center; }
.ty-timeline { display: flex; flex-direction: column; gap: 12px; max-width: 520px; margin: 0 auto; }
.ty-timeline__item { display: flex; gap: 20px; align-items: flex-start; padding: 20px 24px; background: var(--gray-50); border-left: 3px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; text-align: left; }
.ty-timeline__num { width: 40px; height: 40px; flex-shrink: 0; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.ty-timeline__content { font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.ty-timeline__content strong { color: var(--gray-900); display: block; margin-bottom: 4px; font-size: 16px; }

/* TY Page - Footer */
.ty-footer { background: var(--gray-900); padding: 24px 0; text-align: center; color: rgba(255,255,255,.5); font-size: 12px; }
.ty-footer__logo { color: var(--white); font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.ty-footer__oab { margin-bottom: 8px; }
.ty-footer__legal { margin-bottom: 8px; }
.ty-footer__legal a { color: rgba(255,255,255,.6); text-decoration: underline; }

.ty-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 100px 0 48px; text-align: center;
}
.ty-badge {
  display: inline-block; background: rgba(5,150,105,.15); color: var(--green);
  padding: 8px 20px; border-radius: 99px; font-size: 14px; font-weight: 700;
  margin-bottom: 16px; border: 1px solid rgba(5,150,105,.3);
}
.ty-title { font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.ty-subtitle { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.ty-result-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; max-width: 500px; margin: 0 auto;
  box-shadow: var(--shadow-xl); text-align: center;
}
.ty-result-label { font-size: 14px; color: var(--gray-600); margin-bottom: 8px; }
.ty-result-value {
  font-size: 36px; font-weight: 800; color: var(--blue); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.02em;
}
.ty-result-detail { font-size: 14px; color: var(--gray-500); }
.ty-result-disclaimer {
  font-size: 11px; color: var(--gray-500); margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.ty-schedule { padding: 48px 0; text-align: center; background: var(--gray-50); }
.ty-schedule h2 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.ty-schedule-sub { font-size: 16px; color: var(--gray-600); margin-bottom: 20px; }
.ty-bullets {
  list-style: none; max-width: 500px; margin: 0 auto 24px;
  text-align: left; display: flex; flex-direction: column; gap: 8px;
}
.ty-bullets li { font-size: 15px; color: var(--gray-700); padding-left: 28px; position: relative; }
.ty-bullets li::before {
  content: '\\2705'; position: absolute; left: 0; top: 0;
}
.ty-micro {
  font-size: 13px; color: var(--gray-500); margin-bottom: 24px;
}
.calendly-placeholder {
  background: var(--white); border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg); padding: 48px; max-width: 660px; margin: 0 auto;
  color: var(--gray-500); font-size: 14px; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}

.ty-timeline { padding: 48px 0; text-align: center; }
.ty-timeline h2 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 24px; }
.ty-timeline__steps {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 500px; margin: 0 auto; text-align: left;
}
.ty-timeline__step {
  display: flex; gap: 16px; align-items: flex-start;
}
.ty-timeline__icon {
  width: 36px; height: 36px; flex-shrink: 0; background: var(--blue);
  color: var(--white); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 14px;
}
.ty-timeline__text { font-size: 15px; color: var(--gray-700); }
.ty-timeline__text strong { color: var(--gray-900); }

/* Legal pages */
.legal-page { padding: 100px 0 48px; }
.legal-page h1 { font-size: 28px; font-weight: 800; color: var(--gray-900); margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-top: 32px; margin-bottom: 12px; }
.legal-page p { margin-bottom: 12px; line-height: 1.7; }
.legal-page ul { padding-left: 24px; margin-bottom: 12px; }
.legal-page li { margin-bottom: 6px; line-height: 1.6; }
.legal-page a { color: var(--blue-light); text-decoration: underline; }

/* ========== RESPONSIVE FINE-TUNING ========== */
/* CTA pulse animation */
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(255,193,7,.4); }
  50% { box-shadow: 0 6px 24px rgba(255,193,7,.6); }
}
.calc .btn--gold { animation: subtlePulse 3s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .calc .btn--gold { animation: none; } }

/* Focus states (accessibility) */
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.form-input:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,43,127,.15); }
.faq__question:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.radio-option:focus-within { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0,43,127,.1); }
.faq__question { min-height: 48px; }
.radio-option { min-height: 48px; }

/* Mobile: push calculator closer to fold */
@media (max-width: 767px) {
  /* Hero mobile — headline grande e impactante */
  .hero { padding: 72px 0 24px; }
  .hero__grid { gap: 20px; }
  .hero__title { font-size: clamp(34px, 8.5vw, 42px); margin-bottom: 10px; line-height: 1.05; letter-spacing: -0.03em; }
  .hero__title--gold { font-size: inherit; }
  .hero__subtitle { font-size: 15px; margin-bottom: 14px; line-height: 1.45; }
  .hero__badge { font-size: 11px; margin-bottom: 10px; padding: 4px 12px; }
  .hero__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
  .hero__badge-item { font-size: 11px; padding: 5px 9px; }
  .hero__cta-mobile { font-size: 17px; padding: 16px 32px; width: 100%; justify-content: center; }

  /* Calculadora mobile */
  .calc { padding: 20px; }
  .calc__social-proof { font-size: 12px; margin-bottom: 6px; }
  .calc__step-title { font-size: 19px; font-weight: 700; margin-bottom: 16px; }
  .calc__result-value { font-size: 26px; }
  .btn--full { font-size: 16px; padding: 16px; }
  .form-group { margin-bottom: 14px; }

  /* Seções */
  .section-title { font-size: 24px; margin-bottom: 28px; }
  .dor { padding: 48px 0; }
  .dor__card { padding: 24px; }
  .dor__icon { font-size: 32px; }
  .dor__card-title { font-size: 17px; }
  .dor__punch { font-size: 17px; }

  /* Trust strip */
  .trust-strip { padding: 20px 0; }
  .trust-strip__inner { gap: 16px; }
  .trust-strip__number { font-size: 22px; }
  .trust-strip__label { font-size: 11px; }

  /* Explainer */
  .explainer { padding: 28px 0; }
  .explainer__title { font-size: 18px; }
  .explainer__bullets { gap: 8px; flex-direction: column; align-items: flex-start; text-align: left; padding: 0 8px; }
  .explainer__bullet { font-size: 14px; }

  /* Como funciona */
  .how { padding: 48px 0; }
  .how .section-title { font-size: 24px; }
  .how__step { max-width: 100%; text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 20px; }
  .how__number { margin-bottom: 0; flex-shrink: 0; }
  .how__step-title { font-size: 16px; }
  .how__step-text { font-size: 14px; }
  .how__connector { width: 2px; height: 16px; margin-left: 19px; background: rgba(255,255,255,.3); }
  .how__highlight { padding: 16px 20px; margin-bottom: 28px; font-size: 14px; }

  /* Info section */
  .info-section { padding: 48px 0; }
  .info-section__title { font-size: 22px; }
  .info-section__content { font-size: 15px; }

  /* FAQ */
  .faq__question { padding: 18px 4px; font-size: 16px; }
  .faq__answer p { font-size: 15px; }

  /* Footer */
  .footer { padding: 36px 0 32px; }
  .floating-cta { bottom: calc(20px + env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
  .hero__title { font-size: 32px; line-height: 1.08; }
  .hero__subtitle { font-size: 14px; }
  .hero__badge-item { font-size: 10px; padding: 4px 7px; }
  .hero__badge { font-size: 10px; padding: 3px 10px; }
  .trust-strip__inner { gap: 12px; }
  .trust-strip__number { font-size: 20px; }
  .trust-strip__divider { height: 24px; }
  .section-title { font-size: 22px; }
}

/* Desktop spacing boost */
@media (min-width: 1024px) {
  .dor { padding: 80px 0; }
  .how { padding: 80px 0; }
  .faq { padding: 80px 0 96px; }
  .section-title { font-size: 36px; margin-bottom: 48px; }
  .trust-strip { padding: 32px 0; }
  .trust-strip__number { font-size: 32px; }
  .trust-strip__label { font-size: 14px; }
  .trust-strip__inner { gap: 48px; }
  .footer { padding: 56px 0 44px; }
  .footer__name { font-size: 16px; margin-bottom: 16px; }
  .footer__info { margin-bottom: 20px; }
  .dor__cards { gap: 24px; }
  .dor__card { padding: 36px; }
  .dor__icon { font-size: 40px; margin-bottom: 14px; }
  .dor__card-title { font-size: 18px; }
  .how__steps { gap: 16px; margin-bottom: 44px; }
  .how__step { padding: 28px; }
  .how__step-title { font-size: 17px; }
}
