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

body{
font-family:'Poppins',sans-serif;
}

/* HEADER */

.header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:999;
transition:0.3s;
background:#fff;
}

.header.scrolled{
background:#fff;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

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

.logo img{
height:60px;
transition:0.3s;
}



/* MENU */

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

.nav a{
text-decoration:none;
color:#000000db;
font-weight:700;
transition:0.3s;
}

.header.scrolled .nav a{
color:#000;
}

.btn-menu a{
border:2px solid #d9b33e;
padding:8px 15px;
border-radius:6px;
}

/* HAMBURGER */

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

.hamburger span{
width:25px;
height:3px;
background:#000;
display:block;
}

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


@media(max-width:768px){

.container-header{
flex-direction:row-reverse;
}

.hamburger{
display:flex;
}

.nav{
position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:#fff;
display:flex;
justify-content:center;
align-items:center;
transition:0.4s;
}

.nav.active{
left:0;
}

.nav ul{
flex-direction:column;
gap:30px;
}

.nav a{
color:#000;
font-size:22px;
}

}


.btn-header {
  background: #dcad23;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

  display: flex;              
  align-items: center;        
  gap: 8px;                   

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-header img {
  width: 16px;
  height: 16px;
}

.btn-header:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(207, 172, 14, 0.7);
} 


/*hero*/

.hero {
  height: 75vh;
  background: url("img/capa3.png") center/cover no-repeat;

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

  padding-left: 8%;
  position: relative;
}


.hero {
  position: relative;
  overflow: hidden; }


.hero-shine {
  position: absolute;
  inset: -50%;

  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(255, 255, 255, 0.25),
    transparent 55%
  );

  animation: shine 5s infinite linear;

  z-index: 1; 
  pointer-events: none;
}


@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

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


.hero-content {
  max-width: 700px;
  text-align: left;
  color: #000;
  padding-top: 110px;
}


.hero-content {
  position: relative;
  z-index: 2;
}




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

.hero h1 span {
  color: #fff;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 0 6px rgba(0,0,0,0.3);
}


.hero p {
  margin-top: 25px;
  font-size: 18px;
  color: #ffffffcc;
  max-width: 600px;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 0 6px rgba(0,0,0,0.3);
}


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


.btn-pulse {
  background: #dcad23;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 0 15px rgba(255, 230, 45, 0.6);
  animation: glow 1.5s infinite alternate;
  transition: transform 0.2s;
}

.btn-pulse img {
  width: 16px;
  height: 16px;
}

.btn-pulse:hover {
  transform: scale(1.05);
}

.btn-header {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;

  transition: 0.3s;
}

.btn-header:hover {
  background: #000;
  color: #fff;
}


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


.mouse {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 20px;
}

.mouse span {
  width: 5px;
  height: 10px;
  background: #fff;
  display: block;
  margin: 7px auto;
  border-radius: 5px;
  animation: scroll 1.4s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}


@media (max-width: 768px) {

 .hero {
    min-height: 100vh;
    background: url("img/capa1-celular.png") center/cover no-repeat;
    display: flex;
    align-items: flex-end; 
    justify-content: center;

    padding: 20px;
  }

  .hero-content {
    width: 100%;
    text-align: center;

    padding: 25px;
    margin-bottom: 40px;

   
  }


  .hero h1 {
    font-size: 25px;
    color: #fff;
    text-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 0 6px rgba(0,0,0,0.3);
  }

  .hero p {
    font-size: 18px;
    color: #fff;
   
  }


  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

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

 

}



@media (max-width: 380px) {

  .hero {
    background-position: center 20%; 
  }

}


@media (min-width: 769px) and (max-width: 1366px) {

  .hero {
    height: 90vh;
    background: url("img/capa3.png") center/cover no-repeat;
    padding-left: 8%;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 15px;
  }
}

/*sobre*/


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.sobre {
  padding: 80px 20px;
 

}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.topo {
  text-align: center;
  margin-bottom: 50px;
}



.topo h1 {
  font-size: 32px;
  margin: 10px 0;
  color: #dcad23;
}

.topo p {
  color: #464545;
  max-width: 700px;
  margin: 0 auto;
}


.conteudo {
  display: flex;
  align-items: center;
  gap: 40px;
}

.imagem img {
  width: 100%;
  border-radius: 12px;
}


.texto h2 {
  margin-bottom: 10px;
  color: #dcad23;
  font-size: 29px;
}

.texto p {
  color: #434343;
}

.texto ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.texto ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.texto ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #dcad23;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}


@media (max-width: 768px) {
  .conteudo {
    flex-direction: column;
  }

  .topo h1 {
    font-size: 26px;
  }
}


.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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


/*servicos*/

.servicos {
  padding: 80px 20px;
  background: linear-gradient(
    to bottom,
    #dcad23 0%,
    #f4dd92 60%,
    #fff 100%
  );
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.servicos-header h2 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #fff;
}

.servicos-header p {
  color: #2f2f2f;
  margin-bottom: 40px;
   font-size: 20px;
}

.cards {
  display: flex;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
 width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #666;
}

.servicos-footer {
  margin-top: 40px;
}

.btn {
  background: #dcad23;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
}

.fade {
  opacity: 0;
  transform: translateY(30px);
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}


.sec-compra-direto {
  padding: 60px 20px;
  background: #fff;
}

.sec-compra-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec-compra-texto-left {
  flex: 1 1 300px;
  max-width: 450px;
}

.sec-compra-marca {
  display: block;
  color: #dcad23;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.sec-compra-titulo {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #222;
}

.sec-compra-btn {
  background: #dcad23;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.sec-compra-btn:hover {
  background: #000;
  color: #dcad23;
}

.sec-compra-lista-right {
  flex: 1 1 300px;
  max-width: 500px;
  background: #f7fafc;
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
}

.sec-compra-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-compra-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

.sec-compra-item:last-child {
  margin-bottom: 0;
}

.sec-compra-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .sec-compra-container {
    flex-direction: column;
  }

  .sec-compra-texto-left,
  .sec-compra-lista-right {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .sec-compra-lista-right {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .sec-compra-titulo {
    font-size: 2rem;
  }
}

/*banner*/

.cta-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.cta-container {
  width: 100%;
  max-width: 1100px;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;

  background: 
   
    url('img/banner.png') center/cover no-repeat;

  color: #fff;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.95;
}

.cta-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* CONTAINER DOS BOTÕES */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BOTÕES */
.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #2ecc71;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

/* ÍCONES */
.cta-button img {
  width: 18px;
  height: 18px;
}

/* BOTÃO SECUNDÁRIO */
.cta-button.secondary {
  background: #dcad23;
  color: #fff;
}

.cta-button.secondary:hover {
  background: #f1f1f1;
}

.cta-button:hover {
  background: #27ae60;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .cta-container {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/*avaliações*/

.avaliacoes {
  padding: 80px 20px;
  text-align: center;
 background: linear-gradient(
    to bottom,
    #dcad23 0%,
    #f4dd92 60%,
    #fff 100%
  );
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff; 
}

.avaliacoes h2 {
  font-size: 35px;
  margin-bottom: 40px;
  color: black;
}


.avaliacoes h2 span{
background: linear-gradient(
    to bottom,
    #dcad23 0%,
    #f4dd92 60%,
    #fff 100%
  );
 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.avaliacoes p{
  color: black;
}

.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;
  color: black;
}

.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: #dcad23;
}

.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: #dcad23;
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #dcad23; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  flex-shrink: 0;
}



.cumulus-contato {
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cumulus-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.cumulus-form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cumulus-tag {
  color: #dcad23;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.cumulus-form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.cumulus-subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.cumulus-form-box input,
.cumulus-form-box select,
.cumulus-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.cumulus-form-box input:focus,
.cumulus-form-box select:focus,
.cumulus-form-box textarea:focus {
  outline: none;
  border-color: #dcad23;
}

.cumulus-form-box button {
  width: 100%;
  padding: 14px;
  background: #dcad23;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cumulus-form-box button:hover {
  background: #000;
}

.cumulus-image-box {
  flex: 1;
}

.cumulus-image-box img {
  width: 100%;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .cumulus-container {
    flex-direction: column;
  }

  .cumulus-form-box {
    padding: 25px;
  }

  .cumulus-form-box h2 {
    font-size: 26px;
  }

  .cumulus-subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .cumulus-form-box input,
  .cumulus-form-box select,
  .cumulus-form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}


/*linha vermelha*/

.produtos-header {
  width: 100vw;
  background: linear-gradient(
    to bottom,
    #dcad23 0%,
    #f5d25d 60%,
    #f4e06f 100%
  );
 
  color: #fff;
  text-align: center;
  padding: 35px 10px;
  overflow: hidden; 
}

.produtos-header p.assistencia {
  font-size: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
  color: #000;
}

.contatos-header {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
  color: black;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: black;
  color: #cf150f;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contato-item img.contato-img {
  width: 30px;
  height: auto;
}

.contato-item:hover {
  transform: scale(1.05);
  background-color: #ff3b3b;
  color: white;
}

@media (max-width: 768px) {
  .produtos-header p.assistencia {
    font-size: 21px;
  }
  .contatos-header {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .contato-item img.contato-img {
    width: 25px;
  }
  .contato-item {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.animate-text {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-buttons {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.contato-linha {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 20px;
}

.contato-link img {
  width: 25px;
  height: 25px;
}

.contato-link:hover {
  transform: scale(1.05);
  opacity: 0.85;
}


/*footer*/


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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contato {
    flex: 1;
    min-width: 280px;
}

.footer-servicos {
    flex: 2;
    min-width: 280px;
}

.footer h3 {
    color: #ccc;
    font-size: 16px;
}

/* LISTA EM COLUNAS */
.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 40px;
}

.lista-servicos li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}

/* TÍTULO CLICÁVEL */
.toggle-servicos {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta {
    display: none;
    transition: transform 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
    }

    .lista-servicos {
        column-count: 1;
        display: none;
    }

    .lista-servicos.ativo {
        display: block;
    }

    .seta {
        display: inline-block;
    }

    .seta.rotacionar {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .espaco-mobile {
        height: 120px;
    }
}

/*seta para cima*/

.botao-seta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.botao-seta img {
    width: 50px;
    height: 50px;
    display: block;
}

.botao-seta:hover {
    transform: scale(1.1);
}

.cumulus-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  animation: cumulusGlow 1.5s infinite alternate;
  z-index: 9999;
  transition: 0.3s;
}

.cumulus-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.cumulus-whatsapp-float:hover {
  transform: scale(1.1);
}

/* EFEITO BRILHANTE ANIMADO */
@keyframes cumulusGlow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6),
                0 0 20px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1),
                0 0 45px rgba(37, 211, 102, 0.8);
  }
}

/* Mobile ajuste */
@media (max-width: 768px) {
  .cumulus-whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 20px;
  }

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