/* --- FUNDO ESCURO (BACKDROP) --- */
.construction-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999 !important; /* Acima de TUDO (Mapa e Rodapé) */
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px); /* Efeito de vidro fosco */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* --- O CARTÃO DO MODAL --- */
.construction-card {
    position: relative;
    background-color: #121212;
    border: 1px solid rgba(255, 95, 0, 0.3); /* Laranja transparente */
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    
    /* AQUI ESTÁ A MÁGICA DO TAMANHO: */
    width: 100%;
    max-width: 320px; /* Trava a largura. Nunca passará disso, nem no desktop ultra-wide */
    
    box-shadow: 0 25px 50px -12px rgba(255, 95, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- DESTAQUE DA LOGO --- */
.logo-container {
    position: relative;
    width: 5rem;  /* 80px */
    height: 5rem; /* 80px */
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.logo-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF5F00, #ff914d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: 2px solid #1a1a1a;
}

.construction-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #121212;
    border: 1px solid #FF5F00;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* --- TEXTOS --- */
.construction-title {
    font-family: 'Michroma', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.construction-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #9ca3af; /* gray-400 */
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

/* --- BOTÃO DE AÇÃO --- */
.construction-btn {
    width: 100%;
    background: linear-gradient(to right, #FF5F00, #ff914d);
    color: white;
    font-weight: 700;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.construction-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* --- BOTÃO FECHAR (X) --- */
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
}

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