* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #181515;
  color: #fff;
  line-height: 1.6;
}

header, section, footer {
  padding: 2rem 5%;
}





.testpr h1 {
    display: flex;
    justify-content: center;  /* centraliza horizontalmente */
    align-items: center;      /* centraliza verticalmente */
    color: #d4af37;
    font-weight: 800;
    font-size: 38px ;
}

.titulosh2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 1.5rem;
}
h3{
    font-size: 36px;
}
/* Hero com Carrossel e Vídeo */
.hero-carousel {
  padding: 2rem 5%;
  background-color: #181515;
  text-align: center;
}

.botaoprincipal{
  display: flex;
  justify-content: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-width: 100%;
  
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
 
}

.slides img {
  width: 100%;
  height: 900px;
  object-fit: cover;
  flex: 1 0 100%;
}

.carousel-buttons button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  z-index: 1;
}

.carousel-buttons .prev { left: 10px; }
.carousel-buttons .next { right: 10px; }

.video-container {
  margin-top: 3rem;
}

.video-container h2 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.video-container video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Cards de Produto */
.models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 70px rgba(212, 175, 55, 0.3);
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.2rem;
  margin: 1rem;
}

.card p {
  margin: 0 1rem 1rem;
}

.cta-buttons a {
  display: inline-block;
  margin: 1rem;
  padding: 1rem 2rem;
  background: black;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-buttons a .icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.icon {
  width: 40px !important;
  height: 40px !important;
  
  
}


/* Instalações */
.instalacoes-grid {
  
}

.instalacoes-grid img {
  
  height: 750px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* Seções */
.benefits, .process, .faq {
  background-color: #2c1f0b;
  margin: 2rem 0;
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #d4af37;
}

.benefits li {
  font-size: 35px ;
}
.benefits h2  {
  font-size: 45px ;
}
.benefits ul, .faq ul {
  list-style: none;
  padding-left: 0;
}

.benefits li, .faq li {
  margin-bottom: 0.8rem;
}

/* Rodapé */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 2rem 5%;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}
.models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #25D366; /* WhatsApp padrão */
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whats{

  width: 60px;
  height: 60px;
  margin-bottom: 80px;
  transition: transform 0.3s ease;
}

.float-button.instagram {
  background-color: #C13584; /* Instagram cor */
}

.float-button:hover {
  transform: scale(1.1);
}

.float-button img {
  width: 80px;
  height: 80px;
}






/*________________________*/


.central{
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 80px;
 
}
.logo{
  display: flex;
  justify-content: center;
  width: 200px;
  height: 200px;
  
  
}

.logo img{
   border-radius: 26px;
}










@media (max-width: 933px) {
  header, section, footer {
    padding: 1.5rem 3%;
  }

  h3 {
    font-size: 28px;
  }

  .slides img {
    height: 300px;
  }

  .video-container video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .card img {
    height: 250px;
  }

  .card h3 {
    font-size: 1rem;
    margin: 0.8rem;
  }

  .card p {
    font-size: 0.9rem;
    margin: 0 0.8rem 0.8rem;
  }

  .cta-buttons a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .icon {
    width: 30px !important;
    height: 30px !important;
  }

  .instalacoes-grid img {
    height: auto;
    width: 100%;
  }

  .benefits h2 {
    font-size: 28px;
  }

  .benefits li {
    font-size: 20px;
  }

  .floating-buttons {
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .float-button {
    width: 50px;
    height: 50px;
  }

  .float-button img {
    width: 50px;
    height: 50px;
  }

  .carousel-buttons button {
    padding: 0.6rem;
    font-size: 1.5rem;
  }

    .card {
      height: auto;
  
  }
  
  }

 
    .card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    height: 700px;
  }

  .process img{
    width: 100%;
   
  }


 

.whats{

  width: 60px;
  height: 60px;
  margin-bottom: 80px;
  transition: transform 0.3s ease;
}




/*________________________*/


.central{
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 80px;
 
}
.logo{
  display: flex;
  justify-content: center;
  width: 120px;
  height: 120px;
  
  
}

.logo img{
   border-radius: 26px;
}

 .testpr h1 {

    gap: 30px;
    margin: 30px;
    font-weight: 100;
    font-size: 18px  ;
  }

  .titulosh2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 100;
}

h3{
  font-weight: 100;
  margin-left: 30px;
  margin-bottom: 10px;
  
}

.hero-carousel{
  display: none;
}



.hero-carousel-mobile{

  width: 90%;
  margin: 0px;
  gap: 0px;
  
}

.produtos {
  

}
  





  @media (min-width: 934px) {
  .testpr h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 40px 0;
  }


  .hero-carousel-mobile{

    display: none;
  }
  .hero-carousel{
    display: block;
  }

}