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

body {
  font-family: 'Poppins', sans-serif;
   padding-top: 90px;
}



.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 75px;
}


.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.nav-list a:hover {
  color: #f5a200;
}


.btn-header {
  background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-header:hover {
  filter: brightness(1.1);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 3px;
}


@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .hamburger {
    display: flex;
  }
}


/*produtos*/


.produtos-section {
  padding: 80px 24px;
  background: #f8f9fb;
  font-family: 'Poppins', sans-serif;
}

.produtos-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
}

.produtos-title span{
    background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.produtos-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}


.produto-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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


.produto-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 24px;
}


.produto-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.produto-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-produto {
  display: inline-block;
  width: 100%;
  padding: 14px 0;

  background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;

  transition: 0.3s;
}

.btn-produto:hover {
  filter: brightness(1.1);
}


@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .produtos-title {
    font-size: 28px;
  }
}



.sobre-nos {
  width: 100%;
  padding: 100px 20px;
  background: url("img/fundo2.png") center/cover no-repeat;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.sobre-texto h2 {
  font-size: 36px;
  color: #fff;
;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-sobre {
  display: inline-block;
  margin-top: 20px;
  background: #ffc42c;
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-sobre:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 196, 44, 0.6);
}

.sobre-imagem img {
  width: 100%;
  max-width: 700px;
}

.reveal-text,
.reveal-img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-img {
  transform: translateY(60px);
}

.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

    .sobre-nos {
  width: 100%;
  padding: 100px 20px;
  background: url("img/fundo2celular.png") center/cover no-repeat;
}


  .sobre-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-texto h2 {
    font-size: 28px;
  }

  .sobre-imagem {
    margin-top: 40px;
  }

 
}

.footer {
  background: #121212;
  color: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col h5 {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  font-size: 10px;
  margin-bottom: 10px;
  color: #eaeaea;
}


.footer-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.footer-toggle .arrow {
  display: none;
  transition: transform 0.3s ease;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-toggle {
    cursor: pointer;
  }

  .footer-toggle .arrow {
    display: inline-block;
  }

  .services-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 15px;
  }

  .services-list.active {
    max-height: 1000px;
  }

  .footer-toggle.active .arrow {
    transform: rotate(180deg);
  }
}

.btn-topo {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 52px;
  height: 52px;

  background: #f5a3006c; 
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.btn-topo.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-topo img {
  width: 22px;
  height: 22px;
}

.btn-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  z-index: 99999;
  cursor: pointer;
}

/* ÍCONE */
.btn-whatsapp img {
  width: 28px;
  height: 28px;
}

/* ANIMAÇÃO PULSE */
.btn-whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn-whatsapp:hover {
  transform: scale(1.05);
}


