/*
Theme Name: Daccta Theme
Theme URI: https://daccta.com.br
Author: Daccta Tecnologia
Author URI: https://daccta.com.br
Description: Tema corporativo desenvolvido sob medida com TailwindCSS e WordPress.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daccta-theme
Tags: custom-background, custom-logo, custom-menu, featured-images
*/

/* ==========================================================================
   RESET & BASE (Importante para garantir que o Tailwind funcione bem)
   ========================================================================== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

/* ==========================================================================
   MENU DO RODAPÉ CUSTOMIZADO
   (As regras que você pediu para corrigir o menu do footer)
   ========================================================================== */

/* 1. Limpa a estrutura da lista */
.footer-wp-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Substitui o space-y-4 */
}

/* 2. Estilo dos Links (Cinza Padrão) */
.footer-wp-menu li a {
    display: block;
    text-decoration: none;
    color: #6b7280 !important; /* Cinza (text-gray-500 equivalent) */
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    transition: all 0.3s ease;
}

/* 3. O HOVER (Roxo e movendo para direita) */
.footer-wp-menu li a:hover {
    color: #9d4edd !important; /* ROXO DA DACCTA */
    padding-left: 6px;         /* Efeito de movimento */
}

/* ==========================================================================
   OUTROS AJUSTES GERAIS (SE PRECISAR)
   ========================================================================== */
/* Adicione outros CSS globais aqui se o Tailwind não cobrir */