* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* 👈 bloqueia qualquer rolagem lateral */
}

html {
  margin: 0px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
  background-color: #ffffff;
 
}

/* Navbar */

nav {
  position: relative;
  background-color: rgb(53, 53, 53);
  border-radius: 20px;
  margin: 0px auto;
  max-width: 1200px;
  margin-top: 0px;
  padding-bottom:15px ;
} 

.tag{
  display: flex;
 margin-left: 450px;
}
.logo{
  position:relative;
  width: 100px;
  right: 400px;
}

 ul {
  display: flex;
  bottom: 30px;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
 margin-top: 20px;
}

nav ul li a {
  color: rgb(224, 224, 224);
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
  margin-top: 0;
}

nav ul li a:hover {
  color: rgb(250, 250, 250);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 0 50px;
  background: url('img/imagem-fundo.jpg') no-repeat center center/cover;
  color: rgb(46, 44, 44);
}

.hero .descricao h1 {
  color: rgb(24, 22, 22);
  font-size: 60px;
  margin-bottom: 40px;
}

.hero .descricao p {
  color: rgb(85, 85, 85);
  font-size: 20px;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero img {
  width: 500px;
  max-width: 100%;
  transition: transform 0.3s;
}

.hero img:hover {
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff6600;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

/* Seção Modelos */
.modelos {
  background-color: rgb(125, 123, 222);
  padding: 80px 20px 100px;
  text-align: center;
}

.modelos h1 {
  font-size: 50px;
  margin-bottom: 60px;
  color: #e6e6e6;
}

.formatos {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.titulo{
  margin-top: 80px;
}

.formato {
  background-color:rgb(125, 123, 222);
  border-radius: 20px;
  padding: 20px;
  max-width: 300px;
  transition: transform 0.3s;
  border: 2px solid #ffffff00; 
  border-radius: 12px;
  color: #e8e3e3;
}

.formato:hover {
  transform: translateY(-10px);
}

.formato img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.formato h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.formato p {
  font-size: 16px;
  line-height: 1.4;
}

.quadrado {
  margin-top: 60px;
}

/******************************/
.funcionalidades {
  text-align: center;
  padding: 50px 20px;
  background-color: rgb(255, 255, 255);
}

.titulo-funcionalidades {
  position: relative;
  font-size: 2rem;
  margin-bottom: 50px;
  color: rgb(85, 85, 85);
  left: 30px;
  bottom: 0px;
  font-size: 40px;
}

.carrossel-container {
  position: relative;
  max-width: 700px;
  max-height: 800px;
  margin: 0 auto;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  margin-right: 0px;
  margin-bottom: 100px;
  right: 350px;
}

.carrossel-container h1{
  position: relative;
  right: 300px;
}

.carrossel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.card {
  flex: 0 0 250px;
  background-color: #e8e3e3;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.4);
}

.card .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Botão próximo */
.carrossel-container .btn-next {
  position: relative;
  top: -70px;
  right: -50px;
  bottom: -40px;
  transform: translateY(-50%);
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 28px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 120px;
}

.btn-next {
  position: relative;
  top: 10%;
  right: 0;
  transform: translateY(-50%);
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 100px;
}

.btn-next::after {
  content: '';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .carrossel {
    gap: 15px;
  }

  .card {
    width: 200px;
  }

  .btn-next {
    padding: 8px 0px;
  }
}

.carrossel-container .btn-next:hover::after {
  margin-left: 10px;
}

/*************/
.comprar{
  padding-top: 100px;
  padding-bottom: -30px;
}

.comprar h1{
  position: relative;
  bottom: 100px;
  left: 120px;
  color: rgb(138, 138, 154);
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; 
  gap: 40px;
  color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  background-color: rgb(125, 123, 222);
  padding-right: 250px;
  padding-left: 20px;
  border-radius: 30px;
  position: relative;
  bottom: 50px;
}

.produto {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 20px;
  transition: transform 0.3s;
}

.produto:hover {
  transform: scale(1.05);
}

.img-produto {
  position: relative;
  width: 250px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 2px solid black;
  right: 100px;
  top:120px;
  
}

.card-tecnico {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  width: 320px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.description{
  
  color: rgb(255, 255, 255);
  list-style-type: none;
  font-size: 20px;
  margin: 40px auto;
  text-align: left;
  max-width: 500px;
  position: relative;
  bottom: 500px;
  left: 150px;
}



.container img{
  position: relative;
  width: 500px;
  bottom: 25px;
  right: 240px;
}

/********************/
.contato{
  padding-top: 200px;
  padding-bottom: 0px;
  background-color: #010101;
}
.contato h2{
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 50px;
  bottom: 200px;
  color: #e8e3e3;
}
.redes{
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 150px;
}

.img-rede{
  width: 150px;
}
