/* ==========================================================================
   AMPARO - ISENÇÃO DE IR POR DOENÇA GRAVE (LEI 7.713/88)
   Direct-Response High Conversion Design System & UI/UX
   ========================================================================== */

:root {
  /* Color Palette - Premium Institutional & Trust */
  --bg-main: #fbf9f5;
  --bg-card: #ffffff;
  --bg-card-subtle: #f4eee3;
  --bg-dark: #0b211b;
  --bg-dark-surface: #122d25;
  
  --emerald-900: #0b211b;
  --emerald-800: #12332a;
  --emerald-700: #1b493d;
  --emerald-600: #256656;
  
  --gold-300: #edd29f;
  --gold-400: #dfb260;
  --gold-500: #c99846;
  --gold-600: #a9792e;
  
  --text-main: #142420;
  --text-muted: #4e605b;
  --text-light: #f5f3ee;
  --text-light-muted: #9eb5ae;
  
  --border-light: rgba(20, 36, 32, 0.08);
  --border-card: rgba(201, 152, 70, 0.22);
  --border-dark: rgba(255, 255, 255, 0.1);
  
  --shadow-sm: 0 4px 12px rgba(11, 33, 27, 0.04);
  --shadow-md: 0 12px 32px rgba(11, 33, 27, 0.08);
  --shadow-lg: 0 20px 48px rgba(11, 33, 27, 0.14);
  --shadow-gold: 0 10px 28px rgba(201, 152, 70, 0.28);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --font-serif: "Spectral", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   AMBIENT GLOWS & BACKGROUNDS (PARALLAX ATMOSPHERE)
   ========================================================================== */

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  transition: transform 0.2s ease-out;
}

.glow-1 {
  top: -10vw;
  right: -5vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(201, 152, 70, 0.18) 0%, rgba(27, 73, 61, 0.12) 60%, transparent 80%);
}

.glow-2 {
  top: 40vh;
  left: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(27, 73, 61, 0.12) 0%, rgba(201, 152, 70, 0.08) 60%, transparent 80%);
}

.ambient-pattern {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(20, 36, 32, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ==========================================================================
   CONTAINERS & SECTION COMMONS
   ========================================================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-600);
  margin-bottom: 12px;
  background: rgba(201, 152, 70, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 152, 70, 0.25);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  color: var(--emerald-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 400;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s;
}

.btn:hover::after {
  left: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--emerald-900);
  border-color: var(--gold-500);
  box-shadow: 0 6px 18px rgba(201, 152, 70, 0.24);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 152, 70, 0.36);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 51, 42, 0.2);
  color: var(--emerald-900);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-card);
  color: var(--emerald-900);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--gold-500);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.shadow-gold {
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 36, 32, 0.07);
  transition: var(--transition);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--emerald-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 33, 27, 0.15);
}

.brand-icon {
  width: 24px;
  height: 24px;
}

.brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--emerald-900);
  font-weight: 600;
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--emerald-800);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
}

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

.hero-section {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(18, 51, 42, 0.06);
  border: 1px solid rgba(18, 51, 42, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(201, 152, 70, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 152, 70, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(201, 152, 70, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 152, 70, 0); }
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald-800);
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.14;
  color: var(--emerald-900);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--emerald-800) 20%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-lead strong {
  color: var(--emerald-900);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.proof-item strong {
  display: block;
  font-size: 1.15rem;
  color: var(--emerald-900);
  font-weight: 700;
}

.proof-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.proof-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-light);
}

/* Hero Media Visual */
.hero-visual {
  position: relative;
}

.visual-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 238, 227, 0.6));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 152, 70, 0.3);
}

.visual-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.hero-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-card-wrapper:hover .hero-main-photo {
  transform: scale(1.03);
}

.visual-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 33, 27, 0.35) 100%);
  pointer-events: none;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 152, 70, 0.3);
}

.badge-top-right {
  top: -18px;
  right: -18px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--emerald-800);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-wrap.gold-icon {
  background: var(--gold-500);
  color: var(--emerald-900);
}

.badge-info small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.badge-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--emerald-900);
  font-weight: 700;
}

/* Floating Animations */
.float-anim {
  animation: floatBadge 4s ease-in-out infinite;
}

.float-anim-delayed {
  animation: floatBadge 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   HIGHLIGHT BENEFIT BAND
   ========================================================================== */

.benefits-band {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.band-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.band-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.band-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201, 152, 70, 0.15);
  border: 1px solid rgba(201, 152, 70, 0.3);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.band-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-300);
}

.band-card p {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .band-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   SIMULATOR WIZARD SECTION
   ========================================================================== */

.simulator-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, rgba(244, 238, 227, 0.7) 100%);
  position: relative;
  z-index: 1;
}

.wizard-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}

/* Progress Bar */
.wizard-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
  transition: var(--transition);
}

.progress-step.active {
  opacity: 1;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  border: 2px solid var(--border-card);
  color: var(--emerald-900);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-step.active .step-num {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--emerald-900);
  box-shadow: 0 0 0 4px rgba(201, 152, 70, 0.2);
}

.step-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--emerald-900);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  margin: 0 16px;
  transition: var(--transition);
}

.progress-line.filled {
  background: var(--gold-500);
}

/* Wizard Tabs */
.wizard-tab {
  display: none;
  animation: fadeInTab 0.35s ease forwards;
}

.wizard-tab.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: 8px;
}

.tab-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Option Cards (Selection Grid) */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.selection-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.selection-card input {
  position: absolute;
  opacity: 0;
}

.selection-card .card-body {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-main);
  border: 2px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}

.selection-card:hover .card-body {
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.selection-card input:checked + .card-body {
  background: #ffffff;
  border-color: var(--gold-500);
  box-shadow: 0 8px 20px rgba(201, 152, 70, 0.16);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.selection-card strong {
  display: block;
  font-size: 0.98rem;
  color: var(--emerald-900);
  margin-bottom: 4px;
}

.selection-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Inputs & Form Rows */
.form-group {
  margin-bottom: 20px;
}

.field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: 8px;
}

.custom-select, .custom-input, textarea.custom-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(20, 36, 32, 0.15);
  background: #ffffff;
  color: var(--text-main);
  transition: var(--transition);
}

.custom-select:focus, .custom-input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 152, 70, 0.2);
}

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

@media (max-width: 680px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-row-compact {
  margin-top: 20px;
}

/* Estimator Live Box */
.estimator-box {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 24px;
  border-radius: var(--radius-md);
  margin: 28px 0;
  border: 1px solid rgba(201, 152, 70, 0.3);
}

.estimator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.estimator-header strong {
  font-size: 1.15rem;
  color: var(--gold-300);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 18px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-400);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
}

.estimator-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-value {
  font-size: 1.45rem;
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-weight: 700;
}

.estimator-disclaimer {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light-muted);
  margin-top: 10px;
}

/* Step 3 Verdict Banner */
.verdict-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(30, 92, 79, 0.08);
  border: 1px solid rgba(30, 92, 79, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.verdict-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.verdict-banner h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--emerald-900);
  font-weight: 600;
  margin-bottom: 4px;
}

.verdict-banner p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 20px 0;
  cursor: pointer;
}

.consent-check input {
  margin-top: 3px;
}

.tab-footer {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.feedback-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feedback-box.success {
  background: #eef7f2;
  border: 1px solid #7bc69e;
  color: #0e4429;
}

/* ==========================================================================
   FEATURE CARDS (QUEM TEM DIREITO)
   ========================================================================== */

.who-section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-card);
}

.card-header-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.icon-circle {
  font-size: 1.8rem;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-800);
  background: var(--bg-card-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--emerald-900);
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.card-checklist {
  list-style: none;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.card-checklist li {
  font-size: 0.82rem;
  color: var(--emerald-900);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.card-checklist li::before {
  content: "✓";
  color: var(--gold-600);
  font-weight: 700;
}

.notice-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.callout-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.notice-callout strong {
  color: var(--emerald-900);
}

/* ==========================================================================
   DISEASES SEARCH & DYNAMIC GRID
   ========================================================================== */

.diseases-section {
  padding: 90px 0;
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.diseases-section .section-header h2 {
  color: var(--text-light);
}

.diseases-section .section-sub {
  color: var(--text-light-muted);
}

.disease-search-wrap {
  max-width: 640px;
  margin: 0 auto 48px;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-box svg {
  position: absolute;
  left: 18px;
  color: var(--gold-400);
  pointer-events: none;
}

.search-input-box input {
  width: 100%;
  padding: 16px 50px 16px 52px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(201, 152, 70, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.search-input-box input:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 20px rgba(201, 152, 70, 0.25);
}

.btn-clear {
  position: absolute;
  right: 18px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
}

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

.disease-item {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.disease-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.disease-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.disease-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(201, 152, 70, 0.15);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.disease-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
  margin-top: 4px;
}

.disease-item p {
  font-size: 0.84rem;
  color: var(--text-light-muted);
  line-height: 1.45;
  margin-bottom: 16px;
}

.law-ref {
  font-size: 0.72rem;
  color: var(--gold-400);
  opacity: 0.85;
}

.disease-empty-state {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 32px;
  background: var(--bg-dark-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
}

.disease-empty-state p {
  margin-bottom: 20px;
  color: var(--text-light-muted);
}

/* ==========================================================================
   RESTITUIÇÃO RETROATIVA SECTION
   ========================================================================== */

.retroactive-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.retroactive-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.retro-photo-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.retro-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.retro-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 33, 27, 0.88);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 152, 70, 0.4);
  color: #ffffff;
}

.stat-big {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-400);
  font-weight: 700;
}

.retro-badge-overlay span {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.timeline-stepper {
  margin: 32px 0;
}

.t-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}

.t-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: -16px;
  width: 2px;
  background: var(--border-light);
}

.t-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  border: 2px solid var(--gold-500);
  color: var(--emerald-900);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.t-body strong {
  display: block;
  font-size: 1.05rem;
  color: var(--emerald-900);
  margin-bottom: 4px;
}

.t-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .retroactive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   CHECKLIST DOCUMENTAL SECTION
   ========================================================================== */

.docs-section {
  padding: 90px 0;
  background: var(--bg-card-subtle);
  position: relative;
  z-index: 1;
}

.docs-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Live Readiness Meter */
.readiness-meter {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  margin-bottom: 24px;
}

.meter-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.meter-info strong {
  color: var(--gold-600);
  font-size: 1.1rem;
}

.meter-track {
  height: 10px;
  border-radius: 5px;
  background: var(--border-light);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), #28a745);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.checklist-interactive {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.check-item:hover {
  border-color: var(--gold-400);
}

.check-item input {
  position: absolute;
  opacity: 0;
}

.check-box-custom {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(20, 36, 32, 0.25);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.check-item input:checked + .check-box-custom {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.check-item input:checked + .check-box-custom::after {
  content: "✓";
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
}

.check-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--emerald-900);
  margin-bottom: 2px;
}

.check-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.desk-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.desk-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.desk-caption-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-card);
}

.shield-badge {
  font-size: 1.5rem;
}

.desk-caption-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--emerald-900);
}

.desk-caption-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.faq-accordion-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--border-card);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  list-style: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--emerald-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle-icon::before, .faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-600);
  transition: var(--transition);
}

.faq-toggle-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-toggle-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item[open] .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FINAL BANNER
   ========================================================================== */

.final-banner-section {
  padding: 40px 0 90px;
  position: relative;
  z-index: 1;
}

.banner-box {
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-800));
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 152, 70, 0.4);
}

.banner-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 152, 70, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.badge-gold {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(201, 152, 70, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.banner-content p {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ==========================================================================
   STICKY BOTTOM BAR (DAAT DIRECT RESPONSE)
   ========================================================================== */

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(11, 33, 27, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 152, 70, 0.35);
  padding: 12px 24px;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-text strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
}

.sticky-text small {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-300);
}

@media (max-width: 680px) {
  .sticky-text {
    display: none;
  }
  .sticky-action {
    width: 100%;
  }
  .sticky-action .btn {
    width: 100%;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 95;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-4px);
}

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

.site-footer {
  background: #081713;
  color: var(--text-light);
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}

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

.footer-container:first-child {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-text strong {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 360px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.footer-col a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}

.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 860px) {
  .footer-container:first-child {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OVERHAUL (PERFECT UX & ZERO HORIZONTAL OVERFLOW)
   ========================================================================== */

@media (max-width: 860px) {
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .ambient-glow, .ambient-pattern {
    max-width: 100vw;
    overflow: hidden;
  }

  /* Header */
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 16px;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
  }

  .brand-icon {
    width: 20px;
    height: 20px;
  }

  .brand-text strong {
    font-size: 1.15rem;
  }

  .brand-text span {
    font-size: 0.65rem;
  }

  .header-cta .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .header-cta .btn svg {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    padding: 24px 0 40px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .pill-badge {
    padding: 5px 12px;
    margin-bottom: 14px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.8vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
  }

  .hero-proof-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding-top: 16px;
    text-align: center;
  }

  .proof-divider {
    display: none;
  }

  .proof-item strong {
    font-size: 0.95rem;
  }

  .proof-item span {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  /* Hero Visual & Badges (Prevent overflow) */
  .visual-card-wrapper {
    padding: 8px;
    box-shadow: var(--shadow-md);
  }

  .floating-badge {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }

  .badge-top-right, .badge-bottom-left {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  /* Value Band */
  .band-section {
    padding: 36px 0;
  }

  .band-container {
    padding: 0 16px;
  }

  .band-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Simulator Wizard */
  .simulator-section {
    padding: 40px 0;
  }

  .wizard-card {
    padding: 20px 16px;
    margin: 0 16px;
    border-radius: 18px;
  }

  .wizard-progress-bar {
    margin-bottom: 20px;
    padding-bottom: 14px;
    gap: 4px;
  }

  .step-label {
    display: none;
  }

  .progress-line {
    margin: 0 6px;
  }

  .option-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .selection-card .card-body {
    padding: 14px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-wizard-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .btn-wizard-nav .btn {
    width: 100%;
    justify-content: center;
  }

  /* Diseases Section */
  .diseases-section {
    padding: 44px 0;
  }

  .diseases-container {
    padding: 0 16px;
  }

  .disease-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .disease-item {
    padding: 14px;
  }

  /* Retroactive Section */
  .retroactive-section {
    padding: 44px 0;
  }

  .retroactive-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .retro-badge-overlay {
    position: static;
    margin-top: 12px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    box-shadow: none;
  }

  /* Checklist Documental */
  .docs-section {
    padding: 44px 0;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .desk-caption-card {
    position: static;
    margin-top: 12px;
    width: 100%;
    border-radius: 12px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 44px 0;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-question strong {
    font-size: 0.95rem;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 44px 0;
  }

  .cta-banner-box {
    margin: 0 16px;
    padding: 32px 18px;
    border-radius: 18px;
  }

  .cta-banner-title {
    font-size: 1.6rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-container:first-child {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Floating WhatsApp (Hide on mobile to prevent clutter with sticky bar) */
  .floating-whatsapp {
    display: none;
  }

  /* Mobile Sticky Bar */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(11, 33, 27, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(201, 152, 70, 0.35);
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
    gap: 10px;
    align-items: center;
  }

  .mobile-sticky-bar .btn-sticky-simular {
    flex: 1;
    background: linear-gradient(135deg, #c99846 0%, #dfb260 100%);
    color: #0b211b;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(201, 152, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mobile-sticky-bar .btn-sticky-wa {
    background: #25d366;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  }

  body {
    padding-bottom: 70px;
  }
}


