
        /* ================= Reset e Variáveis ================= */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
        :root { --primary-color: #2E7D32; --secondary-color: #4CAF50; --text-color: #333; --bg-color: #ffffff; --hover-bg: #f5f5f5; }
        body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

        
        
    @media screen and (max-width:1920px) and (orientation: landscape) {
	 
	 
	 @viewport{
    zoom: 0.0;
    width: device-width;
	
	 }

        


	 header2{
	display:none;
	}
    
   
    
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

  .main-header {
  top:0;
  position: fixed;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
  z-index: 999;
  transition: all 0.4s ease; 	
    
}

 .main-header.mudar {
  top:0;
  position: fixed;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
  z-index: 999;
  transition: all 0.4s ease; 	
    
}

 /* Header */
/* Ajuste na Top Bar para acomodar tudo */
.top-bar {
height:64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
     transition: all 0.4s ease; 	
    flex-wrap: nowrap; /* Garante que fiquem na mesma linha */
    
}

.top-bar.mudar {
height:44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
     transition: all 0.4s ease; 	
    flex-wrap: nowrap; /* Garante que fiquem na mesma linha */
    
}

/* Estilização do Novo Menu */
.secondary-nav ul {
    display: flex;
    list-style: none;
    gap: 15px; /* Espaço entre os 9 itens */
    margin: 0;
    padding: 0;
    
}

.secondary-nav li a {
    color: #444; /* Cor mais suave para não competir com o menu principal */
    text-decoration: none;
    font-size: 13px; /* Tamanho levemente menor para caber tudo */
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Reaplicando sua animação favorita */
.secondary-nav li a:hover {
    color: #008b45; /* Muda para o verde da marca */
    transform: translateY(-2px);
}

.secondary-nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #008b45;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
}

.secondary-nav li a:hover::after {
    width: 100%;
}



.contact-info{
margin-top: 5px;

}

/* Ajuste no Logotipo para não ficar apertado */
.logo {
margin-top: 4px;
    max-height: 54px;
    width: 207px;
    height: auto;
       transition: all 0.4s ease; 
}

.logo.mudar {
   margin-top: 7px;
    width: 140px;
    height: auto;
       transition: all 0.4s ease; 
}
.main-nav {
height: 37px;
    background-color: #4f2135;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Sombra leve para dar profundidade */
      transition: all 0.4s ease; 
}

.main-nav.mudar {
height: 35px;
    background-color: #4f2135;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Sombra leve para dar profundidade */
      transition: all 0.4s ease; 
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center; /* Centraliza os itens */
    gap: 30px; /* Espaçamento entre os links */
    padding: 0;
}

/* Estilo Base dos Links */
.main-nav li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 10px;
    display: inline-block;
    position: relative; /* Necessário para posicionar a linha animada */
    transition: all 0.3s ease; /* Transição suave para todas as propriedades */
}

/* Efeito 1: O link sobe levemente e muda de cor */
.main-nav li a:hover {
    color: #f1e49b; /* Verde claro ao passar o mouse */
    transform: translateY(-3px); /* Sobe 3 pixels */
}

/* Efeito 2: A linha que "corre" por baixo (Pseudo-elemento) */
.main-nav li a::after {
    content: '';
    position: absolute;
    width: 0; /* Começa com largura zero */
    height: 2px;
    bottom: 10px;
    left: 50%;
    background-color: #f1e49b; /* Verde vibrante para o destaque */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animação com "bounce" */
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Faz a linha crescer ao passar o mouse */
.main-nav li a:hover::after {
    width: 70%; /* A linha ocupa 70% da largura do texto */
}
	 
	 
	
	 
 
	 
		 
}


@media screen and (max-width:960px) and (orientation: portrait){ 


 .main-header{
	display:none;
	}
        /* ================= Navbar Principal ================= */
      header2 {height:60px; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: var(--bg-color); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); text-decoration: none; display: flex; align-items: center; gap: 10px; }

        /* ================= Menu Desktop ================= */
        .nav-menu { display: flex; list-style: none; align-items: center; gap: 1.5rem; }
        .nav-link { text-decoration: none; color: var(--text-color); font-weight: 500; font-size: 1rem; transition: color 0.3s ease; }
        .nav-link:hover { color: var(--secondary-color); }

        /* Dropdown Desktop */
        .dropdown { position: relative; }
        .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--bg-color); box-shadow: 0 4px 15px rgba(0,0,0,0.1); list-style: none; min-width: 220px; border-radius: 8px; overflow: hidden; padding: 0.5rem 0; }
        .dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li a { display: block; padding: 0.8rem 1.5rem; color: var(--text-color); text-decoration: none; transition: background 0.3s; }
        .dropdown-menu li a:hover { background-color: var(--hover-bg); color: var(--primary-color); }

        /* ================= Menu Mobile (Hambúrguer) ================= */
        .hamburger { display: none; cursor: pointer; border: none; background: transparent; }
        .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--text-color); border-radius: 2px; }

        /* ================= Responsividade ================= */
        @media (max-width: 992px) {
            .hamburger { display: block; z-index: 1001; }
            .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
            .nav-menu { position: fixed; left: -100%; top: 0; gap: 0; flex-direction: column; background-color: var(--bg-color); width: 80%; max-width: 400px; height: 100vh; padding-top: 5rem; box-shadow: 2px 0 15px rgba(0,0,0,0.1); transition: left 0.4s ease; align-items: flex-start; overflow-y: auto; }
            .nav-menu.active { left: 0; }
            .nav-item { width: 100%; border-bottom: 1px solid #eee; }
            .nav-link { display: block; padding: 1rem 2rem; width: 100%; }
            .dropdown-menu { position: static; box-shadow: none; border-radius: 0; background-color: var(--hover-bg); display: none; padding: 0; }
            .dropdown.active .dropdown-menu { display: block; }
            .dropdown-menu li a { padding: 1rem 2rem 1rem 3rem; border-bottom: 1px solid #e0e0e0; }
            .dropdown-toggle::after { content: ' \25BC'; font-size: 0.8rem; float: right; }
        
        }
   
    