/* =========================================
   1. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    /* Paleta de Cores "Cyber Law" */
    --bg-dark: #0a0f1c;       /* Azul muito profundo (Fundo Principal) */
    --bg-card: #151b2b;       /* Azul um pouco mais claro (Cartões) */
    --primary-accent: #00d4ff; /* Ciano Neon (Destaques) */
    --secondary-accent: #4f46e5; /* Roxo/Azul Elétrico (Degradês) */
    
    /* Cores de Texto */
    --text-light: #f1f5f9;    /* Branco gelo */
    --text-dim: #94a3b8;      /* Cinza azulado (para textos longos) */
    
    /* Fontes */
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth; /* Rolagem suave ao clicar nos links */
}

body {
    font-family: var(--font-text);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

/* =========================================
   2. NAVBAR (MENU)
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(25, 38, 72, 0.8); /* Fundo semi-transparente */
    backdrop-filter: blur(10px);        /* Efeito de vidro */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: 'Courier New', monospace; /* Fonte estilo código */
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-accent);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

/* Botão de destaque no menu */
.btn-nav {
    border: 1px solid var(--primary-accent);
    padding: 6px 18px;
    border-radius: 4px;
    color: var(--primary-accent) !important;
}

.btn-nav:hover {
    background: var(--primary-accent);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Menu Burger (Mobile) */
.burger {
    display: none; /* Escondido no Desktop */
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px;
    transition: 0.3s;
}

/* =========================================
   3. HERO SECTION (CAPA)
   ========================================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 130px 5% 60px;
    min-height: 90vh;
    background: radial-gradient(circle at top right, #1a2542 0%, var(--bg-dark) 60%);
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-accent);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 3rem;
    margin: 25px 0;
    line-height: 1.1;
    /* Efeito de texto degradê */
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    max-width: 90%;
}

.btn-cta {
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Imagem Hero com efeito de luz atrás */
.hero-img {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}

.hero-img img {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    /* Se a foto for PNG sem fundo, remova o border-radius */
}

.tech-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-accent);
    filter: blur(100px); /* O brilho azul atrás da foto */
    opacity: 0.2;
    z-index: 1;
}

/* =========================================
   4. SEÇÃO: MERCADO DIGITAL
   ========================================= */
.section-dark {
    padding: 100px 5%;
    background-color: var(--bg-dark);
}

.section-dark .row {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    gap: 60px;
    flex-wrap: wrap;
}

.col-text { flex: 1; }
.col-visual { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.section-dark h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.tech-list {
    list-style: none;
    margin-top: 25px;
}

.tech-list li {
    margin-bottom: 15px;
    color: var(--text-dim);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-list i { color: var(--primary-accent); }

/* Caixa de vidro com estatística */
.glass-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 100%;       /* Ocupa a largura disponível */
    max-width: 350px;  /* Mas não passa de 350px */
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.glass-box i {
    font-size: 3rem;
    color: var(--secondary-accent);
    margin-bottom: 15px;
    display: block;
}

.glass-box span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.glass-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

/* =========================================
   5. SEÇÃO: ATUAÇÃO (CARDS)
   ========================================= */
.section-cards {
    padding: 100px 5%;
    background: #0d121f; /* Levemente diferente do fundo principal */
}

.section-cards h2 {
    text-align: center;
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle-center {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch; /* Garante que todos tenham a mesma altura */
}

.card {
    background: var(--bg-card);
    padding: 35px 25px;
    width: 320px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-accent);
    text-align: center;
}

.card h3 {
    font-family: var(--font-title);
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
}

/* Lista de serviços dentro do card */
.service-list {
    list-style: none;
    margin-top: 10px;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px; /* Espaço para o ícone customizado */
    line-height: 1.4;
    text-align: left;
}

/* O marcador "setinha" da lista */
.service-list li::before {
    content: '▹';
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* =========================================
   6. SEÇÃO: REDES SOCIAIS
   ========================================= */
.section-social {
    text-align: center;
    padding-bottom: 60px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    width: 320px;
    transition: 0.3s;
    text-align: left;
}

.social-card:hover {
    background: #1a2336;
    border-color: var(--primary-accent);
    transform: scale(1.02);
}

.social-card i { font-size: 2.2rem; }

.social-card .arrow {
    margin-left: auto; /* Empurra a seta para o final */
    font-size: 1rem !important;
    color: var(--text-dim);
}

.insta i { color: #E1306C; } /* Cor oficial Instagram */
.linkd i { color: #0077b5; } /* Cor oficial LinkedIn */
.tiktok i { color: #fe2c55; } /* Cor oficial TikTok (Rosa/Vermelho) */

.social-card h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.social-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* =========================================
   7. SEÇÃO: QUEM SOMOS
   ========================================= */
.section-tech {
    padding: 100px 5%;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

.section-tech h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-light);
}

.section-tech .subtitle {
    color: var(--primary-accent);
    font-family: 'Courier New', monospace;
    margin-bottom: 30px;
    font-weight: bold;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 1.1rem;
    text-align: center; /* Pode mudar para 'justify' se preferir blocos */
}
.text-content p { margin-bottom: 20px; }

/* =========================================
   8. FOOTER & CONTATO
   ========================================= */
footer {
    padding: 80px 5% 40px;
    text-align: center;
    background: #05080f; /* Quase preto */
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 10px;
}

footer p {
    color: var(--text-dim);
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-whatsapp-big, .btn-email {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-whatsapp-big {
    background: #25D366;
    color: #000;
}

.btn-whatsapp-big:hover {
    background: #1ebc57;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: transparent;
    border: 2px solid var(--text-dim);
    color: var(--text-light);
}

.btn-email:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

/* =========================================
   9. BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* =========================================
   10. RESPONSIVIDADE (CELULAR/TABLET)
   ========================================= */
@media screen and (max-width: 960px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-img { margin-bottom: 40px; }
    .tech-blob { width: 200px; height: 200px; }

    .section-dark .row {
        flex-direction: column;
        gap: 40px;
    }
    
    .glass-box { margin: 0 auto; }
}

@media screen and (max-width: 768px) {
    /* Menu Mobile */
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--bg-card);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%); /* Esconde menu na lateral */
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li { opacity: 0; } /* Animação */
    
    .burger { display: block; }

    /* Classe ativada via JS */
    .nav-active {
        transform: translateX(0%);
    }

    /* Animação dos itens do menu */
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    .nav-active li {
        animation: navLinkFade 0.5s ease forwards 0.3s;
        opacity: 1; 
    }

    .social-card { width: 100%; }
}
/* --- Ajuste da Logo de Imagem --- */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Define a altura da logo para não esticar o menu */
    width: auto;  /* Mantém a proporção correta */
    transition: 0.3s;
}

.logo img:hover {
    opacity: 0.8; /* Efeito leve ao passar o mouse */
}

/* Ajuste para celular, caso a logo seja muito larga */
@media screen and (max-width: 768px) {
    .logo img {
        height: 40px; /* Logo um pouco menor no celular */
    }
}

/* =========================================
   ATUALIZAÇÃO: QUEM SOMOS (LAYOUT LADO A LADO)
   ========================================= */

.section-tech {
    padding: 100px 5%;
    background: var(--bg-dark); /* Fundo escuro */
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about-row {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    gap: 60px; /* Espaço entre texto e foto */
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Coluna de Texto --- */
.about-text {
    flex: 1; /* Ocupa metade da tela */
    text-align: left; /* Alinhamento à esquerda solicitado */
}

.about-text h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.about-text .subtitle {
    color: var(--primary-accent);
    font-family: 'Courier New', monospace;
    margin-bottom: 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.oab-tag {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--font-text);
}

.content-body p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-body strong {
    color: var(--text-light);
}

.btn-text-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-text-link:hover {
    color: var(--secondary-accent);
    transform: translateX(5px);
}

/* --- Coluna de Imagem --- */
.about-img-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-wrapper {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3); /* Borda fina ciano */
    border-radius: 10px; /* Borda levemente arredondada ou 50% para redondo */
    background: rgba(255,255,255,0.02);
}

.img-wrapper img {
    width: 100%;
    max-width: 350px;
    border-radius: 5px; /* Acompanha a borda do wrapper */
    display: block;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.img-caption {
    margin-top: 20px;
    text-align: center;
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.4;
    padding-left: 15px;
}

.img-caption span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-family: var(--font-text);
    font-weight: 400;
}

/* --- Responsividade (Mobile) --- */
@media screen and (max-width: 960px) {
    .about-row {
        flex-direction: column-reverse; /* Foto em cima, texto embaixo no celular */
        text-align: center;
        gap: 40px;
    }

    .about-text { text-align: center; } /* Centraliza texto no mobile */
    
    .about-text .subtitle { 
        justify-content: center; 
        flex-direction: column; 
        gap: 5px;
    }
    
    .img-caption {
        padding-left: 0;
        padding-bottom: 10px;
    }
}

/* =========================================
   ATUALIZAÇÃO: HORÁRIOS NO RODAPÉ
   ========================================= */

.footer-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Bloco do Relógio */
.business-hours {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-clock {
    font-size: 1.5rem;
    color: var(--primary-accent);
}

.business-hours h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.business-hours p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0; /* Remove a margem padrão do p */
}

/* Status Online (Bolinha Verde) */
.online-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-status p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* Animação da Bolinha Pulsando */
.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #25D366; /* Verde WhatsApp/Online */
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
}

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

/* Ajuste Mobile */
@media screen and (max-width: 768px) {
    .business-hours {
        flex-direction: column;
        text-align: center;
    }
}