/* Estilos de reset de css e definição de variaveis */

:root {
  --cor-primaria: #298C9D;
  --cinza-claro: #D9D9D9;
  --cinza-medio: #888;;
  --cinza-escuro: #555;
  --branco: #F3F3F3;
  --preto: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1rem;
}
body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: var(--cinza-medio);
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--cinza-escuro);
}

/* Cabecalho */

.cabecalho{
  background: var(--cor-primaria);
  padding: .5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-weight: bold;
}

.navbar-toggler {
  border: none; 
  outline: none; 
  background-color: transparent; 
}

.navbar-toggler:focus {
  border: none; 
  outline: none; 
  box-shadow: none; 
}

/* Section Banner */
#banner,#comentarios {
  background: url('./Assets/images/bg_home.png') no-repeat;
  background-size: cover;
  width: 100%;
}

.container-banner {
  display: flex;
  justify-content: space-around;
  position: relative;
}

.banner-conteudo{
  width: 40%;
}
#banner img {
  width: 100%;
}

.banner-img{
  width: 50%;
}

/*Section Recursos  */

.container_carrossel{
  display: flex;
  gap: 2rem;
  padding: 1rem;
}
.container_carrossel img{
  height: 380px;
  padding: 1rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}
.container_carrossel div{
  width: 50%;
}
.container_carrossel-conteudo{
  display: flex;
  height: 100%;
  flex-direction: column;
  gap:1.5rem;
}
.container_carrossel-conteudo a{
  width: 200px;
  text-align: center;
}

.carousel-indicators{
  background: #00000021;
  bottom: -40px;
  
}

/* Section Comentarios */

#comentarios{
  margin-top: 2rem;
  padding: 2rem 0;
}

.card{
  max-width: 450px;
}
.container_carrossel-comentarios{
  justify-content: center ;
  gap: 2rem;
}

/* Section Duvidas */

.accordion-button:focus{
  border: none; 
  outline: none; 
  box-shadow: none; 
  
}

/* Rodapé */
footer {
  background-color: var(--cor-primaria); 
  color: var(--branco);
  height: 250px;
  display: flex;
  align-items: center;
  
}
.footer-text {
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
}

/* Formatações gerais */

a {
  text-decoration: none;
  color: var(--branco);
}

button{
  border: none;
  background: transparent;
}

strong{
  font-size: 1.2rem;
  color: var(--cor-primaria);
}


.titulo,.subtitulo{
  color: var(--cor-primaria);
}
.titulo{
  font-size: 2rem;
}
.subtitulo{
  font-size: 1.5rem;
}

.botao {
  color: var(--branco);
  background: var(--cor-primaria);
  padding: .5rem 2rem;

}

.botao:hover {
  opacity: 0.8;
}

.botao-destaque{
  background: var(--branco);
  color: var(--preto);
}


.arrow{
  position: absolute;
  bottom: 0;
  animation: bounce .3s infinite alternate;
}


@media (min-width:1400px) {
  #comentarios{
    padding: 4rem 0;
  }
}



@media(max-width:992px) {
  .container-banner {
    flex-direction: column-reverse;
  }
  .banner-conteudo{
    width: 100%;
  }
  .banner-img{
    width: 100%;
  }
  .arrow{
    right: 5px;
  }
  .container_carrossel{
    flex-direction: column;
    height: auto;
  }
  .container_carrossel img{
    height: auto;
    bo
  }
  .container_carrossel div{
    width: 100%;
  }
  .carousel-indicators{
    display: none;
  }
  .container_carrossel-comentarios{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

@media(max-width:430px) {
  .card{
    max-width: 80%;
  }

}

@keyframes bounce {
  0%{
    bottom: 0;
  }
  100%{
    bottom: 8px;
  }
}