* {
    padding:0;
    margin:0;
    vertical-align:baseline;
    list-style:none;
    border:0
    }

    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:wght@100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:wght@100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
body{
  font-family: "Poppins";
  background-color: #f2f2f2;
}


/* Menu */
#header li:hover{
  border: 2px solid green; 
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.10); 
}

#header li{
  border: 2px solid transparent; 
    border-radius: 8px; 
    cursor: pointer;
    transition: all 0.3s ease; 
}
  .menu ul{
    padding-right: 5%;
    padding-top: 3%;
  }

  
  a {
    font-family: "Chillax-Medium";
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    max-height: 150px;
  
    max-width: 150px;
  }
  
  #logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  #header {
    box-sizing: border-box;
    height: 70px;
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000000;

  
  }
  
  #menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
  }
  
  #menu a {
  
    text-decoration: none;
    color: white;
    display: block;
    padding: 0.5rem;
  }
  
  #btn-mobile {
    display: none;
  }
  
  header img{
    margin-top: 80px;
    width: 150px;
    height: 180px;
  }
  
  header .a-header{
    display: none;
  }
  
  header .a-header button{
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.705);
    width: 100px;
    font-size: 11px;
    background-color: black;
  }

  header p {
    color: wheat;
  }
  
  header img{
    margin-top: -0.1px;
  }

  @media (max-width: 630px) {
    #menu {
      display: block;
      position: absolute;
      width: 100%;
      top: 70px;
      right: 0px;
      background: black;
      transition: 0.6s;
      z-index: 1000;
      height: 0;
      visibility: hidden;
      overflow-y: hidden;
    }
    header .a-header{
      display: block;
    }
    #nav.active #menu {
      height: 300px;
      visibility: visible;
      overflow-y: auto;
    }
    #menu a {
      padding: 1rem 0;
      margin: 0 1rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.767);
    }
    #btn-mobile {
      display: flex;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      background: none;
      cursor: pointer;
      gap: 0.5rem;
      width: 100%;
    }
    #hamburger {
      border-top: 2px solid;
      width: 20px;
      color: white;
    }
    #hamburger::after,
    #hamburger::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      margin-top: 5px;
      transition: 0.3s;
      position: relative;
    }
    #nav.active #hamburger {
      border-top-color: transparent;
    }
    #nav.active #hamburger::before {
      transform: rotate(135deg);
    }
    #nav.active #hamburger::after {
      transform: rotate(-135deg);
      top: -7px;
    }
  }


  .primeiros_passos {
    width: 100%;
    max-width: 400px;
    display: flex;
    margin: 0 auto;
    margin-top: 20px !important;
    background-color: #fff;
    height: 500px;
    border-radius: 20px;
 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333333; 
    border: 1px solid transparent;
}

.limitador {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.div {
  position: relative;
    margin-top: 20px;  
}

.div label {
    color: #333333;
    font-family: "DM Sans" ;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: 10px;

    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}



.div input, 
.div select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-bottom: 2px solid #d2b48c;
  background-color: transparent;
  color: #333;
  outline: none;
}



label:hover{
  margin-top: -20px;
}

input:focus {
  border-bottom-color: #d2b48c; 
}


input:focus, select:focus {
    border-bottom-color: #d2b48c; 

}

select:focus{
  color: black;
}

option {
    color: black;; 
}



form {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #d2b48c; 
    color: #000;
    cursor: pointer;
    justify-content: center;
    width: 300px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #f5f5dc; /* Bege claro */
    color: #000;
}

@media (max-width: 500px){
  .primeiros_passos {
    width: 100%;
    margin-top: 20px;
    max-width: 300px;   
    padding: 2%;
}
input, select {
  width: 90%;
  max-width: 300px;
  padding: 10px;

}
}
@media (max-width: 350px){
  .primeiros_passos h1{
    font-size: 17px;

    text-align: center;
  }
  .primeiros_passos {
    width: 100%;
    margin-top: 20px;
    max-width: 250px;   
    padding: 2%;
}
input, select {
  width: 90%;
  max-width: 250px;
  padding: 10px;

}

button {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #d2b48c; /* Bege escuro */
  color: #000;
  cursor: pointer;
  justify-content: center;
  width: 250px;
  transition: all 0.3s ease;
}

}


/* Desing rodape*/

footer{
    background-color: black;
    width: 100%;
    font-size: 20px;
    text-align: center;
    color: white;
    margin-top: 40px;
  
  }

footer .limitador{
  padding: 2%;
}

footer .div-logo{
  max-width: 200px;
  margin: 0 auto;
}

footer .div-logo img{
  width: 200px;
}

footer .div-text ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .div-text ul li{
  margin-left: 20px;
  transition: all 0.3s ease; 
}


footer .div-icons{
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

footer .div-icons svg{
  margin-left: 20px;
  margin-top: 20px;
  transition: all 0.3s ease; 
}

footer .copyright{
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-items: center;
  
}

@media (max-width: 468px){
  footer .div-text ul{
    margin-top: -40px;
    flex-direction: column;
  }
  footer .div-text ul li{
    margin-left: 0;
    margin-top: 10px;
  }

  footer .div-icons{
    justify-content: center;
    align-items: center;
  }
}

footer .div-icons svg:hover{
  border: 2px solid green; 
  border-radius: 12.5px;
  padding: 2%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.05); 
}

footer .div-text ul li:hover{
  border-radius: 15px;
  border: 2px solid green; 
  padding: 1%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transform: scale(1.05); 
}

.sobre_primeiros_passos {
  padding: 2%;

}

.sobre_primeiros_passos .limitador{
  padding: 2%;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sobre_primeiros_passos .divisao{
  display: flex;
  align-items: center;
}

.divisao-texto{
  display: flex;
  flex-direction: column;
}

.divisao-texto h1{
  font-size: 30px;
    font-family: "Bebas Neue", serif;
    font-weight: bold;
    font-style: normal;
  
}

.divisao-texto p{
  font-family: "Lato";
  font-weight: 100;
  font-style: normal;
  font-size: 19px;
  justify-content: center;
}

.divisao-carrosel{
  max-width: 800px;
}

.divisao-carrosel img{
  width: 600px;
  height: 400px;
}

@media (max-width: 900px){
  .sobre_primeiros_passos .divisao{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .divisao-texto{
    max-width: 610px;
  }
  
  .divisao-texto p{
    margin-top: 10px;
  }
  .divisao-carrosel img{
    width: 500px;
    height: 300px;
  }
  .divisao-carrosel{
    margin-top: 18px;
  }
}
@media (max-width: 560px){
  .divisao-texto{
    max-width: 410px;
  }
  .divisao-texto h1{
    font-size: 22px;

  }
  
  .divisao-texto p{
    font-size: 15px;
  }
  .divisao-carrosel img{
    width: 400px;
    height: 200px;
  }

}

@media (max-width: 425px){
  .divisao-texto{
    max-width: 300px;
  }
  .divisao-texto h1{
    font-size: 20px;

  }
  
  .divisao-texto p{
    font-size: 13px;
  }
  .divisao-carrosel img{
    width: 300px;
    height: 150px;
  }

}
.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}
[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  color: #000;
}
