/* === FONTES E RESET === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');

:root {
      --orange: #ff6b35;
}
/* =====================================================
    CABEÇALHO / NAVBAR
    ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-image: linear-gradient(to bottom, rgb(6, 15, 30), rgb(10, 22, 40));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar .logo-img {
    height: 64px;
    width: auto;
    display: block;
}

/* Links de navegação */
.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--orange);
}

/* Logo vertical */
.logo.vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.logo.vertical img {
    width: 45px;
    height: auto;
}

.logo.vertical span {
    font-weight: bold;
    font-size: 2rem;
    color: #f1f5f9;
    text-align: center;
}

/* Botão do menu mobile */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.icon-close {
    display: none;
}

/* =====================================================
    MENU MOBILE
    ===================================================== */
.mobile-menu {
    display: none;
    background-image: linear-gradient(to bottom, rgb(6, 15, 30), rgb(10, 22, 40));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 49;
    padding: 1rem 0;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
}

.mobile-menu.open {
    display: block;
}

.mobile-link {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.mobile-link.active {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--orange);
}


/* =====================================================
    RODAPÉ
    ===================================================== */
.footer {
    background-image: linear-gradient(to bottom, rgb(6, 15, 30), rgb(10, 22, 40));
    border-top: 1px solid rgba(202, 138, 4, 0.2);
    padding: 3rem 1.5rem;
    color: white;
}

.footer-container {
    max-width: 80rem;
    margin: 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-column .logo {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: white;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.logo {
    display: flex;
    gap: 0.6rem; /* espaço entre o ícone e o texto */
    text-decoration: none;
    color: whitesmoke;
}

.logo img {
    width: 60px; /* ajuste o tamanho conforme quiser */
    height: auto;
}

.logo:hover {
    color: orangered;
}

.footer-links a {
    color: white;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

/* CÓDIGO CORRIGIDO */
.footer-bottom {
    text-align: center;
    width: 100%;
    padding-top: 25px;
    font-size: 14px;
    border-top: 1px solid #333;
    margin-top: 1.3rem;
    margin-bottom: 0.rem;
}
/* FORÇAR CLIQUE (Adicione se os passos 1 e 2 não funcionarem) */
.footer-column .footer-links a {
    pointer-events: auto !important; /* Força os links a serem clicáveis */
    position: relative; /* Garante que não fiquem "atrás" de outros elementos */
    z-index: 1; /* Garante que fiquem "acima" */
}

/* =====================================================
    RESPONSIVIDADE
    ===================================================== */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .menu-toggle { display: none; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-contacts { align-items: center; }
    .footer-copyright { text-align: right; }
}