/* Reset Básico e Variáveis */
:root {
    --primary-color: #E1A140;
    /* Dourado da imagem de referência */
    --primary-hover: #F2B65A;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A5;
    --glass-bg: rgba(25, 25, 30, 0.45);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    /* Mantém estrito ao viewport da tela */
    background-color: #000;
}

/* ==========================================
   ARQUITETURA DO PLAYER (z-index: 1)
   ========================================== */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
}

.bg-video.fade-out {
    opacity: 0;
}

/* ==========================================
   NOVA INTERFACE DE SOBREPOSIÇÃO (z-index: 2)
   ========================================== */
.ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 40px;
}

.ui-layer>* {
    pointer-events: auto;
}

/* Painel de Vidro (Novo padrão solicitado) */
.glass-panel-dark {
    backdrop-filter: blur(10px) saturate(200%);
    -webkit-backdrop-filter: blur(10px) saturate(200%);
    background-color: rgba(17, 25, 40, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    color: white;
    transition: background 0.3s ease;
}

.glass-panel-dark:hover {
    background-color: rgba(17, 25, 40, 0.9);
}

/* ==========================================
   TOPO DA INTERFACE
   ========================================== */
.top-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.logo-top-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: auto;
}

.logo-icon-gold {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.logo-icon-gold svg {
    width: 24px;
    height: 24px;
}

.logo-text h1 {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    color: white;
}

.logo-text h2 {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.center-nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.top-nav-bar {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 40px;
    height: 52px;
    position: relative;
    border: none !important; /* Sobrescreve o border do glass-panel-dark para usar o gradiente */
    background: linear-gradient(180deg, rgba(30, 40, 55, 0.5) 0%, rgba(15, 20, 30, 0.7) 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Borda Gradient - Luz apenas no topo e na base (volume) */
.top-nav-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px; /* espessura da borda */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.02) 20%, rgba(255, 255, 255, 0.02) 80%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.top-nav-bar > * {
    z-index: 1; /* Garante que os filhos fiquem acima da pseudo-borda */
}

.nav-list.horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
}

.nav-list.horizontal li {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0 24px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    position: relative;
    height: 52px;
    display: flex;
    align-items: center;
    z-index: 1; /* Fica acima do switch */
}

.nav-list.horizontal li:hover {
    color: white;
}

.nav-list.horizontal li.active {
    color: var(--primary-color);
}

.nav-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 2px));
    height: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: none;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Sombra macia */
    z-index: 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 0; /* JS muda para 1 ao inicializar (classe initialized) */
}

/* Borda Gradient da pílula (Luz no topo, sombra nas laterais) */
.nav-indicator::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.0) 70%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.nav-indicator.initialized {
    opacity: 1;
}

/* O Glow fica agora atrelado ao switch/indicator */
.nav-indicator::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Posiciona um pouco abaixo do indicator */
    left: 20px; /* Igual ao border-radius para cobrir apenas a reta inferior */
    right: 20px; /* Igual ao border-radius para cobrir apenas a reta inferior */
    height: 3px;
    background: #ffebb3;
    border-radius: 3px;
    box-shadow:
        0 -2px 6px var(--primary-color),
        0 -6px 15px rgba(251, 176, 59, 1),
        0 -12px 25px rgba(251, 176, 59, 0.8),
        0 -22px 45px rgba(251, 176, 59, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease 0.2s; /* Acende após terminar de deslizar */
}

.nav-indicator.glow-active::after {
    opacity: 1;
}

.btn-presentation {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 1px;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0 20px;
}

.btn-presentation:hover {
    color: white;
}

.top-right-placeholder {
    width: 250px;
}

/* ==========================================
   TIMELINE INDICATOR (BOLINHAS)
   ========================================== */
.timeline-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 600px;
    justify-content: space-between;
    transform: scale(0.7);
    /* Redução proporcional de 30% */
    transform-origin: top center;
    margin-top: -10px;
    /* Traz a barra um pouco mais pra perto do menu para compensar a escala */
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0;
    transform: translateY(-50%);
}

/* Thumbnail Preview Hover */
.timeline-thumbnail {
    position: absolute;
    top: 40px;
    /* Posicionado ABAIXO do bullet para não cobrir o menu */
    width: 192px;
    /* Aumentado para compensar a escala de 0.7 do pai (tamanho visual de ~134px) */
    height: 108px;
    background-color: rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    /* Compensando a escala para manter o arredondamento macio */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.timeline-thumbnail.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ponto interno (Inativo) */
.timeline-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Anel externo (Inativo) - Usando padrão do Glass Panel */
.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(17, 25, 40, 0.7);
    /* Fundo padrão dos menus */
    backdrop-filter: blur(10px) saturate(200%);
    /* Blur idêntico aos menus */
    -webkit-backdrop-filter: blur(10px) saturate(200%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Hover em inativos */
.timeline-dot:hover::after {
    transform: scale(1.3);
}

.timeline-dot:hover::before {
    border-color: white;
    background-color: rgba(17, 25, 40, 0.9);
    /* Fundo Hover padrão dos menus */
}

/* Ponto Ativo (Laranja/Dourado) */
.timeline-dot.active::after {
    width: 20px;
    /* Expande para preencher o anel inteiro */
    height: 20px;
    background: #FBB03B;
    /* Dourado exato do print */
    box-shadow: 0 0 15px rgba(251, 176, 59, 0.8);
}

.timeline-dot.active::before {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    /* Borda branca fina por cima do laranja */
    background: transparent;
    box-shadow: 0 0 10px rgba(251, 176, 59, 0.5);
}

/* ==========================================
   BOTÃO INFO FLUTUANTE (AGORA SITEMAP NO RODAPÉ)
   ========================================== */
.btn-info {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-info:hover {
    transform: scale(1.05);
}

/* ==========================================
   BASE DA INTERFACE
   ========================================== */
.bottom-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.bottom-center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
}

.logo-orbit-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px dashed var(--primary-color);
    position: relative;
}

.logo-orbit-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.logo-orbit-text {
    display: flex;
    flex-direction: column;
}

.logo-orbit-text span {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.logo-orbit-text .sub {
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.bottom-navigation {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 40px;
    gap: 15px;
    position: relative;
    border: none !important; /* Sobrescreve o border do glass-panel-dark para usar o gradiente */
    background: linear-gradient(180deg, rgba(30, 40, 55, 0.5) 0%, rgba(15, 20, 30, 0.7) 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.bottom-navigation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.02) 20%, rgba(255, 255, 255, 0.02) 80%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.bottom-navigation > * {
    position: relative;
    z-index: 1; /* Garante que os filhos fiquem acima da pseudo-borda */
}

.nav-btn-arrow {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.nav-btn-arrow:hover {
    opacity: 1;
}

.nav-divider-small {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

.bottom-right-placeholder {
    width: 250px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* Alinha o centro do botão ao centro da logo do lado oposto */
}



/* ==========================================
   PONTOS DE INTERESSE (POIs)
   ========================================== */
#poi-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.poi-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Mantém a bolinha na base */
    pointer-events: auto;
    transform: translate(-50%, -100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-bottom: 5px; /* Espaço pro dot */
    cursor: pointer;
}

.poi-container.visible {
    opacity: 1;
}

/* ==================
   PÍLULA / LABEL 
   ================== */
.poi-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border-radius: 40px;
    
    /* Estilo Glass Volumétrico (igual ao menu) */
    border: none !important;
    background: linear-gradient(180deg, rgba(30, 40, 55, 0.5) 0%, rgba(15, 20, 30, 0.7) 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(12px);
    
    /* Animação Inicial (Base Fechada) */
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

/* Borda Glass Volumétrica */
.poi-label::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.02) 20%, rgba(255, 255, 255, 0.02) 80%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

/* ==================
   CONTEÚDO DO LABEL 
   ================== */
.poi-icon {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    
    /* Animação Inicial */
    transform: scale(0);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.poi-icon svg {
    width: 14px;
    height: 14px;
}

.poi-label span {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: white;
    white-space: nowrap;
    
    /* Animação Inicial (Fade + Blur + Y) */
    transform: translateY(10px);
    opacity: 0;
    filter: blur(4px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, filter 0.4s;
}

/* ==================
   LINHA E PONTO 
   ================== */
.poi-line {
    width: 1px;
    height: 0px; /* Inicialmente invisível */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s;
    transform-origin: bottom center;
}

.poi-dot {
    position: relative;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6);
}

/* Pulso em volta da bolinha */
.poi-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: poi-pulse 2s infinite cubic-bezier(0.2, 0.6, 0.3, 1);
}

@keyframes poi-pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ==================
   SEQUÊNCIA HOVER
   ================== */
/* 1. A linha sobe e engrossa */
.poi-container:hover .poi-line {
    height: 40px;
    width: 2px;
}

/* 2. A pílula expande (scaleX) */
.poi-container:hover .poi-label {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.15s;
}

/* 3. O Ícone aparece com pop */
.poi-container:hover .poi-icon {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

/* 4. O Texto surge suave (up + blur) */
.poi-container:hover .poi-label span {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
    transition-delay: 0.4s;
}

/* Esconde o pulso ao fazer hover para focar no card */
.poi-container:hover .poi-dot::after {
    display: none;
}

/* ==========================================
   HOTSPOTS SVG
   ========================================== */
.hotspot-polygon {
    fill: transparent;
    transition: fill 0.3s ease;
    cursor: pointer;
    /* pointer-events será herdado dinamicamente do pai via JS */
}

.hotspot-polygon:hover {
    fill: rgba(255, 255, 255, 0.3);
}

/* Polígonos das Unidades (Residences) */
.unit-overlay {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Estado: Disponível (Verde) */
.unit-overlay[data-status="available"] {
    fill: rgba(46, 213, 115, 0.2);
    /* Verde translúcido */
    stroke: rgba(46, 213, 115, 0.8);
}

.unit-overlay[data-status="available"]:hover {
    fill: rgba(46, 213, 115, 0.6);
    filter: drop-shadow(0 0 10px rgba(46, 213, 115, 1));
    mix-blend-mode: screen;
    /* Efeito de alta exposição */
}

/* Estado: Indisponível (Laranja/Coral) */
.unit-overlay[data-status="unavailable"] {
    fill: rgba(255, 127, 80, 0.2);
    /* Laranja translúcido */
    stroke: rgba(255, 127, 80, 0.8);
}

.unit-overlay[data-status="unavailable"]:hover {
    fill: rgba(255, 127, 80, 0.6);
    filter: drop-shadow(0 0 10px rgba(255, 127, 80, 1));
    mix-blend-mode: screen;
    /* Efeito de alta exposição */
}

/* ==========================================
   UNIT TOOLTIP
   ========================================== */
#unit-tooltip {
    position: absolute;
    pointer-events: none;
    /* Mouse ignora o tooltip para não bugar o hover */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    color: white;
    font-size: 12px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    transform: translate(-50%, -100%);
    margin-top: -15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 120px;
}

#unit-tooltip.visible {
    opacity: 1;
}

#unit-tooltip .tooltip-header {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

#unit-tooltip .tooltip-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: rgba(255, 255, 255, 0.8);
}

#unit-tooltip .tooltip-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    margin: 8px 0;
}

#unit-tooltip .tooltip-desc {
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 220px;
    margin: 0 auto;
}

/* ==========================================
   VIDEO MODAL E SITEMAP MODAL
   ========================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: auto;
}

.video-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-modal-content {
    position: relative;
    width: 60%;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-modal-content video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    outline: none;
    background: black;
}

.video-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: simple-spin 1s linear infinite;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 5;
}

.video-loading-spinner.hidden {
    opacity: 0;
}

@keyframes simple-spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.play-pause-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Deixa o clique passar pro wrapper */
}

.play-pause-btn svg {
    width: 26px;
    height: 26px;
}

.video-wrapper:hover .play-pause-btn {
    opacity: 1;
    transform: scale(1.05);
}

.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    opacity: 0;
}

.fullscreen-btn svg {
    width: 20px;
    height: 20px;
}

.video-wrapper:hover .fullscreen-btn {
    opacity: 1;
}

.fullscreen-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 10;
}

.close-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.close-btn svg {
    width: 22px;
    height: 22px;
}

/* ==========================================
   SITEMAP MODAL (Árvore Hierárquica)
   ========================================== */
.sitemap-modal-wrapper {
    position: relative;
    width: max-content;
    height: max-content;
    max-width: 95vw;
    max-height: 95vh;
}

.sitemap-modal-content {
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 20px;
}

/* Custom Scrollbar */
.sitemap-modal-content::-webkit-scrollbar {
    width: 8px;
}

.sitemap-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.sitemap-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* ==========================================
   NODA MODAL
   ========================================== */
.noda-wrapper {
    position: relative;
    width: max-content;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
}

.noda-content {
    padding: 0;
    border-radius: 20px;
    display: block;
    max-height: 90vh;
    /* Faz o corte vertical exato e trava para rolar */
    overflow-y: auto;
    overflow-x: auto;
}

/* Custom Scrollbar for noda-content */
.noda-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.noda-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.noda-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.sitemap-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.sitemap-level {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    width: 100%;
}

.sitemap-node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Linhas Conectoras Vertical do Pai */
.sitemap-node-wrapper.parent::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Linha Conectora Horizontal entre Filhos (Nível 2) */
.sitemap-level.level-2::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    /* Largura do nó (320px) + Gap (60px) */
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Linhas Conectoras Verticais dos Filhos (Nível 2) para a linha horizontal */
.sitemap-level.level-2 .sitemap-node-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

.sitemap-node {
    width: 320px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.sitemap-node:hover {
    transform: translateY(-5px);
}

.sitemap-node-thumb {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: opacity 0.3s;
}

.sitemap-node-thumb:hover {
    opacity: 0.8;
}

.sitemap-node-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.sitemap-node-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Mini Timeline do Sitemap */
.sitemap-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 5px;
    width: 100%;
}

.sitemap-timeline-line {
    position: absolute;
    top: 10px;
    /* Alinhado ao centro do .timeline-dot que tem 20px */
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.sitemap-timeline-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    transform: translateX(-50%);
}

.sitemap-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s;
}

.sitemap-mini-thumb {
    width: 40px;
    height: 22px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    transform-origin: top center;
}

.sitemap-timeline-item:hover {
    z-index: 10;
}

.sitemap-timeline-item:hover .timeline-dot::after {
    transform: scale(1.3);
}

.sitemap-timeline-item:hover .timeline-dot::before {
    border-color: white;
    background-color: rgba(17, 25, 40, 0.9);
}

.sitemap-timeline-item:hover .sitemap-mini-thumb {
    transform: scale(2.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   LOADING SCREEN (ORBIT)
   ========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-size: cover;
    background-position: center;
    background-color: #000;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-glass-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.noda-spinner {
    overflow: visible;
}

.spin-group {
    transform-origin: 50px 50px;
    animation: spin 3s linear infinite;
}

.pulse-core {
    transform-origin: 50px 50px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 300;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ==========================================
   UNIT DETAILS MODAL
   ========================================== */
.unit-details-wrapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.unit-details-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 5px;
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.unit-header h2 {
    font-size: 28px;
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.available {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.5);
}

.status-badge.unavailable {
    background: rgba(255, 127, 80, 0.2);
    color: #ff7f50;
    border: 1px solid rgba(255, 127, 80, 0.5);
}

.unit-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-value {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.unit-description p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.unit-body-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.unit-info-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unit-gallery-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.unit-gallery {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.unit-gallery img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.unit-gallery:hover img {
    transform: scale(1.08);
}

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.zoom-hint svg {
    width: 16px;
    height: 16px;
}

.unit-gallery:hover .zoom-hint {
    opacity: 1;
}

/* Fullscreen Image Modal Extra */
.fullscreen-image-content {
    width: 90vw;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.unit-action-btn {
    align-self: flex-end;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.unit-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 176, 59, 0.4);
}

/* Fullscreen Gallery & Thumbnails */
.fullscreen-gallery-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 85vh;
    position: relative;
    padding: 0 5vw;
    box-sizing: border-box;
}

.fullscreen-image-content {
    width: 70vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(0px);
}

.fullscreen-image-content img.blur-out {
    opacity: 0;
    filter: blur(15px);
    transform: scale(1.02);
}

.gallery-nav-btn {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 100;
}

.gallery-nav-btn:hover {
    background: rgba(251, 176, 59, 0.4);
    border-color: rgba(251, 176, 59, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(251, 176, 59, 0.3);
    transform: scale(1.1);
}

.fullscreen-thumbnails {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    padding: 0 20px 30px 20px;
    height: auto;
    width: 100vw;
    overflow-x: auto;
    box-sizing: border-box;
}

.fs-thumb {
    height: 80px;
    width: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.fs-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.fs-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.unit-mini-gallery-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 5px;
    margin-top: 10px;
}

.unit-mini-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.unit-mini-thumb:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   CUSTOM POI OVERLAY (UNIT 203)
   ========================================== */
.custom-poi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.custom-poi-overlay.hidden {
    opacity: 0;
    pointer-events: none !important;
}

.custom-poi-overlay.hidden * {
    pointer-events: none !important;
}

.custom-poi-overlay:not(.hidden) {
    opacity: 1;
}

.poi-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 51;
}

.custom-poi-left-panel {
    position: absolute;
    left: 300px;
    top: calc(15% + 50px);
    width: 450px;
    pointer-events: auto;
    z-index: 52;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    
    /* Animation base */
    transform-origin: right center;
    transform: scale(0.8) translateX(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
    transition-delay: 0.2s; /* Waits for the line slightly */
}

.custom-poi-overlay:not(.hidden) .custom-poi-left-panel {
    transform: scale(1) translateX(0);
    opacity: 1;
}

.custom-poi-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
    cursor: pointer;
}

.close-custom-poi-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}
.close-custom-poi-btn:hover {
    background: rgba(0,0,0,0.6);
}

.custom-poi-content {
    padding: 30px;
    /* content animation */
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    transition-delay: 0.4s;
}

.custom-poi-overlay:not(.hidden) .custom-poi-content {
    opacity: 1;
    transform: translateY(0);
}

.poetic-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gold-text {
    color: #FBB03B;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
}

.divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 25px 0;
    width: 100%;
}

.suite-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #FBB03B;
}

.bed-icon {
    width: 46px;
    height: 46px;
}

.suite-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.suite-number {
    font-size: 28px;
    font-weight: 600;
    color: white;
}

.suite-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
    margin-top: 2px;
}

.custom-poi-right-panel {
    position: absolute;
    top: 10%;
    right: 8%;
    pointer-events: auto;
    z-index: 52;
    padding: 20px 25px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    
    /* Animation */
    transform-origin: bottom center;
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    transition-delay: 0.4s;
}

.custom-poi-overlay:not(.hidden) .custom-poi-right-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.poi-connector-svg path {
    transition: stroke-dashoffset 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.right-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.right-panel-header h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    color: white;
}

.heart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
}
.heart-icon:active {
    transform: scale(0.9);
}
.heart-icon.active {
    fill: #FBB03B;
    stroke: #FBB03B;
}

.heart-icon:hover {
    color: #ff4b4b;
    transform: scale(1.1);
}

/* Modal Right Side Features (Frame 60) */
.custom-poi-features-panel {
    top: 25%;
    right: 8%;
    min-width: 400px;
    padding: 30px;
}
.features-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.features-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: white;
}
.floorplan-icon {
    width: 32px;
    height: 32px;
}
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}
.features-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================
   RESPONSIVIDADE CUSTOM POI (MOBILE)
   ========================================== */

/* Celular na Horizontal (Landscape) */
@media (max-width: 950px) and (orientation: landscape), (max-height: 450px) {
    .custom-poi-left-panel {
        left: 5%;
        top: 5%;
        width: 250px;
    }
    .custom-poi-image { height: 100px; }
    .custom-poi-content { padding: 12px; }
    .poetic-text { font-size: 13px; }
    .gold-text { font-size: 14px; }
    .divider-line { margin: 8px 0; }
    .bed-icon { width: 20px; height: 20px; }
    .suite-number { font-size: 16px; }
    
    .custom-poi-right-panel {
        top: 5%;
        right: 5%;
        min-width: 200px;
        padding: 10px;
        gap: 4px;
    }
    .right-panel-header h3 { font-size: 12px; }
    .specs-text { font-size: 10px; }
}

/* Celular na Vertical (Portrait) */
@media (max-width: 600px) and (orientation: portrait) {
    .custom-poi-left-panel {
        left: 5%;
        top: 40%;
        width: 90%;
    }
    .custom-poi-right-panel {
        top: 10%;
        right: 5%;
        left: 5%;
        width: 90%;
        min-width: unset;
    }
}

.specs-text {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.status-dot.green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #63d166;
    box-shadow: 0 0 8px rgba(99, 209, 102, 0.5);
}

/* Specific POI style */
.poi-orange-dot .poi-dot {
    width: 24px;
    height: 24px;
    background-color: transparent !important;
    border: 2px solid white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
}

.poi-orange-dot .poi-dot::after {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #FBB03B;
    border-radius: 50%;
}

.poi-orange-dot .poi-line, 
.poi-orange-dot .poi-label {
    display: none !important;
}


/* ==========================================
   RESPONSIVIDADE (MOBILE)
   ========================================== */
@media screen and (max-width: 768px) {
    /* Ajustes gerais de layout */
    .ui-layer {
        padding: 15px 20px;
    }

    /* Top Layout - Logo e Navegação */
    .top-layout {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo-top-left {
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }

    .logo-icon-gold {
        width: 36px;
        height: 36px;
    }

    .logo-icon-gold svg {
        width: 18px;
        height: 18px;
    }

    .logo-text h1 {
        font-size: 13px;
    }

    .logo-text h2 {
        font-size: 11px;
    }

    /* Navegação Central */
    .top-nav-bar {
        height: 42px;
    }

    .nav-list li {
        padding: 6px 15px;
        font-size: 11px;
    }

    .timeline-container {
        gap: 20px;
    }

    /* Bottom Layout */
    .bottom-layout {
        align-items: flex-end;
    }

    .logo-bottom-left {
        transform: scale(0.8);
        transform-origin: bottom left;
    }

    .bottom-center-container {
        transform: scale(0.85);
        transform-origin: bottom center;
        margin-bottom: -5px;
    }

    .bottom-right-placeholder {
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    /* Modais */
    .noda-wrapper {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
        padding: 20px;
    }

    .noda-content {
        padding-right: 10px;
    }

    .video-modal-content {
        width: 95%;
        height: 80vh;
    }
}

@media screen and (max-width: 480px) {
    .ui-layer {
        padding: 10px 15px;
    }
    
    .timeline-container {
        gap: 10px;
    }

    .bottom-navigation {
        gap: 15px;
        padding: 5px 15px;
        height: 42px;
    }

    .logo-bottom-left {
        display: none; /* Oculta em telas muito pequenas para não encavalar os controles centrais */
    }
}

/* ==========================================
   CORREÇÃO DE TOUCH (iOS BUG "DOUBLE TAP")
   ========================================== */
@media (hover: none) {
    /* Desativa efeitos visuais de hover que forçam o duplo-clique no Safari Mobile */
    .glass-panel-dark:hover {
        background-color: rgba(17, 25, 40, 0.7) !important;
    }
    .btn-info:hover {
        transform: none !important;
    }
    .nav-btn-arrow:hover {
        opacity: 0.6 !important;
    }
    .timeline-dot:hover::after {
        transform: none !important;
    }
    .timeline-dot:hover::before {
        border-color: rgba(255, 255, 255, 0.6) !important;
        background-color: rgba(17, 25, 40, 0.7) !important;
    }
}