/*
Theme Name: WallasCruz
Theme URI: https://wallascruz.com/
Author: Seu Nome
Author URI: https://wallascruz.com/
Description: Tema personalizado para o site WallasCruz.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.2
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: wallascruz
Tags: custom-theme, blog, portfolio
*/

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    width: 100%;
    overflow-x: hidden;
}

/* Garantir que não haja bordas brancas em nenhuma tela */
@media (max-width: 768px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }
} 


            .site-header {
            background: #000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }
        .header-logo {
            display: flex;
            align-items: center;
        }
        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }
        .navbar-desktop {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .navbar-desktop a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.2s;
            position: relative;
        }
        .navbar-desktop a:hover {
            color: #a78bfa;
        }
        .navbar-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #a78bfa;
            transition: width 0.2s;
        }
        .navbar-desktop a:hover::after {
            width: 100%;
        }
        .btn-contato {
            background: linear-gradient(135deg, #6d28d9, #a78bfa);
            color: #fff !important;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        .btn-contato:hover {
            background: linear-gradient(135deg, #a78bfa, #6d28d9);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px #6d28d955;
        }
        .btn-contato::after {
            display: none;
        }
        
        /* Dropdown Menu Desktop */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }
        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.2s;
        }
        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #000;
            border: 1px solid #23234a;
            border-radius: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            margin-top: 0.5rem;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid #23234a;
            transition: all 0.2s;
        }
        .dropdown-menu a:last-child {
            border-bottom: none;
        }
        .dropdown-menu a:hover {
            background: #23234a;
            color: #a78bfa;
        }
        .dropdown-menu a::after {
            display: none;
        }
        
        /* Menu Mobile */
        .navbar-mobile {
            display: none;
        }
        .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* Menu Lateral Mobile */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100%;
            background: #000;
            z-index: 1002;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            border-left: 1px solid #23234a;
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 1.5rem 1rem 1.5rem;
            border-bottom: 1px solid #23234a;
        }
        .mobile-logo {
            height: 35px;
            width: auto;
        }
        .menu-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }
        .menu-close:hover {
            background: #23234a;
        }
        .mobile-nav {
            flex: 1;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 1rem 0;
            border-bottom: 1px solid #23234a;
            transition: color 0.2s;
        }
        .mobile-nav a:hover {
            color: #a78bfa;
        }
        
        /* Dropdown Menu Mobile */
        .mobile-dropdown {
            position: relative;
            margin-bottom: 0.5rem;
        }
        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        .mobile-dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown.active .mobile-dropdown-arrow {
            transform: rotate(180deg);
        }
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #111;
            margin: 0.5rem 0;
            border-radius: 8px;
            opacity: 0;
            transform: translateY(-10px);
        }
        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 300px;
            opacity: 1;
            transform: translateY(0);
        }
        .mobile-dropdown-menu a {
            padding: 0.75rem 1.5rem;
            border-bottom: 1px solid #23234a;
            font-size: 1rem;
            display: block;
            position: relative;
            z-index: 1;
        }
        .mobile-dropdown-menu a:last-child {
            border-bottom: none;
        }
        .mobile-dropdown-menu a:hover {
            background: #23234a;
        }
        
        .mobile-btn-contato {
            background: linear-gradient(135deg, #6d28d9, #a78bfa);
            color: #fff !important;
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            font-weight: 600;
            text-align: center;
            margin-top: 1rem;
            border: none;
        }
        .mobile-menu-footer {
            padding: 1.5rem;
            border-top: 1px solid #23234a;
        }
        .mobile-contact {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .mobile-contact a {
            color: #e0e7ff;
            text-decoration: none;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s;
        }
        .mobile-contact a:hover {
            color: #a78bfa;
        }
        
        @media (max-width: 900px) {
            .navbar-desktop {
                display: none;
            }
            .navbar-mobile {
                display: block;
            }
            .header-inner {
                padding: 1rem 1.5rem;
            }
            .logo-img {
                height: 35px;
            }
        }
        @media (max-width: 600px) {
            .header-inner {
                padding: 1rem;
            }
            .logo-img {
                height: 30px;
            }
            .mobile-menu {
                width: 280px;
            }
        }
