
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 77px;
}

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

.nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  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;
  transition: 0.3s;
}

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

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

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.header.scrolled .nav-list a {
  color: #111;
}

.header.scrolled .hamburger span {
  background: #111;
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .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;
  }

  .nav-list a {
    color: #111;
  }

  .btn-header {
    width: 100%;
    text-align: center;
  }
}


.hero {
  height: 80vh;
  background: url("img/capa.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
   padding-top: 110px;
}


.hero h1 {
  font-size: 65px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

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

.hero p {
  margin-top: 25px;
  font-size: 22px;
  color: #ddd;
  max-width: 760px;
  margin-inline: auto;
}


.hero-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 20px;
}


.btn-pulse {
 background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 242, 0, 0.6);
  animation: glow 1.5s infinite alternate;
  transition: transform 0.1s ease;
}


.btn-pulse:hover {
  animation: blink 0.6s infinite;
  transform: scale(1.05);
}


@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 234, 45, 0.5);
  }
  to {
    box-shadow: 0 0 25px rgba(255, 227, 45, 0.9);
  }
}


@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255, 216, 45, 0.9);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 5px rgba(241, 255, 45, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255, 237, 45, 0.9);
  }
}

.btn-green {
  background-color: #2f76a3;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.btn-green:hover {
  box-shadow: 0 0 20px rgba(29, 136, 185, 0.8);
  transform: scale(1.05);
}


.btn-green img {
  width: 20px;
  height: 20px;
}



.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.scroll-down img {
  width: 28px;              
  animation: arrowBounce 1.5s infinite;
  opacity: 0.9;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
}




.mobile-text {
  display: none;
}

@media (max-width: 768px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }
}


@media (max-width: 768px) {
   .hero {
    height: 100vh;
    margin: 0;             
    border-radius: 0;     
    overflow: hidden;
  }

  .hero::before {
    border-radius: 0;
  }

  .hero-content {
  margin-bottom: 90px; 
  padding: 140px 20px 0; 
}


  .hero h1 {
  font-size: 35px;
  line-height: 1.25;
  margin-bottom: 30px; 
}


  .hero p {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 80px; 
}


 .hero-buttons {
  flex-direction: column;
  gap: 18px;        
  margin-top: 0;    
}


  .btn-pulse,
  .btn-green {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

   .scroll-down img {
    width: 24px;
  }

  .scroll-down {
    bottom: 16px;
  }

 

}

/*linha*/

.linha-servicos {
  width: 100%;
  background: #fff;
  padding: 60px 20px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.linha-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.linha-content h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 10px;
}

.linha-content h1 img {
  width: 34px;  
  height: auto;
}

.linha-content p {
  font-size: 14px;
  color: #555;
  letter-spacing: 1px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .linha-content h1 {
    font-size: 20px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .linha-content h1 img {
    width: 28px;
  }

  .linha-content p {
    font-size: 13px;
  }
}

/*sobre nós*/

.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: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  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: 500px;
}

.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;
  }
}

/*produtos*/

.equipamentos {
  background-color: #fff;
  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: #2f76a3;
}


.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-color: #2f76a3;
  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: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-produtos:hover {
 background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  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;
}

/*marcas*/


.brands-section {
  padding: 80px 20px;
  background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
  text-align: center;
  overflow: hidden;
}

.brands-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}



.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop: 4 lado a lado */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-card {
   background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  transform: translateY(50px);

  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.brand-card:hover {
  transition-delay: 0s !important;
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 234, 50, 0.6),
    0 0 40px rgba(255, 221, 50, 0.4);
}

.brand-card img {
  max-width: 120px;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}


.brand-card img {
  max-width: 130px;
  width: 100%;
  filter: none; /* 👈 remove o preto e branco */
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 254, 250, 0.6),
    0 0 40px rgba(255, 255, 254, 0.4);
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.reveal.active .brands-title {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .brand-card {
  opacity: 1;
  transform: translateY(0);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}



@media (max-width: 768px) {
  .brands-title {
    font-size: 2.1rem;
  }

   .brands-grid {
    grid-template-columns: repeat(2, 1fr); 
  }

  .brands-grid .brand-card {
    grid-column: auto !important;
  }
}


/*form*/


.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: #2f76a3;
  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: #cd0c07;
}

.form-box button {
  width: 100%;
  padding: 14px;
   background: linear-gradient(
    to bottom,
    #f28d10 0%,
    #ffbd59 60%,
    #ffde59 100%
  );
 
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: #2e74a2;
}

.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*/

.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;
  font-size: 2px;
}

.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;
}

@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;
}

.btn-whatsapp img {
  width: 28px;
  height: 28px;
}

.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);
}



