/* ==========================================================================
   APRESENTAÇÃO — ESTILOS ESPECÍFICOS (Sprint 1)
   Direção Visual: Paleta escura, acento em latão (brass), Fraunces + Manrope
   ========================================================================== */

/* --- Placeholder Visual de Destaque ([INSERIR: ...]) --- */
.insert-placeholder {
  display: inline;
  background: rgba(212, 175, 55, 0.12);
  color: #f3e5ab;
  border-bottom: 1px dashed var(--color-brass);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.insert-placeholder-block {
  display: block;
  background: rgba(212, 175, 55, 0.08);
  color: #f3e5ab;
  border: 1px dashed rgba(212, 175, 55, 0.35);
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Header Fixo --- */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.1rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: background 0.3s ease;
}

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

.brand-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.brand-wrapper .logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-brass-light);
  letter-spacing: 0.05em;
}

.brand-wrapper .brand-sub {
  font-size: 0.825rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.825rem;
  letter-spacing: 0.06em;
}

/* --- Seções Genéricas --- */
.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brass);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-surface-elevated {
  background-color: var(--color-surface-elevated);
}

.border-subtle {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- 1. HERO (Foto Estática de Alta Resolução) --- */
.section-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.68) saturate(1.1);
  animation: heroZoom 15s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.88) 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 var(--space-sm);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-content .hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #d1d1cf;
  max-width: 720px;
  margin: 0 auto 2.2rem;
  line-height: 1.65;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
  pointer-events: none;
  z-index: 10;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-brass-light);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- 2. Proposta de Valor --- */
.section-proposta {
  background: #0d0d0d;
  position: relative;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.proposta-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-primary);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}

.proposta-quote span {
  color: var(--color-brass-light);
  font-style: normal;
  font-weight: 500;
}

/* --- 3. Diferenciais --- */
.grid-diferenciais {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .grid-diferenciais {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.diferencial-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.2rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.diferencial-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-brass);
  margin-bottom: 0.8rem;
  display: block;
  opacity: 0.85;
}

.diferencial-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  color: var(--color-text-primary);
}

.diferencial-card p {
  color: var(--color-text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* --- 4. Ficha Técnica / Características --- */
.ficha-tecnica-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .ficha-tecnica-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.ficha-item {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.4rem 1.2rem;
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.ficha-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.ficha-label {
  display: block;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 0.45rem;
}

.ficha-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-brass-light);
}

/* --- 5. Vídeo de Tour (Sob Demanda) --- */
.video-tour-container {
  max-width: 960px;
  margin: 0 auto;
}

.video-poster-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.5s ease;
}

.video-poster-wrapper:hover .video-poster-img {
  transform: scale(1.02);
}

.video-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.btn-play-trigger {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.9);
  border: 1.5px solid var(--color-brass);
  color: var(--color-brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.btn-play-trigger:hover {
  transform: scale(1.06);
  background: var(--color-brass);
  color: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.video-play-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

.video-status-display {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 10, 0.9);
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  border: 1px solid var(--color-brass);
  font-size: 0.85rem;
  color: var(--color-brass-light);
}

.video-support-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.6;
}

/* --- 6. Tour pelos Ambientes (Galeria) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

.gallery-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.gallery-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #141414;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-card:hover .gallery-media img,
.gallery-card:focus-visible .gallery-media img {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-brass-light);
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  z-index: 2;
  pointer-events: none;
}

.gallery-photo-count {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: #f0f0f0;
  font-size: 0.725rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.gallery-card:hover .gallery-photo-count {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--color-brass-light);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
  pointer-events: none;
}

.gallery-card:hover .gallery-hover-overlay,
.gallery-card:focus-visible .gallery-hover-overlay {
  opacity: 1;
}

.gallery-hover-btn {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--color-brass);
  color: var(--color-brass-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transform: translateY(4px);
  transition: transform 0.25s ease;
}

.gallery-card:hover .gallery-hover-btn {
  transform: translateY(0);
}

.gallery-info {
  padding: 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery-info h3 {
  font-size: 1.15rem;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.gallery-info p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* --- 7. Benfeitorias e Acabamentos --- */
.benfeitorias-box {
  background: linear-gradient(145deg, #161616 0%, #101010 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  max-width: 840px;
  margin: 0 auto;
}

.benfeitorias-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.benfeitorias-icon {
  color: var(--color-brass);
  font-size: 1.8rem;
}

.benfeitorias-box h3 {
  font-size: 1.5rem;
}

/* --- 8. FAQ --- */
.faq-accordion {
  max-width: 820px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.35);
  background: #151515;
}

.faq-item summary {
  padding: 1.35rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-primary);
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--color-brass);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* --- 9. Condomínio Grand Park Lindóia --- */
.condominio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .condominio-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.amenity-pill {
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.amenity-dot {
  width: 6px;
  height: 6px;
  background: var(--color-brass);
  border-radius: 50%;
  display: inline-block;
}

/* --- 10. Localização --- */
.localizacao-box {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.location-highlights {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.location-item {
  background: var(--color-surface-elevated);
  padding: 1.2rem;
  border-radius: 4px;
  text-align: center;
}

.location-item strong {
  display: block;
  color: var(--color-brass-light);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

/* --- 11. Dossiê do Imóvel --- */
.dossie-box {
  background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dossie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-brass);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.dossie-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
}

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

.dossie-list li {
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.925rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dossie-list li::before {
  content: "✓";
  color: var(--color-brass);
  font-weight: bold;
}

.dossie-notice {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.15rem 1.4rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* --- 12. Oferta e Condições --- */
.oferta-card {
  background: linear-gradient(135deg, #181818 0%, #0e0e0e 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  padding: 3.5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.price-display {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--color-brass-light);
  margin: 1rem 0;
  letter-spacing: -0.01em;
}

.oferta-terms {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* --- 13. CTA Final --- */
.cta-final-section {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0;
  text-align: center;
}

/* --- Modal do Quiz e Agendamento --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.modal-content {
  background: #141414;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  width: 100%;
  max-width: 560px;
  padding: 2.2rem 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-brass);
}

.quiz-step-title {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.quiz-step-prompt {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.lgpd-notice {
  font-size: 0.775rem;
  color: var(--color-text-tertiary);
  margin: 1.2rem 0;
  line-height: 1.45;
}

/* --- Botão Sticky Mobile de WhatsApp --- */
.sticky-whatsapp-mobile {
  display: none;
}

@media (max-width: 767px) {
  .sticky-whatsapp-mobile {
    display: flex;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 90;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #ffffff;
    padding: 0.75rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .sticky-whatsapp-mobile:hover {
    transform: scale(1.04);
  }

  .sticky-whatsapp-mobile svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   MODAL LIGHTBOX — GALERIA INTERNA DO AMBIENTE (Seção 8)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 10;
  width: 96vw;
  max-width: 1040px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: #131313;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  animation: zoomModal 0.25s ease forwards;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: #171717;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.lightbox-badge {
  color: var(--color-brass);
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.lightbox-title {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin: 0;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lightbox-counter {
  font-size: 0.825rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-btn-close {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  border-radius: 4px;
}

.lightbox-btn-close:hover {
  color: var(--color-brass);
  transform: scale(1.1);
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0a;
  min-height: 320px;
  max-height: 60vh;
  padding: 0.5rem 1rem;
  gap: 0.75rem;
}

.lightbox-media-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 58vh;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 56vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.lightbox-img.fade {
  opacity: 0;
  transform: scale(0.98);
}

.lightbox-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 24, 24, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 5;
}

.lightbox-nav-btn:hover {
  background: var(--color-brass);
  color: #0d0d0d;
  border-color: var(--color-brass);
  transform: scale(1.06);
}

.lightbox-nav-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lightbox-footer {
  padding: 1rem 1.4rem;
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.lightbox-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 16px;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.lightbox-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.lightbox-dot.active {
  background: var(--color-brass);
  width: 24px;
  border-radius: 12px;
}

.lightbox-caption-box {
  max-width: 780px;
}

.lightbox-caption-text {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 640px) {
  .lightbox-dialog {
    width: 98vw;
    max-height: 95vh;
  }

  .lightbox-stage {
    padding: 0.5rem 0.25rem;
    gap: 0.25rem;
    min-height: 260px;
    max-height: 52vh;
  }

  .lightbox-nav-btn {
    width: 36px;
    height: 36px;
  }

  .lightbox-header,
  .lightbox-footer {
    padding: 0.85rem 1rem;
  }
}

