@import url('variables.css');
@import url('reset.css');
@import url('layout.css');
@import url('components.css');
@import url('about.css');
@import url('servicos.css');
@import url('contato.css');
@import url('trabalheconosco.css');

/* Estilos globais finais */
body {
  background-color: var(--preto-profundo);
  color: var(--text-white);
  font-family: var(--font-main);
  padding: 2%;
}

/* Impede a seleção de texto em todo o site */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Padrão (Chrome, Opera, etc.) */
}

/* --- CONFIGURAÇÕES DO FOOTER --- */
.main-footer {
    background-color: var(--cinza-escuro);
    border-top: 1px solid rgba(255, 102, 0, 0.1); /* Brilho sutil laranja */
    padding: 60px 0 20px;
    margin-top: 80px;
    color: var(--text-white);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.pixel-highlight-laranja {
    color: var(--laranja-neon); /* Ou #ff6600 */
}

/* Ícones Sociais */
.trabalhe-ia {
    display: flex;
    gap: 25px;
}

.trabalhe-ia a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: 0.3s ease;
    opacity: 0.7;
}

.trabalhe-ia a:hover {
    color: var(--laranja-neon);
    opacity: 1;
    transform: translateY(-3px);
}

/* Barra de Status e Copyright */
.footer-bottom {
    width: 100%;
    max-width: 1000px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-info{
    width: 100%;
    max-width: 1000px;
    padding-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:1.0rem;
    opacity: 1.5;
    color: var(--laranja-neon);
}

/* Bolinha de Status Animada */
.status-dot {
    height: 8px;
    width: 8px;
    background-color: #39ff14; /* Verde Neon */
    border-radius: 50%;
    display: inline-block;
    margin-right: 2px;
    margin-left: 10px;
    box-shadow: 0 0 8px #39ff14;
    animation: pulse-green 2s infinite;
}

.bandeira {
    display: flex !important;
    flex-direction: row !important; /* ISSO garante que é linha, não coluna */
    justify-content: space-between; /* O seu original que você gosta */
    gap: 3px;
    margin-top: 8px;
    width: 40px; /* Coloque a largura exata de 2 bandeiras (20+20) */
}

.bandeira img {
    width: 20px !important;
    height: 20px !important;
    display: block; 
}

/* 1. O Botão flutuante */
#btnTop {
    /* Posicionamento fixo no "canto do relógio" */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;

    /* Tamanho e Formato */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Redondo para parecer um elemento de UI moderno */
    
    /* Cores da Pixel Forge */
    background-color: #000; /* Fundo preto metálico */
    color: #FF8C00; /* Laranja (cor do rosto do gato Pixel) */
    border: 2px solid #39FF14; /* Borda Verde Neon */
    
    /* Interação e Cursor */
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Sombra Neon (Glow) */
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    
    /* Escondido por padrão para o efeito de surgimento */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

/* 2. Efeito ao passar o mouse (Hover) */
#btnTop:hover {
    background-color: #39FF14; /* Inverte: fundo fica verde neon */
    color: #000; /* Ícone fica preto */
    transform: translateY(-5px) scale(1.1); /* Pula e cresce levemente */
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.7); /* Aumenta o brilho */
}

/* 3. Classe que o JavaScript vai ativar ao rolar a página */
#btnTop.visivel {
    opacity: 1;
    visibility: visible;
}

/* 4. Ajuste para o ícone (Font Awesome) */
#btnTop i {
    transition: transform 0.3s ease;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(57, 255, 20, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}