@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Estilo geral */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  max-height: 100vh;
  font-family: MuseoModerno, sans-serif;
  background-image: url(img/background\ img.PNG);
  background-size: cover;
}

.interface{
  max-width: 1200px;
  margin: 0 auto;
}

.flex{
  display: flex;
}

/*header*/

.logo img {
  max-width: 70px;
}

header > .interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px; /* Adiciona um pouco de espaço */
}

header a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

header a:hover, form .enviar input:hover {
  transform: scale(1.1);
}

header nav ul {
  list-style-type: none;
  padding: 0; /* Remove o padding padrão */
  margin: 0; /* Remove a margem padrão */
}

header nav ul li {
  display: inline-block;
  padding: 0 35px;
  scroll-behavior: smooth;
}

header .contato button {
  padding: 8px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  color: #70000e;
  border: none;
  cursor: pointer;
}

header .contato button:hover, form .enviar input:hover {
  box-shadow: 0px 0px 10px #fff;
}

/* Estilos para o menu responsivo */
.menu-toggle {
  display: none; /* Esconde o checkbox */
}

.menu-label {
  cursor: pointer;
  color: #fff; /* Cor do texto do botão do menu */
  font-size: 20px; /* Tamanho do texto do botão do menu */
  margin-left: 20px; /* Espaçamento à esquerda */
}

.menu-content {
  max-height: 0; /* Esconde o conteúdo inicialmente */
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* Transição suave */
}

.menu-toggle:checked + .menu-label + .menu-content {
  max-height: 200px; /* Ajuste conforme necessário */
}

.menu-content ul {
  list-style: none;
  padding: 0;
}

.menu-content li {
  padding: 10px 0;
}

.menu-content a {
  color: white;
  text-decoration: none;
}
/*TOPO DO SITE*/

section.topo-do-site{
 width: 100%;
 min-height: 75vh;
 display: flex;
 margin-top: 11%;
}

section.topo-do-site .img-topo-site img{
  max-width: 550px;  
}

section.topo-do-site .txt-topo-site{
  color: #fff;
}

/* SOBRE */

section.sobre{
  background-color: #000;
  padding: 40px 4%;
}

section.sobre .img-sobre img{
  max-width: 480px;
  margin: 40px 0;
}

section.sobre .flex{
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
}

section.sobre h2{
  font-size: 40px;
  color: #fff;
  line-height: 52px;
}

section.sobre span{
  font-size: 50px;
  color: #fff;
}

section.sobre p{
  margin: 40px 0;
  font-size: 18px;
  color: #fff;
}

/*SERVICOS*/

section.servicos {
  background-color: #000;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; /* Adiciona alinhamento vertical */
  padding: 20px; /* Adiciona um pouco de espaço ao redor */
  box-sizing: border-box; /* Inclui padding e border no cálculo da largura */
}

.carrossel-container {
  width: 90%; /* Ajusta para 90% para telas menores */
  max-width: 800px; /* Limita a largura máxima */
  overflow: hidden;
}

.carrossel-container .card img {
  width: 100%; /* Ajusta a imagem para ocupar 100% da largura do card */
  max-width: 350px; /* Limita a largura máxima da imagem */
}

.carrossel-container .carrossel {
  display: flex;
  transition: transform 0.9s ease-in-out;
  grid-auto-flow: column;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

.card {
  min-width: 100%; /* Mantém a largura mínima do card */
  box-sizing: border-box;
  border: 2px solid;
  display: flex;
  gap: 30px;
  align-items: center;
  background-color: #252525;
  justify-content: space-between;
  border-radius: 8px;
}

.carrossel-container .carrossel .card h3 {
  font-size: 2.5rem; /* Usa rem para melhor escalabilidade */
  color: #fff;
  line-height: 1.2;
  margin: 9px 0;
}

.carrossel-container .carrossel .card p {
  font-size: 1rem; /* Usa rem para melhor escalabilidade */
  color: #ffffffc7;
}

.carrossel-container .carrossel .card button {
  font-size: 1rem; /* Usa rem para melhor escalabilidade */
  padding: 7px;
  margin-top: 15px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  color: #fff;
  background-color: #70000e;
  cursor: pointer;
}

.navegar {
  background: rgba(185, 181, 181, 0);
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px;
  cursor: pointer;
  width: 30px;
  font-size: 18px;
  margin-top: 20px; /* Ajusta a margem para um valor mais razoável */
}

/* FORMULARIO*/

section.formulario {
  width: 100%;
  min-height: 100vh; /* Mantém a altura mínima */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #70000e;
  padding: 20px; /* Garante respiro lateral em telas pequenas */
  box-sizing: border-box;
}

section.formulario .container {
  width: 90%; /* Ajuste para 90% para telas menores */
  max-width: 1050px; /* Limita a largura máxima */
  height: auto; /* Permite que a altura se ajuste ao conteúdo */
  box-shadow: 5px 15px 15px rgba(0, 0, 0, 0.212);
  display: flex;
  background-color: #5c020c;
  color: #fff;
}

.container .box {
  width: 100%; /* Ajusta para 100% em telas menores */
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  box-sizing: border-box;
}

.container .title-form h2 {
  font-size: 2rem; /* Usa rem para melhor escalabilidade */
}

.container .card1, .card2 {
  border: 1px solid;
  padding: 20px;
  border-radius: 8px;
}

form {
  width: 100%; /* Ajusta para 100% em telas menores */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  border: 1px solid;
}

.input-group {
  display: flex;
  justify-content: center;
  width: 100%; /* Garante que o grupo de inputs ocupe 100% da largura */
}

form input {
  font-size: 1rem; /* Usa rem para melhor escalabilidade */
  padding: 8px;
  border: none;
  border-radius: 6px;
  width: 60%; /* Garante que o input ocupe 100% da largura */
}

form .enviar .form-button {
  font-weight: 600;
  font-size: 1rem; /* Usa rem para melhor escalabilidade */
  padding: 10px;
  color: #70000e;
  cursor: pointer;
  width: 100%;
}

.footer {
  background-color: #1f1f1f;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container > div {
  flex: 1 1 200px;
  margin: 20px;
}

.footer h2, .footer h3 {
  color: #df2238;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
  color: #ccc;
}


/* Responsividade */
@media screen and (max-width: 1020px) {

  body{
    background-color: #70000e;
  }

  nav{
    display: none;
  }

  .contato{
    display: none;
  }

  body{
    background-size:  cover;
    background-position: center;  
    background-repeat: no-repeat; 
    background-attachment: scroll;
  }


  section.topo-do-site {
    width: 100%;
   height: 70vh;

}

  .img-topo-site img{
   width: 300px;
   margin-bottom: 30px;
  }

  section.sobre{
    max-width: 100%;
  }

  section.sobre .flex {
    flex-direction: column;
  }

  section.sobre .img-sobre img{
    max-width: 320px;
  }

  .txt-sobre{
    text-align: left;
  }

  section.sobre .txt-sobre h2{
  font-size: 31px;
}

section.sobre .txt-sobre h2 span{
  font-size: 34px;
}

section.sobre .txt-sobre p{
  font-size: 18px;
}

section.servicos{
  max-width: 100%;
  height: auto;
  padding: 40px 0;
}


.carrossel-container{
  width: 400px;
  height: auto;
  padding: 10px 0;

}

.carrossel-container .carrossel{
  overscroll-behavior-x: contain;
  scroll-snap-type:x mandatory;
  width: 100%;
  margin-top: 10px;
}

section.servicos .carrossel-container .card{
  flex-direction: column;
  display: flex;
  justify-content: center;
}

section.servicos .carrossel-container .card .card-txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

section.servicos .carrossel-container .card h3{
  font-size: 31px;
  text-align: center;
  margin-bottom: 40px;
}

section.servicos .carrossel-container .card p{
  font-size: 19px;
  margin: 12px;
}

section.servicos .carrossel-container .card img{
  max-width: 350px;
  width: 100%;
  
} .carrossel-container .card button{
  font-size: 20px;
  width: 100px;
  margin: 25px;
} 

section.formulario .container{
  flex-direction: column;
  max-width: 100%;
    width: 80%;
    min-height: 100vh;
    box-shadow: 5px 15px 15px rgb(0, 0, 0, .212);
    display: flex;
    background-color: #5c020c;
    color: #fff;
    gap: 30px;
    margin-top: 20px;
  

}

.container .title-form h2 {
  font-size: 24px;
  text-align: center;
  word-wrap: break-word;
}

 .container .box{
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

form{
  width: 100%;
  
}

.enviar input{
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  flex-direction: column; /* Muda para coluna em telas menores */
}

.container .box {
  width: 100%; /* Ajusta para 100% em telas menores */
}

form {
  width: 100%; /* Ajusta para 100% em telas menores */
}

form input {
  font-size: 0.9rem; /* Ajusta o tamanho da fonte em telas menores */
}

.container .title-form h2 {
  font-size: 1.5rem; /* Ajusta o tamanho do título em telas menores */
}

}



  


