body {
  font-family: Arial, sans-serif;
  background-color: #201f1f;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.nome{
  text-decoration: none;
}
/* Carrossel */
.carrosel {
    display: flex;
    margin-top: 200px;
    margin-bottom: 70px;
    width: 100%;
    height: 28vh;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.insta-logo {
    font-size: 1.3rem; 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gps-logo {
    font-size: 1.3rem; 
    color: #EA4335;
    display: inline-block;
}
.wpp-logo {
  font-size: 1.3rem;
  color: #01e675; 
  display: inline-block;
}
.container-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
}

.slider {
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    border-radius: 10px;
    object-fit: cover !important;
    z-index: 0;
}

.on {
    opacity: 1;
    z-index: 10;
}

.seta { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #ffffff;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  
}
.seta:hover {
    background-color: rgb(68, 68, 68);
}

/* Fim carrossel */
h1 {
  margin: 20px;
  color: #f57c00;
}
nav {
  background-color: rgba(255, 145, 0, 0.664);
  opacity: 75%;
  width: 60%;
  margin: 35px auto;
  border-radius:  75px;
  padding: 15px 30px;
  display: flex;
  align-items: center; /* Alinha verticalmente logo + menu */
  justify-content: space-between; /* Espaço entre logo e menu */
  box-shadow: 0 4px 20px rgba(250, 250, 250, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
nav .logo {
  height: 50px; /* Altura da logo */
  display: inline-block;
  margin-right: 5px;
  margin: 0; /* Remove qualquer margem extra */
  padding: 0; /* Remove qualquer padding extra */
  
}
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap; /* Para quebrar em telas pequenas */
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: background 0.3s, color 0.3s;
  border-radius: 8px;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: orange;
  color: white;
}

nav span{
  color: #1d1d1d;
  
}
.drop-submenu{
      position: relative;
    }
    .drop-submenu > .submenu{
      position: absolute;
      width: auto;
      background-color: black;
      padding: 0;
      text-align: left;
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      height: 0;
      overflow: hidden;
      transition: height .5s;
    }
    .drop-submenu.dropar > .submenu{
      height: 250px;
    }
    .drop-submenu > .submenu a{
      padding: 10px;
    }
    .seta-p {
    color: #fff;
    font-size: 12px;
  }
.logo-container {
  display: flex;
  align-items: center;
  gap: 0; /* Nenhum espaço entre logo e texto */
}

.logo {
  height: 50px;
  display: block; /* Remove espaço extra que inline images têm */
  margin: 0;
  padding: 0;
}

.texto-logo {
  font-size: 24px;
  font-weight: bold;
  color: #1d1d1d;
  margin: 0;
  padding: 0;
  line-height: 1; 
}
.orcamento {
  position: fixed;
  bottom: 60px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #01e675;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.orcamento i {
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

.orcamento:hover{
  background-color: #ffffff;
  color: #029e3b;
  font-weight: 900;
  box-shadow: 2px 2px 20px #5fe690;
}
.footer {
    background-color: #1d1d1d;
    padding: 20px 0; /* aumentei o padding */
    text-align: center;
    width: 100%;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; 
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  gap: 8px;
}

.footer-link:hover {
  color: #ff6600;
}

.footer-icon {
  width: 20px; /* aumentei o tamanho do ícone */
  height: 20px;
}
.footer-copyright {
color: white;
font-size: 14px;
padding: 2%;
}
.tabela-simples {
  width: 500px;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
  font-family: sans-serif;
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  color: #666;
}

.tabela-simples td {
  border: 1px solid #ccc;
  padding: 8px;
  width: 5%;
}

.tabela-simples td:first-child {
  font-weight: bold;
  background-color: #201f1f;
}
.descricao{
  width: 670px;
  margin-left: auto;
  margin-right: auto;
}
p{
  color: #666;
}
footer{
  margin-top: auto;
}
@media (max-height:800px){
  .nome-produto{
    margin-top: 100px !important;
  }
}
@media (max-width:1366px){
   .drop-submenu > .submenu{
      position: relative;
    }
    .drop-submenu.active{
      height: auto;
    }
    .nav-list > .drop-submenu{
      display: flex;
      flex-direction: column;
    }
    .barra div{
      width: 32px;
      height: 2px;
      background-color: #ffffff;
      margin: 8px;
      right: 0;
      transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
      position: relative;
    }
    .barra.active .linha1{
      transform: rotate(+45deg) translate(7px, 7px);
    }
    .barra.active .linha2{
      opacity: 0;
    }
    .barra.active .linha3{
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .nav-list li {
      min-width: 100%;
      border: 1px solid white; 
      text-align: center;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .nav-list{
      background-color: rgb(0, 0, 0);
      position: absolute;
      display: grid;
      height: auto; 
      justify-items: stretch;
      align-items: start;
      row-gap: 0px;
      top: 7.5vh;
      right: 0;
      width: 50vw;
      height: auto;
      z-index: 9999;
      transform: translateX(150%);
      transition: transform 0.3s ease-in-out;
      margin: 0;
      padding: 0;
    }
  .nav-list.active{
    transform: translateX(0);
  }
  nav {
    width: 80%;
    padding: 10px 20px;
  }
}
 @media (max-width:900px){
    .seta{
        display: none;
    }
    .descricao{
    width: 90%;
  }
  .carrosel{
    height: 28vh;
    margin-top: 130px;
    gap: 1px;
  }
  .container-images{
    height: 40vh;
    margin-top: 120px;
  }
  .slider{
    height: 100%;
  }
  h1{
    margin-top: 130px;
  }
 }
 @media (max-width:500px){
    .carrosel{
    height: 28vh;
    margin-top: 130px;
    gap: 1px;
  }
  .container-images{
    height: 30vh;
  }
  .tabela-simples{
    width: 100%;
  }
 }
 html {
    scroll-behavior: smooth;
  }