/* =========================================================================
   EXATTA IMOBILIÁRIA — SISTEMA DE DESIGN
   Paleta extraída da marca: azul institucional, laranja, azul-marinho.
   ========================================================================= */

:root {
  /* Cores da marca */
  --azul: #0B5FA5;
  --azul-claro: #1E7DCB;
  --laranja: #F26B21;
  --laranja-claro: #FF8340;
  --marinho: #0A2540;
  --marinho-deep: #061829;
  --marinho-800: #0D2E4D;
  --branco: #FFFFFF;
  --cinza-claro: #F4F6F9;
  --cinza-medio: #E4E9F0;
  --cinza-texto: #5A6B7E;
  --neutro-900: #12212F;

  /* Semânticos */
  --bg: var(--marinho-deep);
  --surface-glass: rgba(255, 255, 255, 0.06);
  --surface-glass-strong: rgba(255, 255, 255, 0.10);
  --border-glass: rgba(255, 255, 255, 0.12);
  --text-on-dark: #EAF1F8;
  --text-on-dark-muted: #A9BDD1;

  /* Tipografia */
  --font-display: "Sora", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  /* Sombras */
  --shadow-soft: 0 20px 60px -20px rgba(6, 24, 41, 0.5);
  --shadow-card: 0 12px 40px -12px rgba(6, 24, 41, 0.35);
  --shadow-glow: 0 0 40px -8px rgba(242, 107, 33, 0.35);

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-on-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--laranja); color: #fff; }

/* Foco visível para acessibilidade */
:focus-visible {
  outline: 3px solid var(--laranja-claro);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- UTILITÁRIOS ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--laranja-claro);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--laranja);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-pad { padding-block: clamp(72px, 10vw, 130px); }

.text-orange { color: var(--laranja-claro); }
.text-muted { color: var(--text-on-dark-muted); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  will-change: transform;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--laranja);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(242, 107, 33, 0.6);
}
.btn-primary:hover {
  background: var(--laranja-claro);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(242, 107, 33, 0.7);
}

.btn-secondary {
  background: var(--surface-glass-strong);
  color: var(--text-on-dark);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* =========================================================================
   LOADING SCREEN / ABERTURA CINEMATOGRÁFICA
   ========================================================================= */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 45%, var(--marinho-800) 0%, var(--marinho-deep) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  width: min(260px, 60vw);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: logoReveal 1.1s var(--ease) 0.5s forwards;
}
@keyframes logoReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.loader-line-svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -140px);
  width: 120px;
  height: 120px;
  pointer-events: none;
}
.loader-line-svg path {
  fill: none;
  stroke: var(--laranja);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 1.4s var(--ease) 0.1s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease 1s forwards;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--azul-claro), var(--laranja));
  animation: loadProgress 1.8s var(--ease) 1.1s forwards;
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes fadeIn { to { opacity: 1; } }

.loader-skip {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  padding: 10px 20px;
  border: 1px solid var(--border-glass);
  border-radius: 40px;
  opacity: 0;
  animation: fadeIn 0.5s ease 1.4s forwards;
  transition: background 0.3s, color 0.3s;
}
.loader-skip:hover { background: var(--surface-glass); color: #fff; }

/* =========================================================================
   HEADER / MENU
   ========================================================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
#header.scrolled {
  padding: 12px 0;
  background: rgba(6, 24, 41, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  height: 46px;
  width: auto;
  transition: height 0.4s var(--ease);
  filter: brightness(0) invert(1);
}
/* logo colorido no header — usa versão original sobre glass */
.header-logo img.logo-color { filter: none; }
#header.scrolled .header-logo img { height: 40px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  position: relative;
  transition: color 0.3s;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--laranja);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile lateral */
.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(340px, 85vw);
  background: var(--marinho-800);
  border-left: 1px solid var(--border-glass);
  z-index: 1001;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.5);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-on-dark);
  transition: color 0.25s, padding-left 0.25s;
}
.nav-mobile a:hover { color: var(--laranja-claro); padding-left: 8px; }
.nav-mobile .btn { margin-top: 20px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 24, 41, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* =========================================================================
   HERO CINEMATOGRÁFICO
   ========================================================================= */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s var(--ease);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(6,24,41,0.92) 0%, rgba(6,24,41,0.6) 45%, rgba(6,24,41,0.25) 100%),
    linear-gradient(to top, rgba(6,24,41,0.9) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
}

.hero-content .eyebrow {
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroLine 0.9s var(--ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.45s; }
.hero-title .line:nth-child(2) { animation-delay: 0.6s; }
.hero-title .highlight {
  color: var(--laranja-claro);
  position: relative;
}

@keyframes heroLine { to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { to { opacity: 1; } }

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-on-dark-muted);
  max-width: 540px;
  margin-bottom: 38px;
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 0.8s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  opacity: 0;
  animation: heroFade 1s ease 1.6s forwards;
}
.hero-scroll .mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-on-dark-muted);
  border-radius: 14px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 7px;
  background: var(--laranja);
  border-radius: 3px;
  animation: scrollWheel 1.8s var(--ease) infinite;
}
@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* Hotspots sobre a casa */
.hero-hotspots { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.hotspot {
  position: absolute;
  pointer-events: auto;
  width: 30px; height: 30px;
  transform: translate(-50%, -50%);
}
.hotspot-dot {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(242, 107, 33, 0.9);
  border: 2px solid #fff;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}
.hotspot-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(242, 107, 33, 0.6);
  animation: hotspotPulse 2s ease-out infinite;
}
@keyframes hotspotPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hotspot-dot:hover { transform: scale(1.2); }
.hotspot-label {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(6, 24, 41, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  pointer-events: none;
}
.hotspot:hover .hotspot-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 900px) { .hero-hotspots { display: none; } }

/* =========================================================================
   BUSCA DE IMÓVEIS (painel flutuante)
   ========================================================================= */
#busca {
  position: relative;
  z-index: 20;
  margin-top: -60px;
}
.search-panel {
  background: rgba(13, 46, 77, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.search-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 7px; }
.search-field label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
}
.search-field select,
.search-field input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.search-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A9BDD1' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.search-field select option { background: var(--marinho-800); color: #fff; }
.search-field select:focus,
.search-field input:focus {
  border-color: var(--laranja);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.search-field input::placeholder { color: rgba(169, 189, 209, 0.5); }
.search-submit { grid-column: span 4; }

@media (max-width: 860px) {
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .search-submit { grid-column: span 2; }
}
@media (max-width: 520px) {
  .search-grid { grid-template-columns: 1fr; }
  .search-submit { grid-column: span 1; }
  #busca { margin-top: -30px; }
}

/* =========================================================================
   IMÓVEL EM DESTAQUE
   ========================================================================= */
#destaque { background: var(--marinho-deep); }

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

.destaque-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.2;
}
.destaque-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease), transform 8s var(--ease);
}
.destaque-visual img.active { opacity: 1; transform: scale(1.05); }
.destaque-daynight {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  background: rgba(6, 24, 41, 0.75);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 40px;
  border: 1px solid var(--border-glass);
}
.daynight-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: background 0.3s, color 0.3s;
}
.daynight-btn.active { background: var(--laranja); color: #fff; }

.destaque-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: var(--laranja);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

.destaque-info .price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 20px 0 6px;
}
.price-de {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  text-decoration: line-through;
  text-decoration-color: var(--laranja);
}
.price-por {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-por small { font-size: 1.4rem; color: var(--text-on-dark-muted); font-weight: 600; }

.destaque-discount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 107, 33, 0.14);
  border: 1px solid rgba(242, 107, 33, 0.3);
  color: var(--laranja-claro);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.spec-item:hover { transform: translateY(-3px); border-color: rgba(242,107,33,0.3); }
.spec-item .spec-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(30, 125, 203, 0.16);
  display: grid;
  place-items: center;
  color: var(--azul-claro);
}
.spec-item .spec-icon svg { width: 22px; height: 22px; }
.spec-item .spec-text strong { display: block; font-size: 1.05rem; font-weight: 700; }
.spec-item .spec-text span { font-size: 0.82rem; color: var(--text-on-dark-muted); }

.destaque-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.destaque-legal {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(169, 189, 209, 0.7);
  line-height: 1.5;
  padding-left: 14px;
  border-left: 2px solid rgba(242, 107, 33, 0.4);
}

@media (max-width: 900px) {
  .destaque-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   VISUALIZADOR "PSEUDO-3D" DA CASA
   ========================================================================= */
#viewer3d {
  background: linear-gradient(180deg, var(--marinho-deep), var(--marinho-800));
  position: relative;
}
.viewer-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-soft);
  background: #000;
  cursor: grab;
}
.viewer-stage.grabbing { cursor: grabbing; }
.viewer-stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  user-select: none;
  -webkit-user-drag: none;
}
.viewer-stage img.active { opacity: 1; }
.viewer-hint {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(6, 24, 41, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.5s;
}
.viewer-controls {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  background: rgba(6, 24, 41, 0.8);
  backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  flex-wrap: wrap;
  justify-content: center;
  max-width: calc(100% - 32px);
}
.viewer-btn {
  padding: 9px 16px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.viewer-btn svg { width: 16px; height: 16px; }
.viewer-btn.active, .viewer-btn:hover { background: var(--laranja); color: #fff; }

.viewer-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(169, 189, 209, 0.65);
}

/* =========================================================================
   PLANTA BAIXA INTERATIVA
   ========================================================================= */
#planta { background: var(--marinho-deep); }

.planta-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 40px;
  flex-wrap: wrap;
}
.planta-tab {
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--border-glass);
  background: var(--surface-glass);
  transition: all 0.3s var(--ease);
}
.planta-tab.active {
  background: var(--azul);
  color: #fff;
  border-color: var(--azul);
}

.planta-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.planta-svg-wrap {
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.planta-svg { width: 100%; height: auto; }

.room-shape {
  fill: rgba(30, 125, 203, 0.12);
  stroke: rgba(30, 125, 203, 0.5);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.3s, stroke 0.3s;
}
.room-shape:hover, .room-shape.active {
  fill: rgba(242, 107, 33, 0.28);
  stroke: var(--laranja);
}
.room-label { font-family: var(--font-body); font-size: 11px; fill: var(--text-on-dark); font-weight: 500; pointer-events: none; }
.room-area { font-family: var(--font-body); font-size: 9px; fill: var(--text-on-dark-muted); pointer-events: none; }

.planta-details { position: sticky; top: 100px; }
.planta-detail-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.planta-detail-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.planta-detail-card .area-tag {
  font-size: 0.85rem;
  color: var(--laranja-claro);
  font-weight: 600;
}
.planta-detail-card p { font-size: 0.9rem; color: var(--text-on-dark-muted); }

.planta-room-list { display: flex; flex-direction: column; gap: 8px; }
.planta-room-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-glass);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.planta-room-item:hover, .planta-room-item.active {
  border-color: var(--laranja);
  background: rgba(242, 107, 33, 0.1);
}
.planta-room-item span:first-child { font-weight: 500; font-size: 0.92rem; }
.planta-room-item span:last-child { font-size: 0.85rem; color: var(--text-on-dark-muted); }

@media (max-width: 900px) {
  .planta-layout { grid-template-columns: 1fr; }
  .planta-details { position: static; }
}

/* =========================================================================
   ENTRE NA CASA (galeria imersiva)
   ========================================================================= */
#entre {
  background: linear-gradient(180deg, var(--marinho-deep), var(--marinho-800));
  overflow: hidden;
}
.entre-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.entre-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 180px;
}
.entre-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.entre-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.entre-item:hover img { transform: scale(1.07); }
.entre-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(to top, rgba(6,24,41,0.9), transparent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.entre-a { grid-column: span 7; grid-row: span 2; }
.entre-b { grid-column: span 5; grid-row: span 1; }
.entre-c { grid-column: span 5; grid-row: span 1; }
.entre-d { grid-column: span 5; grid-row: span 1; }
.entre-e { grid-column: span 7; grid-row: span 1; }

.entre-legal {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(169, 189, 209, 0.65);
  font-style: italic;
}

@media (max-width: 720px) {
  .entre-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .entre-a, .entre-b, .entre-c, .entre-d, .entre-e { grid-column: span 1; grid-row: span 1; }
}

/* =========================================================================
   COMO FUNCIONA (timeline)
   ========================================================================= */
#como { background: var(--marinho-deep); }
.timeline {
  position: relative;
  max-width: 820px;
  margin: 60px auto 0;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.timeline-progress {
  position: absolute;
  left: 15px; top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--azul-claro), var(--laranja));
  transition: height 0.2s linear;
}
.timeline-step {
  position: relative;
  padding-bottom: 44px;
  opacity: 0.4;
  transition: opacity 0.5s;
}
.timeline-step.visible { opacity: 1; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  position: absolute;
  left: -40px; top: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--marinho-800);
  border: 2px solid var(--laranja);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--laranja-claro);
  z-index: 2;
}
.timeline-step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.timeline-step p { color: var(--text-on-dark-muted); max-width: 560px; }

/* =========================================================================
   DIFERENCIAIS
   ========================================================================= */
#diferenciais { background: linear-gradient(180deg, var(--marinho-deep), var(--marinho-800)); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.benefit-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 107, 33, 0.35);
  background: var(--surface-glass-strong);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.benefit-card p { font-size: 0.88rem; color: var(--text-on-dark-muted); }

@media (max-width: 940px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FINANCIAMENTO / FORMULÁRIO
   ========================================================================= */
#financiamento { background: var(--marinho-deep); }
.finance-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.finance-intro .section-title { margin: 18px 0; }
.finance-intro > p { color: var(--text-on-dark-muted); font-size: 1.05rem; margin-bottom: 28px; }
.finance-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.finance-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.finance-trust-item .check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(30, 125, 203, 0.2);
  display: grid;
  place-items: center;
  color: var(--azul-claro);
}
.finance-trust-item .check svg { width: 15px; height: 15px; }
.finance-trust-item p { font-size: 0.92rem; }
.finance-trust-item strong { color: #fff; }

/* Formulário multi-etapas */
.form-card {
  background: rgba(13, 46, 77, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.form-progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.form-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--laranja);
  transition: width 0.5s var(--ease);
}
.form-progress-bar.done span { width: 100%; }
.form-progress-bar.current span { width: 50%; }

.form-step { display: none; animation: formFade 0.5s var(--ease); }
.form-step.active { display: block; }
@keyframes formFade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

.form-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laranja-claro);
  margin-bottom: 6px;
}
.form-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.form-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.form-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.95rem;
}
.form-option:hover { border-color: rgba(242,107,33,0.4); }
.form-option.selected { border-color: var(--laranja); background: rgba(242,107,33,0.1); }
.form-option .radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.25s;
}
.form-option.selected .radio { border-color: var(--laranja); }
.form-option.selected .radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--laranja);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.82rem; color: var(--text-on-dark-muted); font-weight: 500; }
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A9BDD1' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--marinho-800); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--laranja);
  background: rgba(255,255,255,0.1);
  outline: none;
}
.form-group input::placeholder { color: rgba(169,189,209,0.5); }
.form-group input.error, .form-group select.error { border-color: #ff5a5a; }
.form-error-msg { font-size: 0.78rem; color: #ff8080; display: none; }
.form-group.has-error .form-error-msg { display: block; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
}
.form-consent input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--laranja);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.form-consent a { color: var(--laranja-claro); text-decoration: underline; }

.form-nav { display: flex; gap: 12px; margin-top: 8px; }
.form-nav .btn { flex: 1; }
.form-back {
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-on-dark-muted);
  flex: 0 0 auto !important;
  padding-inline: 24px;
}
.form-back:hover { background: var(--surface-glass-strong); color: #fff; }

.form-finance-note {
  font-size: 0.8rem;
  color: rgba(169,189,209,0.7);
  padding-left: 14px;
  border-left: 2px solid rgba(242,107,33,0.4);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Tela de sucesso */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: formFade 0.6s var(--ease);
}
.form-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  border: 2px solid #2ecc71;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: #2ecc71;
}
.success-icon svg { width: 36px; height: 36px; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: var(--text-on-dark-muted); margin-bottom: 26px; max-width: 380px; margin-inline: auto; }

@media (max-width: 900px) {
  .finance-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

/* =========================================================================
   SOBRE
   ========================================================================= */
#sobre { background: linear-gradient(180deg, var(--marinho-800), var(--marinho-deep)); }
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sobre-content .section-title { margin: 20px 0 24px; max-width: 500px; }
.sobre-content > p { color: var(--text-on-dark-muted); font-size: 1.05rem; margin-bottom: 20px; }
.sobre-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.sobre-meta-item {
  padding: 18px;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
}
.sobre-meta-item .label { font-size: 0.78rem; color: var(--text-on-dark-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.sobre-meta-item .value { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.sobre-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
}
.sobre-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .sobre-layout { grid-template-columns: 1fr; gap: 36px; }
  .sobre-visual { aspect-ratio: 16/10; }
}

/* =========================================================================
   CHAMADA FINAL
   ========================================================================= */
#cta-final {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,24,41,0.85), rgba(6,24,41,0.75));
}
.cta-glow {
  position: absolute;
  bottom: 20%; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(242,107,33,0.25), transparent 70%);
  z-index: 2;
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content .section-title { margin: 20px 0; }
.cta-content > p { color: var(--text-on-dark-muted); font-size: 1.15rem; margin-bottom: 34px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   RODAPÉ
   ========================================================================= */
#footer {
  background: var(--marinho-deep);
  border-top: 1px solid var(--border-glass);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.9rem; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: #fff;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--laranja-claro); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.footer-social a:hover { background: var(--laranja); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}
.footer-bottom .links { display: flex; gap: 20px; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.65); }
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float .wa-text { white-space: nowrap; }

/* Barra fixa inferior mobile */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  background: rgba(6, 24, 41, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 16px;
  gap: 12px;
}
.mobile-bar .btn { flex: 1; padding: 14px; font-size: 0.9rem; }

@media (max-width: 720px) {
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float { padding: 14px; bottom: 84px; }
  .mobile-bar { display: flex; }
}

/* =========================================================================
   COOKIE BANNER
   ========================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 950;
  max-width: 380px;
  background: var(--marinho-800);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie-banner p { font-size: 0.85rem; color: var(--text-on-dark-muted); margin-bottom: 14px; line-height: 1.5; }
.cookie-banner a { color: var(--laranja-claro); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { flex: 1; padding: 10px; font-size: 0.85rem; }

@media (max-width: 720px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 150px; max-width: none; }
}

/* =========================================================================
   ANIMAÇÕES DE SCROLL (reveal)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-title .line, .hero-content .eyebrow, .hero-subtitle, .hero-buttons { opacity: 1 !important; transform: none !important; animation: none !important; }
  .cta-glow, .hotspot-dot::before, .hero-scroll .mouse::after { animation: none !important; }
}

/* Responsivo do menu */
@media (max-width: 1080px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
}

/* Ajuste hero mobile */
@media (max-width: 600px) {
  .hero-buttons .btn { width: 100%; }
  .btn { width: auto; }
}

/* =========================================================================
   MODAIS (Privacidade / Termos)
   ========================================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 24, 41, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--marinho-800);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-soft);
}
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.modal-box p { color: var(--text-on-dark-muted); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.6; }
.modal-box strong { color: #fff; }
.modal-box em { color: var(--laranja-claro); font-size: 0.85rem; }
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-on-dark-muted);
  transition: color 0.25s, transform 0.25s;
}
.modal-close:hover { color: #fff; transform: rotate(90deg); }

@media (max-width: 480px) {
  .modal-box { padding: 28px 24px; }
}
