/* CSS GERAL E VARIÁVEIS DE COR */
:root {
    --primary-color: #1c3e67; /* Azul escuro principal */
    --secondary-color: #2066a7; /* Azul secundário */
    --accent-color: #FFC107;   /* Amarelo/Dourado para destaque */
    --light-gray-color: #f4f7fc; /* Cinza claro para fundos de seção */
    --dark-gray-color: #333333; /* Cinza escuro para texto */
    --white-color: #ffffff;
    --gray-color: #797979;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-gray-color);
}

/* --- ESTILOS DO PRELOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color); /* Fundo azul principal */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
}

.preloader i {
    font-size: 4rem; /* Tamanho da engrenagem */
    color: var(--white-color); /* Cor branca */
    animation: spin 2s linear infinite; /* Animação de rotação */
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Animação de rotação para a engrenagem */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Efeito de Animação de Entrada */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Botão CTA Genérico */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 25px;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    width: 300px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
}

/* HEADER COM EFEITO DE SCROLL */
.header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
}
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.nav-menu { list-style: none; display: flex; }
.nav-item { margin-left: 30px; }
.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.4s ease;
}
.header.scrolled .nav-link {
    color: var(--primary-color);
}
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--accent-color); transition: width 0.3s ease; }
.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
    color: var(--accent-color);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color); /* Alterado para amarelo */
    transition: color 0.4s ease;
}
.header.scrolled .hamburger {
    color: var(--primary-color); /* Mantém amarelo no scroll */
}
.dropdown { 
    position: relative; 
    padding-bottom: 10px; /* 1. CRIA A "PONTE" INVISÍVEL */
}
.dropdown-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: var(--white-color); 
    list-style: none; 
    box-shadow: var(--box-shadow); 
    border-radius: var(--border-radius); 
    padding: 10px 0; 
    width: 250px; 
    /* margin-top: 10px; <-- 2. REMOVE O "BURACO" */
    opacity: 0; 
    transform: translateY(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease; 
}
.dropdown:hover .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
.dropdown-item a { display: block; padding: 10px 20px; text-decoration: none; color: var(--primary-color); transition: background-color 0.3s ease, color 0.3s ease; }
.dropdown-item a:hover { background-color: var(--accent-color); color: var(--white-color); }

/* HERO SECTION */
#hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(12, 42, 77, 0.8)), url("imgs/bg_hero.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-align: center;
    padding-top: 80px; /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* SOBRE SECTION */
#sobre {
    background-color: var(--white-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.sobre-itens {
    flex-direction: column;
    align-items:center;
    text-align: left;
}

.sobre-cta {
    margin-top: 50px;
    align-items: left;
}

.sobre-image img {
    width: 70%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sobre-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 20px;
}

/* SERVIÇOS SECTION */
#servicos {
    background-color: var(--light-gray-color);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.servico-card .icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.servico-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.servico-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.servico-card a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
}

/* NÚMEROS SECTION */
#numeros {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 60px 0;
}

#numeros .container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
        gap: 30px;
}

.numero-item h3 {
    font-size: 3rem;
    font-weight: 700;
}

.numero-item p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* DEPOIMENTOS SECTION */
#depoimentos {
    background-color: var(--white-color);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background-color: var(--light-gray-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.depoimento-card p:first-of-type {
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Estilos da Seção de Projetos --- */
.project-section {
    width: 100%;
    overflow: hidden; /* Garante que nada vaze da seção */
}

.project-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.project-container {
    display: flex;
    width: 100%;
    height: 500px; /* Altura fixa para os cards no desktop */
    margin: 0;
    padding: 0;
}

.project-card {
    /* --- Configuração de Flexbox para a expansão --- */
    flex: 1; /* Cada card começa com a mesma largura */
    
    /* --- Estilos Visuais --- */
    background-size: cover;
    background-position: center;
    position: relative; /* Essencial para posicionar o conteúdo interno */
    overflow: hidden; /* Esconde o que estiver fora do card */
    cursor: pointer;
    
    /* --- Animações --- */
    transition: flex 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.5s ease-in-out;
    
    /* --- Efeito Preto e Branco Inicial --- */
    filter: grayscale(100%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Escurece a imagem para o texto ser legível */
    transition: background-color 0.5s ease;
}

.project-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    z-index: 2; /* Garante que o conteúdo fique acima do overlay */
    transition: all 0.5s ease;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.project-title {
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.project-description {
    font-size: 1rem;
    margin-top: 15px;
    max-height: 0; /* Começa escondida */
    opacity: 0; /* Começa invisível */
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out 0.2s; /* Transição suave */
}

/* --- ESTADO ATIVO/HOVER --- */

.project-card.project-active {
    flex: 2; /* O card ativo fica 2 vezes maior */
    filter: grayscale(0%); /* Remove o filtro P&B para ficar colorido */
}

.project-card.project-active .project-overlay {
    background-color: rgba(0, 0, 0, 0.3); /* Overlay fica mais sutil no card ativo */
}

.project-card.project-active .project-description {
    max-height: 100px; /* Espaço máximo para a descrição aparecer */
    opacity: 1; /* Descrição fica visível */
}

/* CONTATO SECTION */
#contato {
    background-color: var(--white-color);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contato-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contato-list {
    margin-top: 30px;
}

.contato-item .icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: var(--border-radius);
}

/* FOOTER APRIMORADO */
footer {
    background-color: var(--primary-color);
    color: #a9b3c9;
}

.main-footer {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
}

.footer-col .footer-main-logo {
    height: 85px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col > p {
    font-size: 0.95rem;
    line-height: 1.8;
    align-items: center;
}

.footer-col h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--accent-color);
    height: 2px;
    width: 45px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    text-decoration: none;
    color: #a9b3c9;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-col .contact-item-footer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-col .contact-item-footer p {
    margin: 0;
}

.footer-col .contact-item-footer i {
    margin-right: 15px;
    color: var(--accent-color);
    margin-top: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #08203e;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-logo {
    height: 55px;
    margin-right: 40px;
    opacity: 0.8;   
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 999;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}

.link-sem-estilo {
  text-decoration: none;
  color: inherit; /* Herda a cor do elemento pai */
}

.nav-item-close {
    display: none;
}


/* --- SEÇÃO CLIENTES --- */
#clientes {
    background-color: var(--white-color);
    padding: 60px 0;
}

.client-swiper {
    width: 100%; /* Garante que o container do swiper ocupe 100% do seu pai (.container) */
    height: auto;
    padding: 0px 0;
    overflow: hidden; /* <--- ESSENCIAL: Esconde qualquer conteúdo que exceda a largura */
}

/* Ajuste para o último carrossel para não ter margin-bottom desnecessário */
.client-swiper:last-of-type {
    margin-bottom: 0;
}


.client-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    
    /* Importante para 'slidesPerView: auto' */
    /* Define uma largura base para cada slide. Ajuste conforme o tamanho ideal dos seus logos. */
    /* Isso ajuda o Swiper a calcular e a manter os slides dentro do container */
    width: 180px; /* <--- NOVA LINHA: Largura fixa para cada slide. */
    flex-shrink: 0; /* Impede que os slides diminuam de tamanho */
    /* Remove min-width se você tiver, pois width já define */
}

.client-logo-wrapper img {
    max-width: 180px;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0.8;
}

.client-logo-wrapper img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- SEÇÃO MISSÃO, VISÃO E VALORES --- */
#valores {
    background-color: var(--light-gray-color); /* Um fundo sutil para a seção */
    padding: 80px 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 colunas em telas grandes, ajusta para menos em menores */
    gap: 30px; /* Espaçamento entre os cards */
    max-width: 1200px; /* Garante que não estique demais em telas ultra-largas */
    margin: 0 auto; /* Centraliza o grid */
}

.valores-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Para centralizar conteúdo verticalmente se necessário */
    flex-direction: column;
    justify-content: flex-start; /* Alinha o conteúdo ao topo do card */
    align-items: center;
}

.valores-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.valores-card .icon-wrapper {
    font-size: 3.5rem; /* Tamanho do ícone */
    color: var(--accent-color); /* Cor do ícone */
    margin-bottom: 20px;
    height: 70px; /* Altura fixa para os ícones */
    display: flex;
    justify-content: center;
    align-items: center;
}

.valores-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.valores-card p {
    font-size: 1rem;
    color: var(--dark-gray-color);
    line-height: 1.7;
    margin-bottom: 0; /* Para o parágrafo da Missão/Visão */
}

.valores-card ul {
    list-style: none; /* Remove marcadores de lista padrão */
    text-align: left; /* Alinha os itens da lista à esquerda */
    width: 100%; /* Ocupa a largura total do card */
    padding: 0 15px; /* Adiciona padding lateral para a lista */
    margin-top: 10px;
}

.valores-card ul li {
    font-size: 1rem;
    color: var(--dark-gray-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.valores-card ul li:last-child {
    margin-bottom: 0;
}

.valores-card ul li i {
    color: var(--secondary-color); /* Cor do ícone de check */
    margin-right: 10px;
    font-size: 1.1rem;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */
@media (max-width: 992px) {

    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .sobre-image {
        margin-bottom: 30px;
        text-align: center;
    }

    .sobre-image img {
        max-width: 80%;
    }
    
    #numeros .container {
        grid-template-columns: 1fr 1fr;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    #hero {
        height: 65vh; /* Altura reduzida para telas menores */
        padding: 0 20px; /* Pequeno padding lateral */
    }

    .hero-content {
        gap: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
        max-width: 200;
        margin: 0;
    }

    .hero-content h3 {
        font-size: 4rem;
    }

    .hero-content p {
        font-weight: 1000;
        margin-top: -30px;
    }

    section {
        padding: 60px 0;
    }
    
    .hamburger {
        display: block;
    }

    #contato {
        padding-top: 0px; 
    }

    .nav-menu {
        position: fixed;
        right: -100%; /* Inicia fora da tela, à direita */
        left: auto;   /* Garante que a propriedade 'left' não interfira */
        top: 0;
        flex-direction: column;
        background-color: var(--primary-color); /* Fundo igual ao header com scroll */
        width: 100%;
        height: 100vh; /* Ocupa a altura total da tela */
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 100px; /* Espaço no topo para os links não cobrirem o logo */
        overflow-y: auto; /* Permite scroll se houver muitos itens */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 20px 0;
    }
    
    .dropdown-menu {
        position: static;
        display: block;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        transform: none;
        background-color: transparent; /* Fundo transparente para unificar */
        padding-top: 15px; /* Adiciona um respiro */
    }

    /* ADICIONE ESTA REGRA para os links principais ficarem brancos */
    .nav-menu .nav-link {
        color: var(--white-color);
    }

    /* ADICIONE ESTA REGRA para os links do submenu também ficarem brancos */
    .nav-menu .dropdown-item a {
        color: #c7d0e3; /* Um branco um pouco mais suave para diferenciar */
        padding: 12px 20px;
    }
    .nav-menu .dropdown-item a:hover {
        color: var(--white-color); /* Cor ao passar o mouse */
        background-color: var(--secondary-color);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .sobre-cta {
        align-items: center;
        text-align: center;
    }

    .sobre-text h3 {
        font-size: 2rem;
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .sobre-text p {
        margin-bottom: 20px;
        text-align: center;
    }

    /* --- REGRAS DA SEÇÃO PROJETOS PARA MOBILE --- */
    .project-container {
        flex-direction: column; /* Empilha os cards verticalmente */
    }

    .project-card {
        height: 300px; /* Altura do card fechado no mobile */
        transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease-in-out;
    }

    .project-card.project-active {
        height: 300px; /* O card ativo expande a altura, empurrando o conteúdo para baixo */
    }

    .project-content {
        text-align: left; /* Alinhamento à esquerda no mobile */
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 20px; /* Adiciona um espaçamento nas laterais */
        width: 100%;
        box-sizing: border-box;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-top: 20px;
    }
    .valores-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .valores-card {
        padding: 25px;
    }
    .valores-card h3 {
        font-size: 1.6rem;
    }
    .valores-card .icon-wrapper {
        font-size: 3rem;
        height: 60px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 25px;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.7rem;
    }

    .footer-bottom-logo {
        height: 55px;
        margin-right: 40px;
        opacity: 0.8;   
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .client-logo-wrapper {
        height: 100px;
    }
    .client-logo-wrapper img {
        max-width: 120px;
        max-height: 80px;
    }
    #valores {
        padding: 60px 0;
    }
    .valores-card h3 {
        font-size: 1.4rem;
    }
    .valores-card p, .valores-card ul li {
        font-size: 0.9rem;
    }
    .valores-card ul {
        padding: 0 10px;
    }

    #numeros .container {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    /* Estilo para o botão de fechar o menu */
    .close-menu-btn {
        position: absolute;
        top: 20px;
        right: 25px;
        background: none;
        border: none;
        color: var(--white-color); /* Cor branca para contrastar com o fundo */
        font-size: 2.5rem;   /* Tamanho grande para ser fácil de tocar */
        font-weight: 300;
        cursor: pointer;
        line-height: 1;
        padding: 0;
    }

    /* Evita que o item de lista do botão ocupe espaço desnecessário */
    .nav-item-close {
        list-style: none;
        display: block;
    }
}

