*{
    font-size: xx-large;
    text-decoration: none;
    text-transform: none;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: fonteTitulo ;
    src: url('Montserrat-Bold.ttf');
}

@font-face {
    font-family: opensans ;
    src: url('OpenSans-VariableFont_wdth\,wght.ttf');
}

html {
    scroll-behavior: smooth;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}


header{
    background-color: #1E057D;
    position: sticky;
    grid-template-columns: 100%;
    padding: 2.5%;
    color: white;
    font-family: fonteTitulo;
    position: sticky; top: 0;
    z-index: 10000;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: auto 1fr;
}

header a {
    color: white;
    text-decoration: none;
    margin: 0% 20px 0% 20px;
}

header p {
  position: absolute;
  right: 70%;
  top: 40%;
}

.principal {
  vertical-align: middle;
}

.logo img {
    display: inline;
    font-size: xx-large;
    border-radius: 50%;
    vertical-align: middle;
}

h1 {
    font-size: xx-large;
}

nav{
    position: absolute;
    right: 30px;
    top: 40%   ;
}

nav li{
    display: inline;
    margin: 0% 0% 0% 20px;
}

.abc{
    font-size: xx-large;
}


.box{
    position: relative;
    width: 924px;
    
}

#mensagemDeBemVindo {
    color: white;
    font-size: 50px;
    font-family: fonteTitulo;
    text-align: center;
    background-image: url(fundoBemVindo.jpeg);
    padding: 16%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.informacoesEquipe {
    display: flex;
}

h3 {
    font-size: xx-large;
    font-family: fonteTitulo;
    text-align: center;
    color: #bb5b04;
    margin: 170px 0px 0px 0px;
}

#sobreNos {
    color: #2d2d2d;
    text-align: justify;
    font-size: x-large;
    font-family: opensans;
    max-width: 100%;
    margin: 4%;
    margin-left: 10%;
    padding: 0px 0px 0px 0px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

.fotoEquipe {
    max-width: 50%;
    padding: 100px 0px 0px 0px;
}

h4 {
    font-size: xx-large;
    font-family: fonteTitulo;
    text-align: center;
    margin: 200px 0px 40px 0px;
    color: #bb5b04;
}

#informacoesPasseio {
    font-size: x-large;
    text-align: justify;
    line-height: 1.5;
}

#textoPasseio {
    padding: 0px 100px 40px 100px;
    font-family: opensans;
    line-height: 1.5;
}

#agende {
    color: #bb5b04;
    font-size: x-large;
    text-align: justify;
    line-height: 1.5;
    padding: 0px 100px 40px 100px;
    font-family: fonteTitulo;
    line-height: 1.5;
    text-align: center;
}

.carroselPasseio {
  height: 500px;
  width: 80%;
  max-width: 900px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.imagensPasseio {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.imagensPasseio input {
  display: none;
}

.slides {
  display: flex;
  width: 600%; /* 6 imagens */
  transition: margin-left 0.8s ease-in-out;
}

.slides img {
  width: 16.666%;;
  height: 500px;
  object-fit: cover;
}

.botoesPasseio {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.botoesPasseio label {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  border: solid #1E057D 2px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 6px;
}

.botoesPasseio label:hover {
  background: #bb5b04;
}

#foto1:checked ~ .slides { margin-left: 0; }
#foto2:checked ~ .slides { margin-left: -100%; }
#foto3:checked ~ .slides { margin-left: -200%; }
#foto4:checked ~ .slides { margin-left: -300%; }
#foto5:checked ~ .slides { margin-left: -400%; }
#foto6:checked ~ .slides { margin-left: -500%; }

#foto1:checked ~ .botoesPasseio label[for="foto1"],
#foto2:checked ~ .botoesPasseio label[for="foto2"],
#foto3:checked ~ .botoesPasseio label[for="foto3"],
#foto4:checked ~ .botoesPasseio label[for="foto4"],
#foto5:checked ~ .botoesPasseio label[for="foto5"],
#foto6:checked ~ .botoesPasseio label[for="foto6"] {
  background: #1E057D;
}

.setas {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.setas .prev label,
.setas .next label {
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: none;
}

#foto1:checked ~ .setas .prev label[for="foto6"],
#foto1:checked ~ .setas .next label[for="foto2"],
#foto2:checked ~ .setas .prev label[for="foto1"],
#foto2:checked ~ .setas .next label[for="foto3"],
#foto3:checked ~ .setas .prev label[for="foto2"],
#foto3:checked ~ .setas .next label[for="foto4"],
#foto4:checked ~ .setas .prev label[for="foto3"],
#foto4:checked ~ .setas .next label[for="foto5"],
#foto5:checked ~ .setas .prev label[for="foto4"],
#foto5:checked ~ .setas .next label[for="foto6"],
#foto6:checked ~ .setas .prev label[for="foto5"],
#foto6:checked ~ .setas .next label[for="foto1"] {
  display: block;
}

.setas label:hover {
  background: rgba(0,0,0,0.7);
}


footer {
    background-color: #1E057D;
    padding: 10%;
    margin: 10% 0% 0% 0%;
}

footer p {
    font-family: opensans;
    line-height: 1.5;
    color: white;
    font-size: x-large;
}

footer ul {
    margin: 5% 20% 0% 20%;
}

footer li {
    display: flex;
}

.telefone {
    color: #bb5b04;
    margin-top: 6px;
}

h5 {
    font-size: xx-large;
    font-family: fonteTitulo;
    text-align: center;
    color: #bb5b04;
}

#textoContato {
    margin: 0% 20% 0% 20%;
}

.formasContato li {
  display: flex;
  flex-direction: column; 
  align-items: center;   
}

h6 {
  margin: 20px 0 0 0;
}


@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: center;
  }
  .informacoesEquipe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
  }
}

@media (max-width: 475px) {
    #textoPasseio {
        font-size: 18px;
        padding: 0px 50px 20px 50px;
        text-align: left;
    }

    #sobreNos {
        font-size: 18px;
        padding: 0px 15px 0px 0px;
        text-align: left;
    }

    #textoContato {
        font-size: 18px;
        text-align: left;
    }
}

#iconeHamburguer {
    border-radius: 50%;
}

#menuToggle {
  display: none;
}


#menuHamburguer {
  display: none; 
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: absolute;
  top: 0%;
  right: 20%;
  z-index: 200; 
}

#menuHamburguer span {
  display: block;
  width: 100%;
  height: 4px;
  background: white;
  margin: 6px 0;
  transition: 0.3s;
}

#menuResponsivo .abc {
  display: flex;
  list-style: none;
}

#menuResponsivo .abc li {
    display: block;
    margin: 30px 20px;
}

@media (max-width: 1084px) {
  #menuHamburguer {
    display: block;
  }

  #menuResponsivo .abc {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: #1E057D;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: right 0.3s ease-in-out;
  }

  #menuResponsivo .abc li {
    margin: 30px 0;
  }

  #menuToggle:checked ~ .abc {
    right: 0;
  }

  #menuToggle:checked + #menuHamburguer span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #menuToggle:checked + #menuHamburguer span:nth-child(2) {
    opacity: 0;
  }
  #menuToggle:checked + #menuHamburguer span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  header p {
    position: absolute;
    left: 33%;
    top: 10%;
  }

  .telefone {
    font-size: small;
  }

  h6 {
    font-size: large;
  }
  
}



