body {
  height:100%;
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  
}
.container {
  display: flex; /* ativa o Flexbox */
  justify-content: space-around; /* controla o alinhamento horizontal */
  align-items: flex-start;  /* controla o alinhamento vertical */
  background-color: white;
  max-width: 100%;
  margin: 0 auto;
}


/*Cabeçalho*/
/* Esconde o menu por padrão */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 9999; 
}

/* Mostra o menu ao passar o mouse no item pai */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li b {
 font-style: normal;
}

/* Links do menu */
.dropdown-menu li a {
  display: flex;           /* permite ícone + texto na mesma linha */
  align-items: center;     
  padding: 8px 20px;
  color: #337AA6;
  text-decoration: none;
}

/* Efeito ao passar o mouse */
.dropdown-menu li a:hover {
  background-color: rgba(128, 128, 128, 0.405);
  color:green;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #337AA6;
  background-color: white;
  margin-right: 10px;
  height: 8.4vh;  
}
#logo img {
  width: 9%;
  display: block;
  /* remove o espaço em branco embaixo da imagem */
  margin-right:182px ;
}

ul{
  padding-top: 15px;
}

#flag1{
  padding-right:2vh;
  width: 29px;
  height: 31px;
  position: relative;
  top: -3px;
}

#flag2{
  padding-right:2vh;
  width: 25px;
}

#flag3{
  padding-right:2vh;
  width: 25px;
  height: 31px;
  position: relative;
  top: -3px;
}

#flag1:hover, #flag2:hover , #flag3:hover{
 transform: scale(1.2);
}
.item_nav {
  list-style: none;
  display: flex; 
}

.item_nav>li>a {
  padding-right: 10px;
  padding-left: 10px;
  color: green;
  text-decoration: none;
  font-size: 18px;
}

.letras:hover {
  background-color: rgba(128, 128, 128, 0.405);
  padding-bottom: 2.4vh;
  padding-top: 2.4vh ;  
}





/*Formulario Orçamento*/
.formulario{
  display: none;
  /* fica escondido */
  position: fixed;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  
  margin-left: 200px;
  border: 5px solid;
  width: 75vh;
  height: 95VH;
  background-image: url(../img/tronco.jpg);
  background-size: cover;
  color: aliceblue;
  padding-left:20px;
  padding-right:20px;
  z-index: 1000;
}

/*Login*/
#login{
  width: 190px;
  height: 290px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.767);
}

#cortina{
   display: none;
  /* fica escondido */
  position: fixed;
   backdrop-filter: blur(2px); /* DESFOQUE aplicado */
  background-color: rgba(0, 0, 0, 0.5);
  top: 0%;
  left: 0%;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}

#btn-reset{
  background-color: #eeeeeece;
  color: rgba(0, 0, 0, 0.793);
}
.btn,#btn-submeter{
  background-color: green;
  color: #eee;
  height: 35px;
  border-radius: 5px;
  margin-right: 5px;
}

#btn-fechar1,#btn-fechar2{
  background-color: #1D5273;
  color: #eee;
  height: 35px;
  border-radius: 5px;
  margin-right: 5px;
}

.bnt:hover{
   transform: scale(1.2);
}

#btn-fechar2:hover,
#btn-enter:hover,
#btn-fechar1:hover,
#btn-reset:hover,
#btn-submeter:hover {
   transform: scale(1.2);
}

#btn-enter{
  background-color: green;
  color: #eee;
  height: 35px;
  border-radius: 5px;
  margin-right: 5px;
}




/* SLIDES */
  body {
            margin: 0%;
            padding: 0%;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            /* Ocupa toda a largura da tela */
            height: 76.5vh;
            /* Ocupa toda a altura da tela */
            overflow: hidden;
            /* Esconde o que estiver fora do contêiner */
        }

       .carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform; /* 🚀 acelera a animação */
}
.slide {
  flex: 0 0 100vw;
  height: 100%;
  position: relative;
}


        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Faz a imagem cobrir toda a área sem distorcer */
        }

        .prev-btn,
        .next-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            /* Fundo semi-transparente */
            color: white;
            border: none;
            padding: 10px ;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
            /* Garante que os botões fiquem acima das imagens */
            border-radius: 5px;
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .carousel-nav-buttons {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
            /* Garante que os botões fiquem acima das imagens */
        }

        .nav-btn {
            padding: 0;
            /* Remove padding padrão do botão para que a imagem controle o tamanho */
            border: 2px solid transparent;
            /* Borda transparente para o estado normal */
            cursor: pointer;
            background-color: transparent;
            /* Fundo transparente */
            overflow: hidden;
            /* Garante que a imagem não saia do botão */
            display: flex;
            /* Para centralizar a imagem se necessário */
            justify-content: center;
            align-items: center;
        }

        /* Estilo para a imagem dentro do botão de navegação */
        .nav-btn img {
            width: 10vh;
            /* <--- AQUI VOCÊ CONTROLA A LARGURA DA MINIATURA */
            height: 6.7vh;
            /* <--- AQUI VOCÊ CONTROLA A ALTURA DA MINIATURA */
            object-fit: cover;
            /* Faz a imagem cobrir a área sem distorcer */
            display: block;
            /* Remove espaços extras abaixo da imagem */
        }

        /* Estilo para o botão ativo */
        .nav-btn.active {
            transform: scale(1.25);
            border: 0.65vh solid rgba(0, 0, 0, 0.721);
            border-radius: 0.3vh;
        }

        /* texto */
        /* Adicione esta classe ao seu arquivo CSS */
        .slide-text {
            position: absolute;
            bottom: 20%;
            /* Distância da parte de baixo do slide */
            left: 5%;
            /* Distância da parte esquerda do slide */
            color: white;
            /* Cor do texto */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            /* Adiciona uma sombra para destacar o texto */
            z-index: 5;
            /* Garante que o texto fique acima da imagem */
            max-width: 80%;
            /* Evita que o texto se espalhe muito */
            text-align: left;
            /* Alinhamento do texto */
        }

        .slide-text h3 {
            font-size: 2.5rem;
            /* Tamanho da fonte para o título */
            margin-bottom: 5px;
            /* Espaço entre o título e o parágrafo */
        }

        .slide-text p {
            font-size: 1.2rem;
            /* Tamanho da fonte para o parágrafo */
            line-height: 1.4;
            /* Espaçamento entre as linhas */
        }

/* Footer */
.rodape{
  background-color:white;
  color: green; 
  width: 100%;
  height: 12.2vh;

  display: flex; 
  align-items: center;        /* alinha verticalmente */
  justify-content: space-around;    /* centraliza horizontalmente */
  gap: 15px;                  /* espaço entre imagem e texto */
  text-align: center;
}
#imgbi{
  width: 20vh;
}

#imgast{
  margin-top: 1vh; 
  width: 10vh;
}
#vissao{
  margin: 0%;
  padding: 0%;
  font-family: "Radley", serif;
  font-size: 60px;
}