@import url('scrollbar-lulean.css');

:root {
  --bg: #050505;
  --bg-card: #0f0f0f;
  --bg-elevated: #141414;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(230,0,0,0.5);
  --red: #e60000;
  --red-dark: #b80000;
  --gold: #ffd700;
  --gold-muted: #c9a800;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --text-soft: #cccccc;
  --green: #25D366;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--red);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-elevated); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em { font-style: normal; color: var(--gold); }

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 40px;
}

.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

.content-prose {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 800px;
}

.content-prose p { margin-bottom: 16px; }
.content-prose strong { color: var(--text-soft); }

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 52px; width: auto; }

nav.desktop-nav { display: flex; align-items: center; gap: 8px; }

nav.desktop-nav a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

nav.desktop-nav a:hover,
nav.desktop-nav a:focus-visible,
nav.desktop-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(230,0,0,0.35);
  font-family: inherit;
}

.btn:hover, .btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230,0,0,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  box-shadow: none;
  color: var(--text);
}

.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--red);
  background: rgba(230,0,0,0.08);
  box-shadow: none;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-whatsapp {
  background: var(--green);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: #1ebe57;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 14px 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.06); }

/* Page hero */
.page-hero {
  padding: 140px 0 60px;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.3) 0%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(230,0,0,0.12) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-hero .breadcrumb a { color: var(--text-soft); }
.page-hero .breadcrumb a:hover { color: var(--red); }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: normal; color: var(--gold); }

.page-hero .hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 28px;
}

.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon { font-size: 2rem; margin-bottom: 16px; }

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

.card-soon {
  display: block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  text-align: right;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(230,0,0,0.08), rgba(255,215,0,0.05));
  border: 1px solid rgba(230,0,0,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.highlight-box h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.highlight-box ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight-box li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.highlight-box li:last-child { border-bottom: none; }
.highlight-box li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* CTA */
.cta-banner {
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: white;
  color: var(--red);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.cta-banner .btn:hover {
  background: var(--gold);
  color: #000;
}

.cta-banner .btn-whatsapp {
  background: var(--green);
  color: white;
}

.cta-banner .btn-whatsapp:hover {
  background: #1ebe57;
  color: white;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.04); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* Related links */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.related-link {
  display: block;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.related-link:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.related-link strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.related-link span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Grid de localidades (hub Brasil) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.location-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.location-card-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

.location-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.location-card span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Dados da empresa + confiança */
.company-trust { padding-bottom: 60px; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.trust-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.company-card {
  background: linear-gradient(135deg, rgba(230,0,0,0.08), rgba(255,215,0,0.05));
  border: 1px solid rgba(230,0,0,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.company-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: var(--text-muted); flex-shrink: 0; }
.info-row span:last-child { font-weight: 600; text-align: right; }
.info-row a { color: var(--text-soft); }
.info-row a:hover { color: var(--red); }

.company-card-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-stat { padding: 16px 12px; }
  .trust-stat strong { font-size: 1.25rem; }
  .info-row { flex-direction: column; gap: 4px; }
  .info-row span:last-child { text-align: left; }
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-inner img { height: 48px; margin: 0 auto; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: white;
  transition: var(--transition);
}

.footer-social a:hover { transform: scale(1.08); }
.footer-social svg { width: 22px; height: 22px; fill: currentColor; }

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Float + modals */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.orcamento-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 24px rgba(230,0,0,0.35);
  cursor: pointer;
  transition: var(--transition);
}

.orcamento-float:hover { transform: scale(1.05); }

.whats-float {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 32px; height: 32px; fill: white; }

.google-rating-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.google-rating-float:hover { border-color: rgba(255,215,0,0.35); transform: translateY(-2px); }
.google-rating-float .google-rating-g { width: 26px; height: 26px; flex-shrink: 0; }
.google-rating-float-body { display: flex; flex-direction: column; gap: 1px; line-height: 1.15; }
.google-rating-float .google-rating-top { display: flex; align-items: center; gap: 5px; }
.google-rating-float .google-rating-score { font-size: 1.1rem; font-weight: 800; }
.google-rating-float .google-rating-stars { color: var(--gold); font-size: 0.68rem; }
.google-rating-float .google-rating-label { font-size: 0.62rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.orcamento-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.orcamento-modal[hidden] { display: none !important; }

.orcamento-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
}

.orcamento-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 860px);
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.orcamento-modal-dialog h3 { font-size: 1.25rem; margin-bottom: 12px; padding-right: 36px; }

.orcamento-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.orcamento-modal-close:hover { color: var(--text); border-color: var(--red); }
body.modal-open { overflow: hidden; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-soft); }
.form-group label .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-group textarea { min-height: 80px; resize: vertical; }
.form-group select option { background: var(--bg-card); }
.modal-switch { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); text-align: center; }
.modal-switch a { color: var(--gold); font-weight: 600; }
.form-label-optional { font-weight: 500; color: var(--text-muted); font-size: 0.8em; }
.privacy-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.form-context {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(230,0,0,0.14), rgba(255,215,0,0.08));
  border: 1px solid rgba(230,0,0,0.4);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.form-context[hidden] { display: none !important; }
.form-context-icon { font-size: 1.25rem; flex-shrink: 0; }
.form-context-body { flex: 1; min-width: 0; }
.form-context-title { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 6px; }
.form-context-categoria { display: inline-block; margin-bottom: 6px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--gold); background: rgba(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.28); padding: 3px 9px; border-radius: 50px; }
.form-context-categoria:empty, .form-context-categoria[hidden] { display: none; }
.form-context-value { display: block; font-size: 1rem; font-weight: 800; line-height: 1.4; }
.form-context-clear { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-muted); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; flex-shrink: 0; font-size: 1.1rem; }
.form-hint { display: block; margin-top: 6px; font-size: 0.78rem; color: var(--text-muted); }
.form-hint[hidden] { display: none !important; }

.form-hint[hidden] { display: none !important; }

/* ── Comparativo Alugar vs Comprar ── */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.verdict-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
}

.verdict-card--rent::before {
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.verdict-card--rent {
  border-color: rgba(230, 0, 0, 0.35);
  box-shadow: 0 8px 40px rgba(230, 0, 0, 0.12);
}

.verdict-card--buy::before { background: rgba(255, 255, 255, 0.15); }

.verdict-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.verdict-badge--rent {
  background: rgba(230, 0, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(230, 0, 0, 0.35);
}

.verdict-badge--buy {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.verdict-badge--pick {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.verdict-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.verdict-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.verdict-card ul {
  list-style: none;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.verdict-card li {
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.verdict-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
}

.price-hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid rgba(230, 0, 0, 0.3);
  border-radius: 12px;
}

.price-hero-stat strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.price-hero-stat span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Calculadora */
.calc-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.calc-panel h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.calc-panel .calc-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.calc-field {
  margin-bottom: 22px;
}

.calc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 12px;
}

/* Chips / botões do simulador */
.calc-chips {
  display: grid;
  gap: 12px;
}

.calc-chips--2x2 { grid-template-columns: repeat(2, 1fr); }

.calc-chips--segment {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(230, 0, 0, 0.06);
  border: 1px solid rgba(230, 0, 0, 0.22);
  border-radius: 999px;
}

.calc-chips--segment .calc-chip {
  flex: 1;
  min-height: 52px;
  border-radius: 999px;
}

.calc-chip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 14px 20px;
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(230, 0, 0, 0.22);
  border-radius: 20px;
  color: var(--text-soft);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  transition:
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  text-align: center;
}

.calc-chip small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.95;
}

.calc-chip:hover {
  border-color: rgba(230, 0, 0, 0.65);
  color: #fff;
  background: rgba(230, 0, 0, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 0, 0, 0.22);
}

.calc-chip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.calc-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ff1a1a 0%, var(--red) 45%, var(--red-dark) 100%);
  box-shadow:
    0 8px 32px rgba(230, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.calc-chip.is-active small {
  color: rgba(255, 255, 255, 0.9);
}

.calc-chip:active {
  transform: translateY(0) scale(0.97);
}

/* Legenda do cálculo */
.calc-legend {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.calc-legend h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--gold);
}

.calc-legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-legend-block h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.calc-legend-block--rent h5 { color: var(--red); }
.calc-legend-block--buy h5 { color: var(--text-muted); }
.calc-legend-block--no h5 { color: var(--text-muted); }

.calc-legend-block ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.calc-legend-block li {
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.calc-legend-block--rent li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-size: 0.75rem; }
.calc-legend-block--buy li::before { content: '•'; position: absolute; left: 0; color: var(--text-muted); }
.calc-legend-block--no li::before { content: '·'; position: absolute; left: 0; color: var(--text-muted); }

.calc-legend-highlight {
  margin-top: 14px;
}

.calc-legend-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-legend-compare-item {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.calc-legend-compare-item p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 10px 0 0;
}

.calc-legend-compare-item--risk {
  border-color: rgba(251, 146, 60, 0.35);
  background: linear-gradient(160deg, rgba(251, 146, 60, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.calc-legend-compare-item--win {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.14) 0%, rgba(0, 0, 0, 0.12) 100%);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.12);
}

.calc-legend-compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.calc-legend-compare-tag--risk {
  color: #fdba74;
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.35);
}

.calc-lulean-seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 55%, #4ade80 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow:
    0 4px 18px rgba(34, 197, 94, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.calc-lulean-seal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.calc-legend-compare-item--win p {
  color: #dcfce7;
}

.calc-legend-compare-item--win p strong {
  color: #fff;
}

.calc-legend-highlight p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}

.calc-legend-highlight p + p {
  margin-top: 8px;
}

.calc-legend-highlight strong {
  color: var(--text);
}

.calc-legend-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Resultado */
.calc-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.calc-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.calc-summary-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.calc-summary-col .calc-winner,
.calc-summary-col .calc-period-badge {
  align-self: flex-start;
}

.calc-period-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 50px;
}

.calc-winner {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 6px 12px;
  border-radius: 50px;
}

.calc-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.calc-summary-card {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.calc-summary-card--rent {
  border-color: rgba(230, 0, 0, 0.35);
  background: linear-gradient(160deg, rgba(230, 0, 0, 0.1) 0%, var(--bg) 70%);
}

.calc-summary-card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.calc-summary-card--rent h4 { color: var(--gold); }
.calc-summary-card--buy h4 { color: var(--text-muted); }

.calc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-price-row:last-of-type { border-bottom: none; margin-bottom: 10px; }

.calc-price-row span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-price-row strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.calc-price-row--highlight strong {
  font-size: 1.15rem;
  color: var(--gold);
}

.calc-price-row--sub strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
}

.calc-breakdown {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.calc-breakdown summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-soft);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-breakdown summary::-webkit-details-marker { display: none; }

.calc-breakdown summary::before {
  content: '▸';
  color: var(--red);
  transition: transform 0.2s ease;
}

.calc-breakdown[open] summary::before { transform: rotate(90deg); }

.calc-breakdown ul {
  list-style: none;
  margin-top: 10px;
  padding-left: 4px;
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
}

.calc-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 4px; }

.calc-bar-row { display: grid; grid-template-columns: 72px 1fr; gap: 10px; align-items: center; }

.calc-bar-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2px;
}

.calc-bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
}

.calc-bar-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.calc-bar-track {
  grid-column: 1 / -1;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.calc-bar-fill {
  height: 100%;
  border-radius: 20px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.calc-bar-fill--rent {
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.calc-bar-fill--buy {
  background: rgba(255, 255, 255, 0.22);
}

.calc-savings {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.calc-savings strong { color: #4ade80; }

.calc-disclaimer {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.calc-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-cta .btn {
  width: 100%;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* legado — manter compat */
.calc-options { display: grid; gap: 10px; }
.calc-option { display: none; }

/* Tabela comparativa */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.compare-table thead th.col-rent {
  color: var(--gold);
  background: rgba(230, 0, 0, 0.06);
}

.compare-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: middle;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

.compare-table .col-rent {
  background: rgba(230, 0, 0, 0.04);
  font-weight: 600;
}

.compare-table .check { color: #4ade80; font-weight: 700; }
.compare-table .cross { color: var(--text-muted); }
.compare-table .highlight-gold { color: var(--gold); font-weight: 700; }

/* Cenários */
.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.scenario-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.scenario-card--featured {
  border-color: rgba(230, 0, 0, 0.4);
  background: linear-gradient(160deg, rgba(230, 0, 0, 0.08) 0%, var(--bg-card) 45%);
}

.scenario-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 10px;
}

.scenario-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.scenario-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.scenario-costs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.scenario-cost-box {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.scenario-cost-box--win {
  border-color: rgba(230, 0, 0, 0.35);
  background: rgba(230, 0, 0, 0.06);
}

.scenario-cost-box span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.scenario-cost-box strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.scenario-cost-box--win strong { color: var(--gold); }

.scenario-verdict {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.scenario-verdict--rent {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #86efac;
}

.scenario-verdict--mixed {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gold-muted);
}

.inline-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.12), rgba(255, 215, 0, 0.06));
  border: 1px solid rgba(230, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}

.inline-cta-strip p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 520px;
}

@media (max-width: 900px) {
  .verdict-grid { grid-template-columns: 1fr; }
  .calc-summary-grid { grid-template-columns: 1fr; }
  .calc-legend-grid { grid-template-columns: 1fr; }
  .calc-legend-compare { grid-template-columns: 1fr; }
  .calc-chips--segment { flex-direction: column; border-radius: 20px; }
  .inline-cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .calc-panel { padding: 24px 18px; }
  .calc-chips--2x2 { grid-template-columns: 1fr; }
  .scenario-costs { grid-template-columns: 1fr; }
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

@media (max-width: 900px) {
  nav.desktop-nav, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .float-actions { right: 16px; bottom: 16px; }
  .orcamento-float { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .orcamento-float-label { display: none; }
  .whats-float { width: 52px; height: 52px; }
  .whats-float svg { width: 28px; height: 28px; }
  .google-rating-float { left: 16px; bottom: 16px; padding: 10px 12px; }
  .section { padding: 60px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
