@charset "utf-8";

    /* Paleta de Cores Adabi Digital */
        :root {
            --azul-escuro: #003087;
            --azul-claro: #00AEEF;
            --cinza: #666666;
            --fundo-claro: #F8F9FA;
            --branco: #FFFFFF;
            --verde-cta: #25D366;
        }

        /* Proteção contra download e seleção de imagens */
        img {
            -webkit-user-drag: none; /* Impede arrastar no Google Chrome/Safari */
            user-select: none;       /* Impede que a imagem seja selecionada */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--fundo-claro);
            color: #333;
            line-height: 1.6;
        }
      
        /* Botões */
        .cta-btn {
            display: inline-block;
            background-color: var(--verde-cta);
            color: var(--branco);
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 5px;
            transition: background 0.3s;
            text-align: center;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .cta-btn:hover {
            background-color: #1EBE55;
            transform: translateY(-2px);
        }

/* 1. CONFIGURAÇÕES DO TOPO (IMAGEM topo_c.png) */
.hero-dark {
    /*background-image: url('../img/topo_d.webp');*/
    background-image: url('../img/topo-sem-logo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    aspect-ratio: 1920 / 700;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative; /* ESSENCIAL: Segura a faixa transparente no topo */
}

        /* 2. NOVA FAIXA TRANSPARENTE PARA A LOGO */
        .faixa-topo-transparente {
            position: absolute; /* Fixa a faixa lá em cima sem mexer no texto */
            top: 0;
            left: 0;
            width: 100%;
            padding: 0 0; /* Dá um respiro do teto e das laterais */
            background: transparent; /* Garante que não tenha cor de fundo */
            display: flex;
            justify-content: flex-start; /* Mantém a logo no MEIO. Se quiser na ESQUERDA, troque para 'flex-start' */
            z-index: 10; /* Garante que fique por cima de tudo */
        }

        .logo-faixa-transparente {
            max-width: 160px;
            margin-left: 175px;
            margin-top: -15px;
            height: auto;
            -webkit-user-drag: none; /* Proteção contra cópia */
            user-select: none;
        }

        /* 3. MANUTENÇÃO DO TEXTO CENTRAL (Continue como estava) */
        .hero-conteudo-central {
            max-width: 600px;
            z-index: 2;
            margin-top: 100px;
        }

        .hero-conteudo-central h1 { line-height: 1.2; margin-bottom: 25px; }
        .hero-conteudo-central .texto-pequeno { display: block; font-size: 1.5rem; color: #E0E0E0; font-weight: 600; margin-bottom: 10px; }
        .hero-conteudo-central .texto-grande { display: block; font-size: 3rem; color: #FFFFFF; font-weight: 900; }
        .hero-conteudo-central .destaque-ciano { color: #00AEEF; }
        .hero-conteudo-central p { font-size: 1.2rem; margin-bottom: 40px; color: #FFFFFF; font-weight: 500; }

        /* 4. RESPONSIVIDADE (CELULAR) */
        @media screen and (max-width: 768px) {
            .hero-dark {
                aspect-ratio: auto;
                min-height: 70vh;
                padding: 100px 15px 40px 15px; /* Mais espaço no topo para o texto não bater na logo */
            }
            .faixa-topo-transparente {
                padding: 0 0;
                justify-content: center; /* No celular, é melhor forçar a logo no meio */
            }
            .logo-faixa-transparente {
                max-width: 180px; /* Logo diminui um pouco no celular */
                margin-left: 0;
                margin-top: -15px;
            }
            .hero-conteudo-central {
                margin-top: 60px; /* Dá um respiro adequado apenas na tela pequena */
            }
            .hero-conteudo-central .texto-pequeno { font-size: 1.2rem; }
            .hero-conteudo-central .texto-grande { font-size: 2.2rem; }
            .hero-conteudo-central p { font-size: 1.1rem; }
        }

        /* Dores */
        .dores {
            padding: 60px 20px;
            background-color: var(--branco);
            text-align: center;
        }

        .dores h2 {
            color: var(--azul-escuro);
            margin-bottom: 40px;
            font-size: 2rem;
        }

        .lista-dores {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .dor-item {
            background-color: var(--fundo-claro);
            border-left: 4px solid var(--azul-claro);
            padding: 25px;
            width: 300px;
            text-align: left;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        /* Serviços Melhorados (Estilo Otávio Perez com Ícones) */
        .servicos {
            padding: 80px 20px;
            background-color: var(--fundo-claro);
            text-align: center;
        }

        .servicos h2 {
            color: var(--azul-escuro);
            margin-bottom: 50px;
            font-size: 2.2rem;
        }

        .cards-servicos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .card {
            background-color: var(--branco);
            padding: 40px 30px;
            width: 340px;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            border-top: 5px solid var(--azul-claro);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        /* Estilização dos Ícones dentro dos cards */
        .icones-plataformas {
            font-size: 2.5rem;
            color: var(--azul-escuro);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .icones-plataformas i.fa-google { color: #DB4437; }
        .icones-plataformas i.fa-youtube { color: #FF0000; }
        .icones-plataformas i.fa-facebook { color: #1877F2; }
        .icones-plataformas i.fa-instagram { color: #E4405F; }
        .icones-plataformas i.fa-whatsapp { color: #25D366; }
        .icones-plataformas i.fa-store { color: #4285F4; }

        .card h3 {
            color: var(--azul-escuro);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .card p {
            color: var(--cinza);
            font-size: 1rem;
        }

        /* Especialistas (Equipe) */
        .equipe {
            padding: 80px 20px;
            background-color: var(--branco);
            text-align: center;
        }

        .equipe h2 {
            color: var(--azul-escuro);
            margin-bottom: 50px;
            font-size: 2.2rem;
        }

        .cards-equipe {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .perfil {
            width: 380px;
            text-align: left;
            background: var(--fundo-claro);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        /* Configuração base para o formato redondo das fotos da equipe */
        .foto-perfil {
            width: 150px;
            height: 150px;
            background-color: #ddd;
            border-radius: 50%;
            margin: 0 auto 25px auto;
            border: 4px solid var(--azul-claro);
            
            /* Novas regras de segurança que inserem a imagem como fundo (background) */
            background-size: cover; /* Faz a foto preencher todo o círculo sem distorcer */
            background-position: center; /* Foca no centro da foto (rosto) */
            background-repeat: no-repeat;
        }

        /* Insere as imagens específicas de cada especialista e impede a cópia */
        .foto-andressa {
            background-image: url('../img/andressa.webp');
        }

        .foto-marcelo {
            background-image: url('../img/marcelo.webp');
        }

        .perfil h3 { color: var(--azul-escuro); text-align: center; margin-bottom: 5px; font-size: 1.5rem; }
        .perfil h4 { color: var(--cinza); text-align: center; font-weight: 500; font-size: 1rem; margin-bottom: 25px; }
        .perfil ul { list-style-type: none; }
        .perfil ul li { margin-bottom: 15px; font-size: 0.95rem; padding-left: 25px; position: relative; color: #444; }
        .perfil ul li::before { content: "✓"; color: var(--azul-claro); position: absolute; left: 0; font-weight: bold; font-size: 1.1rem; }

        /* Formulário de Contato */
        .contato {
            padding: 80px 20px;
            background-color: var(--azul-escuro);
            color: var(--branco);
            text-align: center;
        }

        .contato h2 { margin-bottom: 15px; font-size: 2.2rem; color: var(--branco); }
        .contato p { margin-bottom: 40px; font-size: 1.1rem; color: #E0E0E0; }

        .formulario {
            background: var(--branco);
            padding: 40px;
            max-width: 500px;
            margin: 0 auto;
            border-radius: 12px;
            color: #333;
            text-align: left;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .formulario label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--azul-escuro); }
        .formulario input, .formulario select { width: 100%; padding: 15px; margin-bottom: 25px; border: 1px solid #CCC; border-radius: 6px; font-size: 1rem; background-color: #FAFAFA; }
        .formulario input:focus, .formulario select:focus { outline: none; border-color: var(--azul-claro); }
        .formulario .cta-btn { width: 100%; font-size: 1.3rem; padding: 18px; }

        /* WhatsApp Flutuante */
        .whatsapp-flutuante {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--verde-cta);
            color: var(--branco);
            border-radius: 50px;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s;
            text-decoration: none;
        }
        .whatsapp-flutuante:hover { transform: scale(1.1); }

        /* Rodapé */
        footer { background-color: #111; color: #aaa; text-align: center; padding: 30px 20px; font-size: 0.9rem; }