@charset "utf-8";
/* ==========================================================================
   1. ESTRUTURA DA NAVBAR E CONTAINERS
   ========================================================================== */
.navbar {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    position: relative;
    z-index: 100;
}
.navbar .nav-container {
    display: flex;
    justify-content: center; /* Centraliza o menu principal */
    align-items: center;
    position: relative;
    height: 100px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    margin-top: 20px;
}
.logo {
    position: absolute;
    left: 5%;
    display: flex;
    align-items: center;
}
.logo img {
    height: 89px;
    width: auto;
}
/* ==========================================================================
   2. LINKS DA NAVEGAÇÃO (MIOLO)
   ========================================================================== */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.nav-links > li {
    display: flex;
    align-items: center;
}
.nav-links > li > a {
    font-weight: 100;
    font-size: 1.4rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}
.nav-links > li > a:hover {
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.nav-links > li:not(:first-child)::before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 1px;
    background-color: #444;
    margin: 0 15px;
}
/* ==========================================================================
   3. SUBMENU (DROPDOWN)
   ========================================================================== */
.has-submenu {
    position: relative;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 20%;
    background: rgba(30, 30, 30, 0.95);
    display: none;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    text-align: left;
    z-index: 10;
    list-style: none;
}
.has-submenu:hover .submenu {
    display: block;
}
.submenu li a {
    padding: 10px 25px;
    display: block;
    font-size: 1.2rem;
    color: #ccc;
    text-transform: none;
    font-weight: 100;
    border-left: 3px solid transparent;
}
.submenu li a:hover {
    color: #fff;
    background: #333;
}
/* ==========================================================================
   4. SELETOR DE IDIOMA (PÍLULA) - CORRIGIDO COM DELAY
   ========================================================================== */
.lang-pill {
    position: absolute;
    right: 5%;
    background: #222;
    padding: 0 10px 0 6px;
    border-radius: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    z-index: 1002;
    cursor: pointer;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}
.lang-dropdown {
    position: absolute;
    top: 105%; /* Pequeno ajuste para aproximar a pílula */
    right: 0;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    min-width: 95px;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Troca de display:none por Opacidade + Delay */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.4s;
}
/* No hover, removemos o delay para aparecer na hora */
.lang-pill:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.lang-dropdown a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
}
.lang-dropdown a img {
    width: 29px;
}
.lang-dropdown a:hover {
    background: #333;
    color: #fff;
}
.lang-flag, .lang-chevron {
    width: 29px;
    height: 30px;
    display: block;
    object-fit: contain;
}
.lang-flag {
    border-radius: 50%;
}
.lang-chevron {
    width: 29px;
    opacity: 1;
}
/* ==========================================================================
   5. RODAPÉ
   ========================================================================== */
.site-footer {
    padding: 60px 20px 20px;
    text-align: center;
    color: #888;
}
.footer-line {
    border: 0;
    border-top: 1px solid #333;
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
}
.footer-copyright {
    font-size: 1.1rem;
    font-style: italic;
    margin-right: 3px;
    font-weight: 300;
}
/* ==========================================================================
   6. CLASSES DE ESTADO ATIVO
   ========================================================================== */
.active {
    color: #fff !important;
    font-weight: 400 !important;
    border-bottom: 2px solid #fff !important;
}
.sub-active {
    color: #fff !important;
    background: #333 !important;
    border-left: 3px solid #fff !important;
    padding-left: 22px !important;
}
.lang-active {
    background: #444 !important;
    font-weight: bold;
}
/* ==========================================================================
   7. RESPONSIVIDADE E OFFCANVAS
   ========================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 5%;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #111;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.offcanvas-menu.open {
    right: 0;
}
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1999;
    display: none;
}
.offcanvas-overlay.active {
    display: block;
}
.close-menu {
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}
.mobile-links {
    list-style: none;
    margin-top: 30px;
}
.mobile-links li {
    margin-bottom: 15px;
}
.mobile-links a, .mobile-parent span {
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
}
.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    border-left: 1px solid #333;
}
.mobile-submenu a {
    font-size: 1.2rem;
    color: #eee;
    text-transform: none;
}
.footer-nav-responsive {
    display: none;
}
@media (max-width: 900px) {
	.navbar .nav-container {

    margin-top: 0px;
}
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .lang-pill {
        right: 70px;
        height: 34px;
    }
    .lang-flag, .lang-chevron {
        width: 29px;
        height: 30px;
    }
    .lang-current .arrow-desktop {
        display: none;
    }
    .logo img {
        height: 45px;
    }
    .navbar .nav-container {
        height: 80px;
    }
    .footer-nav-responsive {
        display: block;
    }
	.site-footer {
    padding: 30px 20px 20px;

}
}
/* ==========================================================================
   CSS DEDICADO: NAV FOOTER MOBILE
   ========================================================================== */
.nav-footer-mobile {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px 0;
}
.mobile-menu-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.mobile-item-single, .mobile-item-parent {
    margin-bottom: 10px;
}
.mobile-item-single a, .mobile-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 100;
    color: #eee;
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    transition: color 0.3s ease;
}
.mobile-label {
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}
.mobile-submenu-open {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-submenu-open li {
    margin-bottom: 10px;
}
.mobile-submenu-open a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #888;
    text-decoration: none;
    font-weight: 100;
    transition: all 0.3s ease;
    display: inline-block;
}
.mobile-menu-vertical a:hover {
    color: #fff;
}
.mobile-item-parent {
    padding-top: 10px;
}


/* Ajuste fino para o link de desenvolvimento */
.footer-dev {
    margin-top: 10px;
    font-size: 0.85rem; /* Um pouco menor que o copyright principal */
    font-style: normal;
    font-weight: 200;
}

.footer-dev a {
    color: #555; /* Cinza sóbrio */
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif; /* Mantendo a tipografia do site */
}

.footer-dev a:hover {
    color: #fff; /* Fica branco suave no hover */
}