
/* ==========================================================================
   1. RESET E PADRÕES DO SITE (Home / Página Inicial)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #000000, #121212);
    min-height: 100vh; 
    color: #ffffff;
    font-family: 'Satoshi', sans-serif; 
    display: flex;
    flex-direction: column; /* Garante o encaixe perfeito do rodapé embaixo */
}

/* ==========================================================================
   2. CABEÇALHO OFICIAL ATUALIZADO (LOGO + ÍCONES + MENU)
   ========================================================================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Agrupa a palavra CS BPO e os ícones de lado */
.bloco-logo-redes {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff; 
    letter-spacing: -0.5px;
}

/* Caixa com os mini ícones interativos */
.icones-cabecalho {
    display: flex;
    align-items: center;
    gap: 15px; 
    border-left: 1px solid rgba(255, 255, 255, 0.15); 
    padding-left: 15px;
}

.link-icone-topo {
    color: rgba(255, 255, 255, 0.6); 
    font-size: 16px; 
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.link-icone-topo:hover {
    transform: translateY(-1px);
}

.link-icone-topo.topo-whats:hover { color: #25d366; }
.link-icone-topo.topo-insta:hover { color: #e6683c; }
.link-icone-topo.topo-face:hover { color: #1877f2; }

/* Links de Navegação do Menu */
.navigation a {
    color: #ffffff; 
    text-decoration: none;
    margin-left: 24px;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.navigation a:hover {
    opacity: 0.6;
}

/* ==========================================================================
   3. SEÇÃO HERO PRINCIPAL (TEXTO E DASHBOARD 3D)
   ========================================================================== */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto; 
    gap: 40px;
    flex: 1; /* Permite expandir e empurrar o footer se necessário */
} 

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #0070f3; /* Seu azul de destaque oficial */
}

.hero-text p {
    font-size: 18px;
    color: #a0a0a0; 
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background-color: #e5e5e5;
}

.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; 
}

/* Painel do Dashboard com Efeito 3D */
.dashboard-card {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(135deg, #16161a, #0b0b0d);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: rotateY(-10deg) rotateX(10deg); 
    transition: transform 0.5s ease;
}

.dashboard-card:hover {
    transform: rotateY(-2deg) rotateX(5deg) translateY(-10px); 
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.db-title span {
    font-size: 13px;
    color: #88888c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.db-title h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: -1px;
}

.db-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

/* Gráfico de Barras */
.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 160px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
    width: 45px;
    height: var(--height); 
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-radius: 8px 8px 4px 4px;
    position: relative;
    display: flex;
    justify-content: center;
}

.chart-bar.active {
    background: linear-gradient(180deg, #0070f3, rgba(0, 112, 243, 0.2));
    box-shadow: 0 10px 25px rgba(0, 112, 243, 0.4);
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    font-size: 12px;
    color: #666666;
}

.chart-bar.active span {
    color: #0070f3;
    font-weight: 600;
}

.footer-stat small {
    font-size: 12px;
    color: #666666;
}

.footer-stat p {
    font-size: 14px;
    color: #e5e5e5;
    margin-top: 2px;
}

/* ==========================================================================
   4. ESTILO DO RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 30px 5%;
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: auto; 
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-content p {
    color: #66666c;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0; /* CORRIGIDO: Garante alinhamento perfeito do texto */
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
