/*
Theme Name: Fuller Theme
Author:  Lucas Fulano & DbLink
E-mail : lucasalbertofulano@gmail.com
Author URI: hhttps://github.com/waplaf
Description: Template customizado com navegação moderna
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: Fuller Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #0866ff;
    --color-dark: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-dark);
    color: #fff;
    overflow-x: hidden;
}

/* Estilos da navegação */
.nav-transition {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay {
    transition: opacity 0.3s ease;
}

/* Campo de pesquisa */
#searchInput {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    width: 0;
}

#searchInput.active {
    opacity: 1;
    width: 200px;
    padding: 8px 12px;
}

/* Remover estilos padrão do WordPress dos menus */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: inherit;
}

/* Logo customizado */
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.custom-logo {
    height: 1.25rem;
    width: auto;
}

@media (min-width: 768px) {
    .custom-logo {
        height: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Menu items mobile */
.mobile-menu-item a {
    display: block;
    padding: 0.75rem 1rem;
    color: #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-menu-item a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Prevenir scroll horizontal */
body {
    overflow-x: hidden;
}

/* Espaçamento para conteúdo abaixo do header fixo */
main {
    padding-top: 80px;
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* Acessibilidade */
a:focus,
button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* WordPress Admin Bar Fix */
body.admin-bar #navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #navbar {
        top: 46px;
    }
}