/* ============================================
   LP Prazo IR Cripto — CSS Puro
   BlueConsult — "O Prazo Está Acabando"
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #333333;
  background-color: #f5f7fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button:not(:disabled),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
select:not(:disabled) {
  cursor: pointer;
}

/* --- CSS VARIABLES --- */
:root {
  --brand-blue: #0066cc;
  --brand-dark: #003d99;
  --brand-navy: #0a1628;
  --brand-bg: #f5f7fa;
  --brand-text: #333333;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;

  --green-100: #dcfce7;
  --green-600: #16a34a;
  --green-700: #15803d;

  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-700: #b91c1c;

  --radius: 0.75rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* --- PAGE WRAPPER --- */
.page-wrapper {
  min-height: 100vh;
  background-color: var(--brand-bg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0d2155 60%, #0a1f4a 100%);
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

/* Logo */
.hero-logo {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-logo img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 768px) {
  .hero-logo img {
    height: 2.75rem;
  }
}

/* Hero Grid */
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: start;
  }
}

/* Left column */
.hero-left {
  color: #ffffff;
}

/* Deadline Badge */
.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background-color: rgba(249, 115, 22, 0.15);
  color: #fdba74;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
  letter-spacing: 0.01em;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* Heading */
.hero-heading {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 2.875rem;
  }
}

.hero-heading span {
  color: #7dd3fc;
  display: block;
  margin-top: 0.25rem;
}

/* Subtext */
.hero-subtext {
  font-size: 1.0625rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtext {
    font-size: 1.125rem;
  }
}

/* Urgency Callout */
.urgency-callout {
  margin-bottom: 2rem;
}

.urgency-callout-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-left: 3px solid #f97316;
  border-radius: var(--radius-md);
  color: #fdba74;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.urgency-callout-inner svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #f97316;
}

.urgency-callout-inner strong {
  color: #fff;
}

/* VSL Video */
.vsl-wrapper {
  margin-top: 1.5rem;
}

.vsl-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: #0a0f1e;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), var(--shadow-xl);
}

.vsl-container iframe,
.vsl-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vsl-container iframe {
  border-radius: var(--radius-lg);
}

.vsl-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: #0a0f1e;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  border: none;
  appearance: none;
}

.vsl-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.2) 0%, rgba(10, 15, 30, 0.72) 100%);
}

.vsl-trigger-content {
  position: relative;
  z-index: 1;
  max-width: 22rem;
}

.vsl-play-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.vsl-play-icon svg {
  margin-left: 0;
}

.vsl-trigger-title {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
}

.vsl-caption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
}

/* Mobile CTA Button (shown below hero text on mobile) */
.btn-scroll-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background-color: var(--brand-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.2s ease;
  width: 100%;
  justify-content: center;
}

.btn-scroll-mobile:hover {
  background-color: #0052a3;
}

@media (min-width: 1024px) {
  .btn-scroll-mobile {
    display: none;
  }
}

/* ============================================
   FORM COLUMN (Hero)
   ============================================ */
.hero-form-col {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-form-col {
    position: sticky;
    top: 1.5rem;
  }
}

.form-qualify-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px -8px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
}

.form-card-header {
  padding: 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}

.form-card-header h2 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.form-card-header p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Form fields */
.form-fields {
  padding: 1.25rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background-color: var(--gray-50);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--brand-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

.form-input.is-invalid,
.form-select.is-invalid {
  border-color: var(--red-500);
  background-color: #fff8f8;
}

.form-input::placeholder {
  color: var(--gray-400);
}

/* Error messages */
.form-error {
  font-size: 0.75rem;
  color: var(--red-500);
  display: none;
}

.form-error.visible {
  display: block;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--brand-blue);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

.btn-submit:hover:not(:disabled) {
  background-color: #0052a3;
  box-shadow: var(--shadow-lg);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* WhatsApp CTA micro */
.form-whatsapp-cta {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 0.75rem 0.875rem;
  background-color: #f0f9ff;
  border-radius: var(--radius-sm);
  border: 1px solid #bae6fd;
}

.form-whatsapp-cta svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #0284c7;
}

.form-whatsapp-cta strong {
  color: var(--gray-800);
}

/* Privacy notice */
.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.form-privacy svg {
  flex-shrink: 0;
}

/* ============================================
   CONTENT SECTIONS (generic)
   ============================================ */
.content-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .content-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.section-light {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header h2 span {
  color: var(--brand-blue);
}

.section-subtext {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ============================================
   DOBRA 2 — Mitos / Erros
   ============================================ */
.myth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
  .myth-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.myth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  padding: 1.5rem 1.25rem;
  background-color: var(--red-100);
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
}

.myth-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee2e2;
  border-radius: 9999px;
  color: var(--red-700);
  flex-shrink: 0;
}

.myth-text {
  font-size: 0.9375rem;
  color: var(--red-700);
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
}

.error-consequence {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.error-consequence p {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.error-consequence strong {
  color: var(--brand-navy);
}

/* ============================================
   DOBRA 3 — Quem Corre Risco
   ============================================ */
.section-dark-blue {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0d2155 100%);
  color: #ffffff;
}

.section-header-light {
  color: #ffffff;
}

.section-header-light h2 {
  color: #ffffff;
}

.section-header-light h2 span {
  color: #7dd3fc;
}

.risk-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.risk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.risk-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.risk-item svg {
  flex-shrink: 0;
  color: #fbbf24;
}

.risk-conclusion {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.risk-conclusion p {
  font-size: 1.0625rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.risk-conclusion strong {
  color: #ffffff;
}

/* ============================================
   DOBRA 4 — Serviços
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 1.5rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.service-card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .service-card-wide {
    grid-column: 1 / -1;
    max-width: 28rem;
    justify-self: center;
    width: 100%;
  }
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-100);
  border-radius: var(--radius-md);
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   DOBRA 5 — Filtro
   ============================================ */
.section-filter {
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.filter-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  background-color: var(--gray-200);
  color: var(--gray-700);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.filter-inner h2 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .filter-inner h2 {
    font-size: 2.25rem;
  }
}

.filter-intro {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
}

.filter-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
}

@media (min-width: 640px) {
  .filter-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.filter-yes,
.filter-no {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.filter-yes {
  background-color: var(--green-100);
  border: 1px solid #bbf7d0;
}

.filter-no {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.filter-yes h3,
.filter-no h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.filter-yes h3 {
  color: var(--green-700);
}

.filter-yes h3 svg {
  color: var(--green-600);
}

.filter-no h3 {
  color: var(--gray-700);
}

.filter-no h3 svg {
  color: var(--gray-500);
}

.filter-yes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.filter-yes ul li {
  font-size: 0.9375rem;
  color: #166534;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.filter-yes ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

.filter-no p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   DOBRA 6 — Autoridade
   ============================================ */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .authority-grid {
    grid-template-columns: 1fr 360px;
    gap: 4rem;
  }
}

.authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  background-color: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.authority-text h2 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .authority-text h2 {
    font-size: 2rem;
  }
}

.authority-text > p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.authority-text strong {
  color: var(--brand-navy);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Authority CTA aside */
.authority-cta-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0d2155 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.authority-cta-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.authority-cta-lead strong {
  color: #ffffff;
}

.authority-cta-sub {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

/* ============================================
   DOBRA 7 — Urgência Final + CTA
   ============================================ */
.urgency-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2155 100%);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .urgency-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.urgency-inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.urgency-inner h2 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .urgency-inner h2 {
    font-size: 2.5rem;
  }
}

.urgency-inner > p {
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.urgency-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .urgency-details {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.urgency-detail-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-align: left;
  flex: 1;
}

.urgency-detail-item svg {
  flex-shrink: 0;
  color: #f97316;
}

.urgency-detail-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.urgency-detail-item strong {
  font-size: 0.9375rem;
  color: #ffffff;
  display: block;
}

.urgency-detail-item span {
  font-size: 0.8125rem;
  color: #94a3b8;
}

/* Final CTA block */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.final-cta h3 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e2e8f0;
}

.final-cta-micro {
  font-size: 0.875rem;
  color: #64748b;
}

/* ============================================
   BUTTONS (global)
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--brand-blue);
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background-color: #0052a3;
  box-shadow: var(--shadow-xl);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-large {
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--brand-navy);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-inner p {
  font-size: 0.875rem;
  color: #4b5563;
}
