* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
}

body { 
  font-family: Arial, sans-serif; 
  background-color: #000;
  color: #fff;
 
  overflow-x: hidden; /* remove a rolagem horizontal */
  

}



header {
  background: #000000ab;
  color: #fff;
  display: flex;
  justify-content: space-between;
  position: fixed;

  width: 100%;
  z-index: 1000; /* para ficar sobre outros elementos */
  padding: 1rem;
  box-shadow: 0 10px 13px rgba(255, 217, 0, 0.1); /* opcional: para dar destaque */
}

header .logo { 
font-size: 20px;
}

.logo {
  font-weight: 900;
  
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
text-decoration: underline;
}


#produtos {
padding: 40px 20px;
font-weight: 900;
margin-top: 100px;

}

.produtos h2 {
  font-weight: 900;
  
}

h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}




.product-container {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  gap: 20px;
  align-items: flex-start; /* evita alinhamento forçado */

  margin-right: 15px;
}

.product {
  background: #ffffff09;
  padding: 55px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 calc(25% - 20px);

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product img {
  width: 220px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  text-align: center;
  display: block;
  margin: 0 auto;

}


.product h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.product p {
   font-size: 16px;
   color: #000000;
   margin: 10px 0;
  }

  .product i {
    color: #ffffff69;
    font-size: 15px;
  }

  .product h4 {
    font-size: 30px;
    font-weight: 900;
    
  }

  .product h5 {
    font-weight: 800;
  }

.product button {
  background: #000000;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.product button:hover { background: #333; }

.product-slider, .product-slider{
  background: #000;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px;
  cursor: pointer;
}





.about {
  padding: 40px 20px;
  margin-bottom: 100px; /* adicione isso */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  height: auto;

}

.about img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  margin-right: 20px;
}

.about b {
  font-size: 35px;
}


.about p {
  flex: 1;
  font-size: 18px;
  text-align: justify;
  padding: 50px 50px;
}

footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

footer h1 {
  font-size: 15px;
  font-weight: 900;
}

footer p {
  font-size: 10px;
  font-weight: 700;
}

.color-dots {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.color-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.color-dot.selected {
  border: 3px solid currentColor;
}

.video-container {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw; /* Garante que ocupa 100% da viewport */

  
}

.video-container video {
  width: 100%;
  height: auto; /* ou use 100vh se quiser ocupar a altura inteira da tela também */
  display: block;
  object-fit: cover;
}


/* Mobile - 1 por linha */
@media (max-width: 768px) {

  body {
    padding-right: 0;
    margin-right: 0;
  
    width: 100%;
  }
  
  header {
    background: #000000ab;
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: fixed;

    padding-right: 0;
    margin-right: 0;
  
    width: 100%;
    z-index: 1000; /* para ficar sobre outros elementos */
    padding: 1rem;
    box-shadow: 0 10px 13px rgba(255, 217, 0, 0.1); /* opcional: para dar destaque */
  }
 
  .product {
    flex: 1 1 100%;
    max-width: 100%;
  text-align: center;
  align-items: center;
  }

  .product i {
    font-size: 10px;
  }

  #produtos {
margin-top: 250px;
  }

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* proporção 16:9 */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
}

.color-dot {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

footer h1 {
  font-size: 10px;
  font-weight: 900;
}

footer p {
  font-size: 5px;
  font-weight: 700;
}



}


