
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


body, html {
 
  overflow-x: hidden;
}

.header {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #febf02;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero .carousel {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slides.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 12;
}




.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  color: #b8917a;
   font-family: "Zalando Sans Expanded", sans-serif;
}

.hero-text p {
  font-size: 21px;
  margin: 10px 0 20px;
  
  font-family: "Zalando Sans Expanded", sans-serif;
 
}


.btn-orcamento {
  background-color: #febf02;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orcamento:hover {
  background-color: #fff;
}

.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 170, 75, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(225, 170, 75, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 170, 75, 0);
  }
}


.hero.hide-content .hero-text {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.carousel picture,
.carousel picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo {
  width: 250px;
  margin-bottom: 30px;
}

.hero-text h2 {
  font-size: 36px;
  font-weight: 600;
  color: #b8917a;
  margin-bottom: 25px;
  font-family: "Zalando Sans Expanded", sans-serif;
}



/* RESPONSIVO */

@media (max-width: 768px) {
  .hero-logo {
    width: 110px;
  }

  .hero-text h2 {
    font-size: 24px;
  }
}


@media (max-width: 900px) {

    .hero {
  position: relative;
  height: 84vh;
  overflow: hidden;
}

   .nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.97);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 84vh;
    padding: 120px 20px 20px;
    border-radius: 0;
    z-index: 100;
  }

  .nav ul.active {
    display: flex;
  }

 
  .menu-toggle {
    display: block;
    z-index: 101; 
    position: relative;
  }

  .hero-text h1 {
    font-size: 25px;
  }

  .hero-text p {
    font-size: 19px;
  }

  .logo img {
    height: 40px;
  }


  @media (max-width: 768px) {
  .hero-text h1 {
    margin-bottom: 50px; }

  .hero-text p {
    margin-top: 0; 
  }
}


}

@media (max-width: 768px) {
   .hero-text {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 30%; 
    padding: 0 15px;
    text-align: center;
  }
  .hero-text h1,
  .hero-text p {
    display: block;
    width: 100%;
    white-space: normal; 
    word-wrap: break-word; 
  }

    .hero-text h1 {
    font-size: clamp(36px, 8vw, 60px);
    line-height: 1.1;
  }

    .hero-text p {
    font-size: clamp(18px, 5vw, 26px);
    line-height: 1.3;
    margin: 10px 0 20px;
  }
  .hero-logo {
  width: 250px;
  margin-bottom: 30px;
}
}


/*about*/

.about-section {
  background-color: #f5f5f5; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 60px;
  
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fcb600;
}

.about-text .subtitle {
  font-size: 16px;
  color: #666;
  display: block;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
}

.btn-about {
  padding: 12px 30px;
  border: 1.5px solid #fcb600;
  border-radius: 30px;
  color: #fcb600;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about:hover {
  background-color: #fcb600;
  color: #fff;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-section {
    padding: 70px 20px;
  }

  .about-text p {
    font-size: 15px;
  }
 

}




/*produtos*/

.equipamentos {
  background-image: url("img/fundosobre2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 40px 40px;

  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
}





.equipamentos-cta {
  margin: 40px 0 0;
  padding: 0;
}




.equip-header {
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: center;
  color: #ffb903;
}


.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.equipamentos .carousel {
  height: auto;
}


.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  
}

.equip-card {
  min-width: 300px;
  max-width: 300px;
  margin-right: 20px;
  border: 1px solid #e0e0e0;
  padding: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.equip-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.equip-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.equip-card p {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
}

.btn-whats {
  margin-top: 15px;
  text-align: center;
  background: #ffb903;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}



.equipamentos-cta {
  margin-top: 50px;
  text-align: center;
}

.btn-produtos {
  display: inline-block;
  padding: 16px 40px;
  background: #000; 
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-produtos:hover {
  background: #ffb903;
  transform: translateY(-3px);
}


@media (max-width: 768px) {
  .equip-card {
    min-width: 90%;
    max-width: 90%;
  }

  .equipamentos {
  background-image: url("img/fundosobrecelular.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 40px 40px;

  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
}

}


.equipamentos {
  min-height: auto !important;
  height: auto !important;
}


/*avaliações*/

.avaliacoes {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.avaliacoes h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.avaliacoes-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.avaliacoes-container {
  position: relative;
}

.avaliacao-item {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fade 0.4s ease;
}

.avaliacao-item.active {
  display: flex;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.avaliacao-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.avaliacao-stars img {
  width: 20px;
}

.avaliacao-item h3 {
  margin: 5px 0;
}

.avaliacao-item span {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.avaliacao-item p {
  max-width: 600px;
  font-size: 16px;
  color: #555;
}

.avaliacao-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #ffb903;
}

.avaliacao-btn.prev {
  left: 20px;
}

.avaliacao-btn.next {
  right: 20px;
}

.avaliacao-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.avaliacao-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.avaliacao-dot.active {
  background: #ffb903;
}

/*numeros*/

.numeros {
    position: relative;
  padding: 120px 20px;
  color: #fff;

  background-image: url("img/fundonumeros.png"); /* SUA IMAGEM */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.numeros-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.numeros-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.numero-item span {
  font-size: 48px;
  font-weight: bold;
  color: #ffc107;
}

.numero-item p {
  font-size: 18px;
  margin-top: 10px;
}


@media (max-width: 900px) {
  .numeros-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .numeros-container {
    grid-template-columns: 1fr;
  }
}

/*form*/

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f7f9f9;
}

.contato {
  padding: 60px 20px;
  background-image: url("img/fundosobre.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tag {
  color: #ffb903;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: none;
  border-color: #ffb903;
}

.form-box button {
  width: 100%;
  padding: 14px;
  background: #ffb903;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: #000;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  border-radius: 18px;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .container {
    flex-direction: column;
  }

  .form-box {
    padding: 25px;
  }

  .form-box h2 {
    font-size: 26px;
  }

  .subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  
  .form-box select,
  .form-box option {
    white-space: normal;
  }

 
  input,
  select,
  textarea {
    font-size: 16px;
  }

}



/*footer*/

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 30px 20px 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-text {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-align: right; 
}

.footer-copy {
  margin-top: 15px;
  text-align: center;
  font-size: 11px;
  color: #aaa;
}


@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .footer-text {
    text-align: center;
  }
}


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 199, 37, 0.448);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 15px;
  }
}
