*{
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 119, 36) rgba(255, 166, 0, 0);
  }
  
  /* Works on Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    position: absolute;
    width: 1px;
  }
  
  *::-webkit-scrollbar-track {
    background: rgba(255, 166, 0, 0);
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: rgb(86, 32, 1);
    border-radius: 20px;
    border: 1px solid rgba(255, 166, 0, 0);
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: margin-top 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
}

header {
    background-color: #0b9b01fe;
    color: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 8px 16px #000000;
}

.center{
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding-left:0;
  align-items: center;
}

.social-contact-desktop {
  flex: 0 0 25%;
  font-size: 0.9em;
  margin-left: 0;
  padding-right: 20%;
}

.social-contact-desktop1 {
  display: flex;   
  flex: 0 0 20%;
  padding-left: 25%;
}

.social-contact-desktop a {
  margin-left: 10px; /* Ajuste conforme necessário */
}

.social-contact-desktop1 a {
  margin-left: 10px; /* Ajuste conforme necessário */
}

.quadrado{
  background-color: #0e512d62;
  border-radius: 10px;
  padding-top: 1px;
  padding-bottom: 3px;
}

.Btn {
  width: 65px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  z-index: 66;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.BG {
  position: absolute;
  content: "";
  width: 87.5%;
  height: 100%;
  background: #0e512d62;
  z-index: 1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.466);
  backdrop-filter: blur(4px);
}


/* Adicione essas regras de estilo para a versão mobile */

@media (max-width: 900px) {
  .social-contact-desktop, .social-contact-desktop1{
      display: none;
  }
  .center{
      justify-content: center;
  }
}

nav {
    display: flex;
    justify-content: center;
    background-color: #087900cc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
    border-radius: 10px;
}

nav a:hover {
    background-color: #076700;
}/* Adicione isso ao final do seu arquivo CSS */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #076700e5;
    box-shadow: 0 8px 8px rgba (0, 0, 0, 0.2);  
    z-index: 1;
    min-width: 190px; /* Largura mínima do dropdown */
    border-radius: 10px;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #173300; /* Linha de separação entre os itens */
}

.dropdown-content a:last-child {
    border-bottom: none; /* Remove a linha de separação do último item */
}

.dropdown-content a:hover {
    background-color: #0ed40098;
}

/* Adicione uma animação de fade-in ao dropdown */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.logo {
    margin-top: 0;
    transition: margin-top 0.5s;
    width: 160px;
}

.all{
    display: flex;
    align-items: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    background-color: #076a00ca;
    color: #fff;;
    padding: 45px;
    border-radius: 10px;
    position: relative;
    margin:5% 10% 0 2%;
  }

  @media (max-width: 500px) {
    .form {
        margin: 0;
      }  
  }
  
  .message {
    color: #355891;
    font-size: 14px;
  }
  
  .flex {
    display: flex;
    width: 90%;
    gap: 9px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 95%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid #000000;
    border-radius: 5px;
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: #000000;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }

  .input01 {
    width: 95%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid #000000;
    border-radius: 5px;
  }
  
  .form label .input01 + span {
    position: absolute;
    left: 10px;
    top: 50px;
    color: #000000;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input01:placeholder-shown + span {
    top: 40px;
    font-size: 0.9em;
  }
  
  .form label .input01:focus + span,.form label .input01:valid + span {
    top: 50px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input01:valid + span {
    color: green;
  }
  
  .fancy {

    background-color: white;
    border: 2px solid #000000;
    border-radius: 0px;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: flex;
    width: 101%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 390;
    letter-spacing: 5px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 8px 35px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
  }
  
  .fancy::before {
    content: " ";
    width: 1.7rem;
    height: 2px;
    background: #000000;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform: translateX(230%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
  }
  
  .fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: lowercase;
    text-decoration: none;
    color: #000000;
    transform: translateX(30%);
  }
  
  .fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #ffffff;
    transition: width 0.5s ease-out, left 0.3s ease-out;
  }
  
  .fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #ffffff;
    transition: width 0.5s ease-out, right 0.3s ease-out;
  }
  
  .fancy .bottom-key-2 {
    height: px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #355891;
    transition: width 0.5s ease-out, right 0.3s ease-out;
  }
  
  .fancy:hover {
    color: #ffffff;
    background: #076700e5;
    border-radius: 10px;
    border-color: rgb(15, 103, 0);
  }
  
  .fancy:hover::before {
    width: 1.5rem;
    background: #ffffff;
  }
  
  .fancy:hover .text {
    color: white;
    padding-left: 1.5em;
  }
  
  .fancy:hover .top-key {
    left: -2px;
    width: 0px;
  }
  
  .fancy:hover .bottom-key-1,
   .fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
  }


.mapa{
    position: relative;
    width: 100%;
    height: 70%;
    border-radius: 10px 10px 0 0px;
}

.page{
    margin-top: 2%;
    margin-right: 2%;
    background-color: #076a00ca;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55%;
    border-radius: 20px;
    color: white;
}

  .card {
    width: fit-content;
    height: fit-content;
    background-color: rgba(238, 238, 238, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    gap: 20px;
  }
  
  /* for all social containers*/
  .socialContainer {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
  }
  /* instagram*/
  .containerOne:hover {
    background-color: #d62976;
    transition-duration: .3s;
  }
  /* Whatsapp*/
  .containerFour:hover {
    background-color: #478c12;
    transition-duration: .3s;
  }
  
  .socialContainer:active {
    transform: scale(0.9);
    transition-duration: .3s;
  }
  
  .socialSvg {
    width: 17px;
  }
  
  .socialSvg path {
    fill: rgb(255, 255, 255);
  }
  
  .socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .background-video {
    z-index: -1; /* Coloca o vídeo por trás do conteúdo */
    opacity: 1;
    position: absolute;
    top: -60px;
}
  
@media (max-width: 500px) {
    .form {
        gap: 3px;
        max-width: 95%;
        color: #fff;;
        padding: 30px;
        border-radius: 10px;
        position: relative;
        margin: 10px;
        background-color: #076a00ca;
      }  
    .all{
        flex-direction: column;
    }
    .mapa{
        position: relative;
        width: 100%;
        border-radius: 10px 10px 0 0px;
    }
    .page{
        margin-right: 2%;
        background-color: #076a00ca;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95%;
        border-radius: 20px;
        color: white;
    }
    .background-video {
        /* transform: translateX(0%) translateY(-200%); */
        
        position: fixed;
    }
  }

  .rodape {
    color: white;
    height: auto;
    width:100%;
    font-size: 14px;
    font-family: helvetica;
    margin-top: 50px; /* Adicione um espaçamento superior, se necessário */
    padding: 0px; /* Adicione algum espaço interno ao rodapé, se necessário */
    background-color: #048500;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 999; /* Adicione este z-index */
    position: relative;
}
.rodape a{
    text-decoration: none;
    color: white;
}
.rodape p{
    margin-bottom: 5px;
}
.rodape-div{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    background-color: #048500;
    margin: auto;
    justify-content: center;
}
.rodape-div-1, .rodape-div-2, .rodape-div-3, .rodape-div-4{
    display: flex;
    width: calc(100% / 4 - 20px);
    padding-top: 30px;
    justify-content: center;
}
.rodape span{
    font-size: 20px;
    color: white;
}
.rodape-direitos{
    width: calc(100% - 20px);
    background-color: black;
    padding: 10px;
    margin: 0px;
    text-align: center;
}
/*mobile*/
@media (max-width: 768px) {
    .rodape-div-2, .rodape-div-3{
        width: 40%;
        padding: 0px;
    }
    .rodape-div{
        padding: 10px 0px 10px 0px;
        width:90%;
        flex-wrap: nowrap;
    }
    .rodape{
        top: 410%;
    }

    .rodape-div-3{
        padding-left: 0px;
        margin: 0;
    }
    .logo2{
        opacity: 0;
    }
    .rodape-div-1{
        width: 0px;
    }
}

.logo2{
    max-width: 30%;

}