/* ===========================================
   DATALEILÕES — STYLES FASE 2
   Extensão de styles.css com componentes novos
=========================================== */

/* ===== MEGA MENU ===== */
.nav-desktop .nav-group { position: relative; }
.nav-desktop .nav-group > a {
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-desktop .nav-group > a::after {
  content: ''; display: none;
}
.nav-desktop .nav-group .chev {
  width: 12px; height: 12px; transition: transform 0.2s;
}
.nav-desktop .nav-group:hover .chev { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  opacity: 0; visibility: hidden;
  transition: 0.25s ease;
  z-index: 100;
}
.nav-desktop .nav-group:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--c-text-mid);
  font-weight: 500;
  transition: var(--transition);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--c-blue-ultra); color: var(--c-blue-mid); }
.nav-dropdown-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--c-blue-ultra);
  color: var(--c-blue-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown a:hover .nav-dropdown-icon {
  background: var(--c-blue-mid); color: var(--c-white);
}
.nav-dropdown-text strong {
  display: block; font-weight: 600; color: var(--c-text);
  margin-bottom: 2px;
}
.nav-dropdown-text span {
  display: block; font-size: 11px; color: var(--c-text-soft);
  font-weight: 400; line-height: 1.4;
}

/* ===== PAGE HEADER (páginas internas) ===== */
.page-hero {
  padding: calc(var(--header-h) + var(--ticker-h) + 60px) 0 60px;
  background: linear-gradient(180deg, var(--c-blue-ultra) 0%, var(--c-white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--c-text-mid);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-hero-premium {
  text-align: left;
}
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: 34px;
  align-items: center;
}
.page-hero-copy .lead {
  margin: 0;
  max-width: 64ch;
}
.page-hero-visual {
  display: grid;
  gap: 16px;
}
.page-hero-art {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.82);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}
.page-hero-art img {
  display: block;
  width: 100%;
  height: auto;
}
.page-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.page-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(191, 219, 254, 0.82);
  color: #12325e;
  font-size: 13px;
  font-weight: 600;
}
.page-hero-note {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.76);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}
.page-hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: #102544;
  font-size: 15px;
}
.page-hero-note span {
  display: block;
  color: var(--c-text-mid);
  font-size: 14px;
  line-height: 1.7;
}
.page-hero-note-stack.highlight {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.88), rgba(255, 255, 255, 0.98));
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--c-text-soft);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--c-text-soft); transition: var(--transition); }
.breadcrumb a:hover { color: var(--c-blue-mid); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ===== HOME — MINI CARDS (links pras novas páginas) ===== */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.mini-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-blue-light);
}
.mini-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-blue-ultra);
  color: var(--c-blue-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mini-card-icon-gold {
  background: var(--c-gold-soft); color: var(--c-gold);
}
.mini-card h3 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 8px; color: var(--c-text);
  letter-spacing: -0.01em;
}
.mini-card p {
  font-size: 14px; color: var(--c-text-soft); line-height: 1.5;
  margin-bottom: 16px;
}
.mini-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--c-blue-mid);
}
.mini-card:hover .mini-card-link svg { transform: translateX(4px); }
.mini-card-link svg { transition: transform 0.25s; }

/* ===== MATERIAIS — BIBLIOTECA ===== */
.materiais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.material-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.material-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--c-blue-ultra), var(--c-blue-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue-mid);
  position: relative;
  overflow: hidden;
}
.material-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
}
.material-thumb svg { position: relative; width: 56px; height: 56px; }
.material-thumb.gold {
  background: linear-gradient(135deg, var(--c-gold-soft), #f0e0b5);
  color: var(--c-gold);
}
.material-thumb.green {
  background: linear-gradient(135deg, var(--c-green-soft), #a7f3d0);
  color: #047857;
}
.material-thumb.deep {
  background: linear-gradient(135deg, var(--c-blue-soft), #a5c8ed);
  color: var(--c-blue-deep);
}
.material-body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.material-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 10px;
}
.material-body h3 {
  font-size: 17px; font-weight: 600;
  margin-bottom: 10px; line-height: 1.3;
  color: var(--c-text);
}
.material-body p {
  font-size: 14px; color: var(--c-text-soft);
  line-height: 1.55; margin-bottom: 20px;
  flex: 1;
}
.material-download {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 18px;
  background: var(--c-bg);
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
  border-radius: 100px;
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.material-download:hover {
  background: var(--c-blue-mid);
  color: var(--c-white);
  border-color: var(--c-blue-mid);
}

/* Modal de captura */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}
.modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: fadeUp 0.3s ease-out;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--c-blue-ultra); color: var(--c-blue-mid); }
.modal h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--c-blue-deep);
  margin-bottom: 8px;
}
.modal p {
  font-size: 14px; color: var(--c-text-soft);
  margin-bottom: 24px;
}
.modal .form-group { margin-bottom: 16px; }

/* ===== LEILÕES — BLOCOS EDUCATIVOS ===== */
.leiloes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.leilao-block {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.leilao-block::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 60px;
  background: var(--c-blue-mid);
  border-radius: 0 4px 4px 0;
}
.leilao-block.danger::before { background: var(--c-red); }
.leilao-block.gold::before { background: var(--c-gold); }
.leilao-block.green::before { background: var(--c-green); }
.leilao-block-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--c-blue-ultra);
  color: var(--c-blue-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.leilao-block.danger .leilao-block-icon { background: #fee2e2; color: var(--c-red); }
.leilao-block.gold .leilao-block-icon { background: var(--c-gold-soft); color: var(--c-gold); }
.leilao-block.green .leilao-block-icon { background: var(--c-green-soft); color: #047857; }
.leilao-block h3 {
  font-size: 20px; font-weight: 600;
  margin-bottom: 12px; color: var(--c-text);
  line-height: 1.3;
}
.leilao-block p {
  font-size: 15px; color: var(--c-text-mid);
  line-height: 1.65; margin-bottom: 12px;
}
.leilao-block ul {
  list-style: none; padding: 0; margin: 12px 0 0;
}
.leilao-block li {
  position: relative; padding-left: 22px;
  font-size: 14px; color: var(--c-text-mid);
  line-height: 1.5; margin-bottom: 6px;
}
.leilao-block li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--c-blue-mid); font-weight: 700;
}

/* ===== BLOG — RADAR PATRIMONIAL ===== */
.blog-categories {
  display: flex; gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog-cat {
  padding: 8px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--c-text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.blog-cat:hover { border-color: var(--c-blue-mid); color: var(--c-blue-mid); }
.blog-cat.active {
  background: var(--c-blue-mid);
  border-color: var(--c-blue-mid);
  color: var(--c-white);
}

.blog-featured {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: var(--transition);
}
.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.blog-featured-img {
  height: 360px;
  background: linear-gradient(135deg, var(--c-blue-deep), var(--c-blue-mid));
  position: relative;
  overflow: hidden;
}
.blog-featured-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15), transparent 60%);
}
.blog-featured-content {
  padding: 40px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-blue-soft);
  color: var(--c-blue);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.blog-featured-content h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-featured-content p {
  font-size: 15px; color: var(--c-text-mid);
  line-height: 1.6; margin-bottom: 20px;
}
.blog-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--c-text-soft);
}
.blog-meta svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--c-blue-ultra), var(--c-blue-soft));
  position: relative;
  overflow: hidden;
}
.blog-card-img.gold {
  background: linear-gradient(135deg, var(--c-gold-soft), #f0e0b5);
}
.blog-card-img.deep {
  background: linear-gradient(135deg, var(--c-blue-deep), var(--c-blue));
}
.blog-card-body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.blog-card-body h3 {
  font-size: 17px; font-weight: 600;
  margin-bottom: 10px; line-height: 1.35;
  color: var(--c-text);
}
.blog-card-body p {
  font-size: 14px; color: var(--c-text-soft);
  line-height: 1.55; margin-bottom: 16px;
  flex: 1;
}

/* ===== ARTIGO INTERNO ===== */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-wrap h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--c-text);
}
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 14px; color: var(--c-text-soft);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border-soft);
}
.article-cover {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--c-blue-deep), var(--c-blue));
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
}
.article-content { font-size: 17px; line-height: 1.8; color: var(--c-text-mid); }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 600;
  margin: 40px 0 16px;
  color: var(--c-text);
}
.article-content h3 {
  font-size: 22px; font-weight: 600;
  margin: 32px 0 12px;
  color: var(--c-text);
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol {
  margin: 0 0 20px 24px;
}
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--c-blue-ultra);
  border-left: 4px solid var(--c-blue-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 18px;
  color: var(--c-blue-deep);
}
.article-content strong { color: var(--c-text); }
.article-cta {
  margin-top: 60px;
  padding: 32px;
  background: var(--c-bg);
  border-radius: var(--radius-xl);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--c-blue-deep);
}
.article-cta p {
  font-size: 15px; color: var(--c-text-mid);
  margin-bottom: 20px;
}

/* ===== NEWSLETTER FOOTER ===== */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-newsletter h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 6px;
}
.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer-newsletter-form {
  display: flex; gap: 8px;
}
.footer-newsletter-form input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--c-white);
  font-size: 14px;
}
.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== CALCULADORAS PAGE — grid de calcs ===== */
.calc-mega-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--c-white);
  padding: 8px;
  border-radius: var(--radius);
  max-width: 980px;
  margin: 0 auto 40px;
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow);
}
@media (min-width: 1100px) {
  .calc-mega-tabs { grid-template-columns: repeat(8, 1fr); max-width: 1180px; }
  .calc-mega-tabs .calc-tab { padding: 12px 8px; font-size: 12px; }
}
.calc-mega-tabs .calc-tab { padding: 14px 12px; font-size: 13px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--c-blue-light);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--c-blue-mid);
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-item summary:hover { background: var(--c-bg); color: var(--c-blue-mid); }
.faq-content {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text-mid);
}

/* ===== LEGAL PAGES ===== */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--ticker-h) + 60px) 24px 80px;
}
.legal-wrap h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.legal-wrap .updated {
  color: var(--c-text-soft);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border-soft);
}
.legal-wrap h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--c-text);
  margin: 32px 0 12px;
  font-weight: 600;
}
.legal-wrap p, .legal-wrap li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-mid);
  margin-bottom: 14px;
}
.legal-wrap ul, .legal-wrap ol {
  margin: 0 0 20px 24px;
}

/* ===== 404 ===== */
.error-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.error-content { max-width: 480px; }
.error-code {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 700;
  color: var(--c-blue-mid);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--c-blue-mid), var(--c-blue-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-wrap h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--c-text);
  margin-bottom: 12px;
}
.error-wrap p {
  font-size: 16px;
  color: var(--c-text-soft);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ===== OPORTUNIDADES ===== */
.oportunidades-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-border-soft);
}
.oportunidades-filters select, .oportunidades-filters input {
  flex: 1;
  min-width: 160px;
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--c-white);
}
.oportunidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.oportunidade-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.oportunidade-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.oportunidade-img {
  height: 180px;
  background: linear-gradient(135deg, var(--c-blue-deep), var(--c-blue-mid));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.oportunidade-img svg { width: 56px; height: 56px; }
.oportunidade-desconto {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow);
}
.oportunidade-body { padding: 22px; }
.oportunidade-tipo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-blue-mid);
  margin-bottom: 6px;
}
.oportunidade-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.oportunidade-local {
  font-size: 13px;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}
.oportunidade-local svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }
.oportunidade-valores {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 14px;
  border-top: 1px solid var(--c-border-soft);
  margin-bottom: 14px;
}
.oportunidade-valor-mercado {
  font-size: 12px;
  color: var(--c-text-soft);
  text-decoration: line-through;
}
.oportunidade-valor-leilao {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-blue-deep);
  letter-spacing: -0.01em;
}
.oportunidade-data {
  font-size: 12px;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}
.oportunidade-data strong { color: var(--c-red); }

/* ============================================
   SIMULADOR DE SONHOS — EVOLUÇÕES (Briefing)
============================================ */

/* Inputs financeiros (máscara R$) — visual premium */
.form-group .currency-input,
.form-group input[inputmode="numeric"] {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.form-group .currency-prefix {
  position: relative;
}
.form-group .currency-prefix::before {
  content: 'R$';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-soft);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.form-group .currency-prefix input {
  padding-left: 44px;
}

/* Botões rápidos de preenchimento */
.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.quick-btn {
  padding: 6px 12px;
  background: var(--c-blue-ultra);
  border: 1px solid var(--c-blue-soft);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-blue-mid);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.quick-btn:hover {
  background: var(--c-blue-mid);
  color: var(--c-white);
  border-color: var(--c-blue-mid);
  transform: translateY(-1px);
}
.quick-btn.active {
  background: var(--c-blue-mid);
  color: var(--c-white);
  border-color: var(--c-blue-mid);
}

/* Micro feedback de preenchimento */
.field-feedback {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-green);
  animation: fadeSlideIn 0.4s ease-out;
}
.field-feedback.show { display: inline-flex; }
.field-feedback svg {
  width: 14px; height: 14px;
  background: var(--c-green);
  color: var(--c-white);
  border-radius: 50%;
  padding: 2px;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Banner abaixo do simulador */
.sim-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--c-blue-deep), var(--c-blue-mid));
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.sim-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 90, 0.18), transparent 60%);
  pointer-events: none;
}
.sim-banner-content {
  position: relative;
  z-index: 1;
}
.sim-banner-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--c-white);
}
.sim-banner-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  max-width: 540px;
  line-height: 1.6;
}
.sim-banner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(201, 162, 90, 0.15);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sim-banner-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-banner-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================
   LOADING OVERLAY PREMIUM
============================================ */
.sim-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 91, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease-out;
}
.sim-loading-overlay.active { display: flex; }
.sim-loading-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  color: var(--c-white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.4s ease-out;
}
.sim-loading-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--c-white);
}
.sim-loading-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.sim-progress-wrap {
  position: relative;
  height: 32px;
  margin-bottom: 24px;
}
.sim-progress-track {
  position: absolute;
  inset: 12px 0 12px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}
.sim-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold), #e6c47e);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(201, 162, 90, 0.6);
}
.sim-progress-emoji {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28px;
  line-height: 32px;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.sim-progress-pct {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.sim-loading-step {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  min-height: 24px;
  font-weight: 500;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESULTADO DO SIMULADOR — 8 BLOCOS
============================================ */
.sim-result-wrap {
  display: none;
  animation: fadeUp 0.6s ease-out;
}
.sim-result-wrap.show { display: block; }
.sim-result-hero {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border-soft);
}
.sim-result-trophy {
  font-size: 56px;
  margin-bottom: 12px;
  animation: bounceIn 0.6s ease-out;
}
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
.sim-result-hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--c-blue-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}
.sim-result-hero p {
  font-size: 15px;
  color: var(--c-text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.sim-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.sim-block {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.sim-block:hover {
  box-shadow: var(--shadow);
  border-color: var(--c-blue-light);
}
.sim-block.full { grid-column: 1 / -1; }
.sim-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sim-block-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-blue-ultra);
  color: var(--c-blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.sim-block-icon.gold {
  background: var(--c-gold-soft);
  color: var(--c-gold);
}
.sim-block-icon.green {
  background: var(--c-green-soft);
  color: #047857;
}
.sim-block-icon.red {
  background: #fee2e2;
  color: var(--c-red);
}
.sim-block-head h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin: 0;
}
.sim-block-head h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--c-blue-deep);
  margin: 2px 0 0;
  font-weight: 600;
  line-height: 1.2;
}
.sim-block p, .sim-block li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-mid);
}
.sim-block p { margin: 0 0 10px; }
.sim-block ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.sim-block ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
.sim-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-blue-mid);
  font-weight: 700;
}
.sim-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border-soft);
  font-size: 14px;
}
.sim-data-row:last-child { border: none; }
.sim-data-row .label { color: var(--c-text-soft); }
.sim-data-row .value {
  font-weight: 700;
  color: var(--c-blue-deep);
  font-variant-numeric: tabular-nums;
}

/* Score visual */
.sim-score {
  background: linear-gradient(135deg, var(--c-blue-deep), var(--c-blue-mid));
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.sim-score::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 90, 0.15), transparent 60%);
  pointer-events: none;
}
.sim-score-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.sim-score-value {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.sim-score-level {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.sim-score-bar {
  position: relative;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
}
.sim-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-gold), #e6c47e);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(201, 162, 90, 0.6);
}

/* CTA final do resultado */
.sim-cta-final {
  background: linear-gradient(135deg, var(--c-bg), var(--c-blue-ultra));
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  margin-top: 28px;
}
.sim-cta-final h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--c-blue-deep);
  margin-bottom: 10px;
}
.sim-cta-final p {
  font-size: 14px;
  color: var(--c-text-mid);
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.sim-cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   AJUSTES DE ESPAÇAMENTO SIMÉTRICO
============================================ */
.section { padding-block: 96px; }
.section + .section { padding-top: 96px; }
.section .container { padding-inline: 24px; }
.section-header { margin-bottom: 56px; }

/* ============================================
   RESPONSIVO COMPLETO — Mobile + Tablet
============================================ */
@media (max-width: 1024px) {
  .mini-cards { grid-template-columns: repeat(2, 1fr); }
  .materiais-grid { grid-template-columns: repeat(2, 1fr); }
  .leiloes-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-newsletter { grid-template-columns: 1fr; gap: 16px; }
  .calc-mega-tabs { grid-template-columns: repeat(2, 1fr); }
  .oportunidades-grid { grid-template-columns: repeat(2, 1fr); }
  .sim-banner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .sim-banner-visual { order: -1; }
  .sim-banner-icon { width: 96px; height: 96px; font-size: 44px; }
  .sim-blocks { grid-template-columns: 1fr; }
  .section { padding-block: 72px; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .mini-cards { grid-template-columns: 1fr; gap: 16px; }
  .materiais-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .oportunidades-grid { grid-template-columns: 1fr; }
  .calc-mega-tabs { grid-template-columns: 1fr; }
  .mini-card { padding: 22px 20px; }
  .mini-card h3 { font-size: 17px; }
  .leilao-block { padding: 24px; }
  .modal { padding: 24px; }
  .blog-featured-content { padding: 24px; }
  .article-wrap { padding: 40px 16px 60px; }
  .article-cover { height: 220px; }
  .error-code { font-size: 80px; }
  .error-wrap h1 { font-size: 26px; }
  .faq-item summary { padding: 16px 18px; font-size: 14px; }
  .faq-content { padding: 0 18px 18px; }
  .legal-wrap { padding: calc(var(--header-h) + var(--ticker-h) + 32px) 18px 60px; }

  /* Simulador mobile */
  .sim-banner { padding: 28px 20px; }
  .sim-banner-content h3 { font-size: 20px; }
  .sim-banner-icon { width: 80px; height: 80px; font-size: 38px; }
  .sim-loading-card { padding: 32px 24px; }
  .sim-loading-title { font-size: 18px; }
  .sim-result-hero h2 { font-size: 22px; }
  .sim-score-value { font-size: 38px; }
  .sim-block { padding: 22px; }
  .sim-cta-final { padding: 28px 20px; }
  .section { padding-block: 56px; }
  .section-header { margin-bottom: 32px; }
  .quick-buttons { gap: 5px; }
  .quick-btn { padding: 5px 10px; font-size: 11px; }
}

@media (max-width: 480px) {
  .mini-card { padding: 20px 18px; }
  .mini-card-icon { width: 40px; height: 40px; }
  .oportunidade-img { height: 140px; }
  .oportunidade-body { padding: 18px; }
  .sim-score-value { font-size: 32px; }
  .sim-result-trophy { font-size: 44px; }
  .sim-cta-actions { flex-direction: column; }
  .sim-cta-actions .btn { width: 100%; }
}

/* ============================================
   HEADER + HERO PREMIUM
============================================ */
.ticker-wrapper {
  height: 34px;
  background: linear-gradient(90deg, #0f3c86, #164ea6 52%, #0f3c86);
}

.ticker-item { font-size: 12px; letter-spacing: 0.02em; }

.header {
  height: 88px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header.scrolled {
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.header-inner {
  gap: 20px;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo {
  height: 48px;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue-mid);
}

.brand-lockup strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--c-blue-deep);
  max-width: 280px;
}

.search-wrapper {
  display: none;
}

.nav-desktop {
  gap: 22px;
  margin-left: auto;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1e3a5f;
}

.nav-desktop a::after {
  bottom: -10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.header-oab {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9));
}

.header-oab span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.header-oab strong {
  font-size: 13px;
  color: var(--c-blue-deep);
}

.btn-header {
  margin-left: 0;
  min-height: 44px;
  padding-inline: 18px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.nav-mobile {
  top: calc(var(--ticker-h) + var(--header-h));
  padding: 22px 18px 24px;
  gap: 18px;
  background: rgba(255, 255, 255, 0.98);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-section {
  display: grid;
  gap: 4px;
}

.nav-mobile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  padding: 0 16px 8px;
}

.nav-mobile .btn {
  margin-top: 0;
}

.hero {
  padding: calc(var(--header-h) + var(--ticker-h) + 56px) 0 88px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 52%, #f8fbff 100%);
}

.hero-bg-gradient {
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at 20% 28%, rgba(125, 211, 252, 0.14), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(37, 99, 235, 0.08), transparent 24%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  pointer-events: none;
}

.hero-inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.hero-title {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  color: #102544;
}

.text-gradient {
  background: linear-gradient(135deg, #2463eb, #0b2a5b 68%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.75;
  color: #526277;
}

.hero-ctas {
  margin-bottom: 34px;
}

.hero-trust {
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.trust-item strong {
  font-size: 17px;
}

.hero-visual {
  height: 620px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.orbit-one {
  width: 560px;
  height: 560px;
  right: 8px;
  top: 20px;
}

.orbit-two {
  width: 420px;
  height: 420px;
  right: 72px;
  top: 90px;
}

.hero-portrait-shell {
  position: relative;
  width: min(100%, 560px);
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(219, 234, 254, 0.68));
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.hero-portrait-shell::before {
  content: '';
  position: absolute;
  inset: -22px 48px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(191, 219, 254, 0.08));
  filter: blur(14px);
  z-index: -1;
}

.hero-portrait-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #eff6ff);
}

.hero-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-data-card {
  position: absolute;
  right: -28px;
  bottom: 26px;
  width: min(280px, 52%);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.hero-data-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-mid);
}

.hero-data-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.35;
  color: #102544;
}

.hero-data-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-soft);
}

.hero-float-card {
  position: absolute;
  width: min(230px, 42%);
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.card-float-1 {
  top: 54px;
  left: -8px;
}

.card-float-2 {
  bottom: 74px;
  left: -26px;
}

.float-chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--c-blue-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float-card .float-value {
  font-size: 16px;
  line-height: 1.35;
}

.hero-float-card .float-label {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .brand-lockup strong {
    max-width: 220px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-oab {
    padding-inline: 12px;
  }

  .hero-visual {
    height: 560px;
  }

  .hero-data-card {
    right: 10px;
    bottom: 12px;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 82px;
  }

  .header-actions {
    display: none;
  }

  .nav-desktop {
    display: none;
  }

  .brand-lockup strong {
    max-width: 190px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-visual {
    height: auto;
    width: 100%;
    padding-top: 14px;
  }

  .hero-portrait-shell {
    width: min(100%, 640px);
  }

  .orbit-one {
    width: 440px;
    height: 440px;
    left: 50%;
    right: auto;
    top: 48px;
    transform: translateX(-50%);
  }

  .orbit-two {
    width: 320px;
    height: 320px;
    left: 50%;
    right: auto;
    top: 110px;
    transform: translateX(-50%);
  }

  .card-float-1 {
    left: 12px;
  }

  .card-float-2 {
    left: 12px;
    bottom: 22px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 82px;
    --ticker-h: 34px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .logo-link {
    gap: 10px;
  }

  .logo {
    height: 40px;
  }

  .brand-lockup strong {
    max-width: 150px;
    font-size: 12px;
  }

  .brand-kicker {
    font-size: 10px;
  }

  .menu-toggle {
    margin-left: auto;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.06);
  }

  .menu-toggle span {
    width: 18px;
    background: var(--c-blue-deep);
  }

  .hero {
    padding: calc(var(--header-h) + var(--ticker-h) + 26px) 0 60px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-divider {
    display: none;
  }

  .hero-portrait-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .hero-portrait-card {
    border-radius: 20px;
  }

  .hero-data-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .hero-float-card {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .orbit-one,
  .orbit-two,
  .hero-grid-lines {
    display: none;
  }

  .nav-mobile {
    max-height: calc(100svh - var(--ticker-h) - var(--header-h));
    overflow: auto;
  }
}

@media (max-width: 480px) {
  .brand-lockup {
    display: none;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-data-card strong {
    font-size: 17px;
  }
}

/* ============================================
   HOME REFINO COMPLETO
============================================ */
.quick-links-section,
.simulator-section,
.diagnostic-section,
.calculators-section,
.ronair-section,
.faq-section,
.contact-section {
  position: relative;
}

.quick-links-section::before,
.simulator-section::before,
.diagnostic-section::before,
.calculators-section::before,
.ronair-section::before,
.faq-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quick-links-section::before {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0) 58%);
}

.simulator-section::before,
.diagnostic-section::before,
.faq-section::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.06), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(56, 189, 248, 0.05), transparent 22%);
}

.calculators-section::before,
.contact-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(219, 234, 254, 0.38) 100%);
}

.section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 780px;
}

.section-tag {
  padding: 7px 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.section-title {
  color: #102544;
}

.section-desc {
  max-width: 660px;
  margin-inline: auto;
  line-height: 1.75;
}

.mini-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mini-card {
  min-height: 250px;
  padding: 26px 22px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  border: 1px solid rgba(191, 219, 254, 0.85);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.06);
}

.mini-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.72), rgba(56, 189, 248, 0.3));
  opacity: 0;
  transition: var(--transition);
}

.mini-card:hover::before {
  opacity: 1;
}

.mini-card:hover {
  transform: translateY(-8px);
}

.mini-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.mini-card h3 {
  font-size: 19px;
  line-height: 1.25;
}

.mini-card p {
  font-size: 14px;
  line-height: 1.7;
}

.simulador-card,
.diagnostico-card,
.calc-panel {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(191, 219, 254, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.simulador-card::before,
.diagnostico-card::before,
.calc-panel::before,
.cta-card::before,
.ronair-creds::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(191, 219, 254, 0.8), rgba(255, 255, 255, 0.95));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-group label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  height: 52px;
  border-radius: 16px;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.form-group input:focus,
.form-group select:focus {
  box-shadow: 0 0 0 5px rgba(191, 219, 254, 0.65);
}

.sim-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(191, 219, 254, 0.55);
  background:
    linear-gradient(135deg, #123d83 0%, #0f2f63 46%, #f8fbff 46%, #ffffff 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.sim-banner::before {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.18);
  filter: blur(16px);
}

.sim-banner-content {
  position: relative;
  z-index: 1;
}

.sim-banner-content h3 {
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: 16px;
}

.sim-banner-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.sim-banner-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-banner-icon {
  width: 144px;
  height: 144px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.diagnostico-card {
  max-width: 900px;
}

.diag-progress-bar {
  height: 8px;
  background: rgba(191, 219, 254, 0.46);
}

.diag-option {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.9);
}

.diag-option:hover,
.diag-option.selected {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.calc-tabs {
  max-width: 780px;
  padding: 10px;
  border-radius: 26px;
  border: 1px solid rgba(191, 219, 254, 0.75);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.calc-tab {
  border-radius: 18px;
  min-height: 52px;
}

.calc-tab.active {
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.22);
}

.calc-result {
  border-radius: 26px;
  border: 1px solid rgba(191, 219, 254, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96));
}

.calc-result-big {
  padding-bottom: 28px;
}

.calc-result-value {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.ronair-grid {
  gap: 52px;
}

.ronair-photo-wrap {
  border-radius: 30px;
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.14);
}

.ronair-content .section-title,
.ronair-content .section-tag {
  text-align: left;
}

.ronair-lead {
  font-size: 20px;
  color: #102544;
}

.ronair-pillars {
  gap: 14px;
}

.pillar {
  min-height: 70px;
  border-radius: 18px;
  border-color: rgba(191, 219, 254, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.05);
}

.ronair-creds {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.72), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.ronair-quote {
  border-left-width: 3px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(239, 246, 255, 0.96));
  border: 1px solid rgba(191, 219, 254, 0.7);
  font-style: normal;
}

.section-dark.media-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28%),
    linear-gradient(160deg, #08214a, #0b2a5b 52%, #091b3f);
}

.tv-grid {
  gap: 22px;
}

.tv-featured,
.tv-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.tv-featured {
  border-radius: 30px;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.22);
}

.tv-thumb {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tv-thumb img {
  opacity: 0.9;
}

.tv-info {
  padding: 36px;
}

.tv-info h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.tv-card {
  border-radius: 20px;
}

.tv-card:hover {
  transform: translateX(8px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.cta-card {
  border-radius: 34px;
  padding: 72px 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.1);
}

.cta-card::before {
  top: auto;
  right: -80px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 68%);
}

.cta-content h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(191, 219, 254, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.faq-item summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #102544;
}

.faq-content {
  padding: 0 24px 24px;
  line-height: 1.75;
  color: var(--c-text-mid);
}

.footer-newsletter {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(13, 37, 79, 0.82), rgba(14, 53, 108, 0.88));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.footer-newsletter-form input {
  border-radius: 16px;
}

.form-feedback {
  width: 100%;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.form-feedback.success {
  color: #dbeafe;
}

.form-feedback.error {
  color: #fecaca;
}

@media (max-width: 1024px) {
  .mini-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sim-banner {
    background: linear-gradient(180deg, #123d83 0%, #0f2f63 56%, #ffffff 56%, #f8fbff 100%);
  }

  .ronair-grid {
    gap: 36px;
  }

  .cta-content h2 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: auto;
  }

  .simulador-card,
  .diagnostico-card,
  .calc-panel,
  .cta-card {
    border-radius: 24px;
  }

  .sim-banner {
    border-radius: 24px;
  }

  .sim-banner-content h3 {
    font-size: 1.8rem;
  }

  .tv-featured {
    border-radius: 24px;
  }

  .tv-info {
    padding: 26px 22px;
  }

  .hero-ctas .btn,
  .resultado-actions .btn,
  .calc-result-actions .btn,
  .footer-newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-item summary {
    min-height: auto;
    padding: 18px 18px;
  }

  .faq-content {
    padding: 0 18px 18px;
  }
}

/* ============================================
   CALCULADORA DE SONHOS — FLUXO GUIADO
============================================ */
.simulator-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.simulator-intro {
  position: sticky;
  top: 140px;
  padding: 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.88), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(191, 219, 254, 0.75);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.simulator-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--c-blue-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simulator-intro h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  color: #102544;
  margin-bottom: 12px;
}

.simulator-intro p {
  color: var(--c-text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.simulator-highlights {
  display: grid;
  gap: 10px;
}

.simulator-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.7);
}

.simulator-highlight strong {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-blue-mid);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.simulator-highlight span {
  font-size: 14px;
  color: #102544;
  font-weight: 600;
}

.simulator-wizard {
  display: grid;
  gap: 22px;
}

.sim-wizard-progress {
  display: grid;
  gap: 12px;
}

.sim-wizard-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.sim-wizard-step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.sim-wizard-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
}

.sim-wizard-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.6);
  overflow: hidden;
}

.sim-wizard-bar {
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c-blue-mid), #60a5fa);
  transition: width 0.3s ease;
}

.sim-step {
  display: none;
}

.sim-step.active {
  display: grid;
}

.sim-wizard-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sim-submit-btn {
  display: none;
}

.sim-submit-btn.visible {
  display: inline-flex;
}

.sim-result-wrap {
  margin-top: 34px;
}

.sim-result-hero.compact {
  text-align: left;
  margin-bottom: 26px;
  padding-bottom: 0;
  border-bottom: none;
}

.sim-result-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-positive {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.status-warning {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.status-critical {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.sim-result-hero.compact h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #102544;
  line-height: 1.15;
  margin-bottom: 10px;
}

.sim-result-hero.compact p {
  color: var(--c-text-mid);
  line-height: 1.75;
  max-width: 720px;
}

.sim-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.sim-result-card {
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(191, 219, 254, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.sim-result-card-main {
  grid-column: span 2;
  background: linear-gradient(135deg, #0f3c86, #1d4ed8);
  color: white;
}

.sim-result-card-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.sim-result-card-main .sim-result-card-label,
.sim-result-card-main p,
.sim-result-card-main strong {
  color: white;
}

.sim-result-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #102544;
  margin-bottom: 10px;
}

.sim-result-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-mid);
}

.sim-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.sim-scenario-card {
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(191, 219, 254, 0.72);
  background: rgba(255, 255, 255, 0.94);
}

.sim-scenario-card.featured {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.9), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.sim-scenario-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--c-blue-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sim-scenario-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  color: #102544;
  margin-bottom: 10px;
}

.sim-scenario-card p {
  color: var(--c-text-mid);
  line-height: 1.7;
  font-size: 14px;
}

.sim-plan-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.sim-plan-strip > div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(239, 246, 255, 0.8);
  border: 1px solid rgba(191, 219, 254, 0.75);
}

.sim-plan-strip-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue-mid);
}

.sim-plan-strip p {
  color: var(--c-text-mid);
  line-height: 1.75;
}

.sim-result-actions {
  justify-content: flex-start;
}
.sim-result-support {
  margin-top: 14px;
  color: var(--c-text-soft);
  font-size: 13px;
  line-height: 1.7;
}

/* ============================================
   DEMAIS CALCULADORAS — RESULTADO MAIS CLARO
============================================ */
.calc-result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.calc-result-topline p {
  flex: 1;
  min-width: 220px;
  color: var(--c-text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.calc-result-status {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--c-blue-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.calc-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.calc-kpi-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(239, 246, 255, 0.78);
  border: 1px solid rgba(191, 219, 254, 0.7);
}

.calc-kpi-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--c-text-soft);
}

.calc-kpi-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  color: #102544;
}
.calc-result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.calc-result-footnote {
  margin-top: 12px;
  color: var(--c-text-soft);
  font-size: 12px;
  line-height: 1.7;
}
.sim-banner-visual {
  display: grid;
  gap: 16px;
}
.sim-banner-art {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 36px rgba(7, 19, 45, 0.24);
}
.sim-banner-art img {
  display: block;
  width: 100%;
  height: auto;
}
.sim-banner-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sim-banner-metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.sim-banner-metric strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 16px;
}
.sim-banner-metric span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .simulator-shell {
    grid-template-columns: 1fr;
  }

  .simulator-intro {
    position: relative;
    top: 0;
  }

  .sim-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sim-result-card-main {
    grid-column: span 2;
  }

  .sim-scenarios,
  .sim-plan-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero-points {
    display: grid;
  }

  .sim-banner-metrics,
  .calc-result-actions {
    grid-template-columns: 1fr;
  }

  .simulator-intro,
  .sim-result-card,
  .sim-scenario-card,
  .sim-plan-strip > div {
    border-radius: 20px;
  }

  .sim-wizard-progress-top,
  .sim-wizard-actions {
    align-items: stretch;
  }

  .sim-wizard-actions .btn {
    width: 100%;
  }

  .sim-result-grid {
    grid-template-columns: 1fr;
  }

  .sim-result-card-main {
    grid-column: span 1;
  }

  .calc-kpi-row {
    grid-template-columns: 1fr;
  }
}
