header {
    width: 100%;
    padding: 28px 8%;
    position: sticky;
    top: 0;
    background-color: var(--color-primary-1);
    z-index: 3;
}



#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav_logo {
    font-size: 24px;
    color: var(--color-primary-6);
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: #1d1d1dad;
    font-weight: 600;
}

.nav-item.active a {
    color: var(--color-neutral-1);
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    } 
}



:root {
    --color-primary-1: #fff;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #f8d477;
    --color-primary-4: #d1150e;
    --color-primary-5: #d1150e;
    --color-primary-6: #d1150e;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: #fff;
      text-decoration: none;
    border: none;
    outline: none;
}

.btn-default:hover {
    background-color:#a6a6a6;
}


 body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      padding: 20px;
    }

   .search-container {
  position: relative;
  display: flex;
  align-items: center;
}

#search-icon {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

#search-icon:hover {
  color: #d1150e;
}

#search-input {
  width: 0;
  opacity: 0;
  padding: 6px 10px;
  border: 2px solid #d1150e; 
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 8px;
}


#search-input.active {
  width: 180px;
  opacity: 1;
}

.actions-container {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.hero-banner {
    width: 100%;
    height: 500px; 
    background-image: url("capa1.png"); 
    background-size: cover;  
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    height: 75vh;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    
}

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

@media screen and (max-width: 768px) {
    .hero-banner {
        background-image: url("capacelular.png");
        height: 350px; 
        
    }

    .hero-banner::after {
        height: 350px;
    }
}


.scroll-down {
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.scroll-down a {
    font-size: 2rem;
    color: white;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(8px);}
    60% {transform: translateY(4px);}
}


.sobre-header {
    width: 100%;
    height: 500px; 
    background-image: url("retangulo.png"); 
    background-size: cover; 
    background-position: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    height: 18vh;
}

.sobre-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.sobre-header p {
    font-size: 25px;
}


.sobre-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 8%;
}

.sobre-img img {
    max-width: 400px;
    border-radius: 8px;
    
}

.sobre-texto {
    max-width: 600px;
    color: #333;
    line-height: 1.6;
    font-size: 19px;
}

.btn-vermelho {
    display: inline-block;
    background-color: #d1150e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-vermelho:hover {
    background-color: #ff3b3b;
}


@media screen and (max-width: 768px) {
    .sobre-container {
        flex-direction: column-reverse; 
        text-align: center;
    }

    .sobre-texto {
        max-width: 100%;
    }

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

.scroll-down {
  text-align: center;
  margin: 20px 0;
}
.scroll-down a {
  font-size: 30px;
  color: #666;
  text-decoration: none;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}


.contatos-header {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 40px; 
  row-gap: 1px;      
}



.contatos-header {
  row-gap: 5px;
  column-gap: 20px;
}


.contato-item p {
  margin: 0;
 }



.produtos-header {
  width: 100vw;
  background-color: #cf150f;
  color: white;
  text-align: center;
  padding: 35px 10px;
  overflow: hidden; 
}

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

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

.contato-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  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;
}




.aplicacoes {
  background-image: url('capaava.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  text-align: center;
}

.aplicacoes .descricao-aplicacoes {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}


.aplicacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}



.aplicacao-card {
  background-color: #f9f9f9ce;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}


.aplicacao-card:hover {
  border: 1px solid red;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}


@media (min-width: 768px) {
  .aplicacao-card {
    max-width: 90%;      
    font-size: 20px;     
    padding: 18px 25px;  
  }
  .aplicacoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .aplicacoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aplicacoes {
  background-image: url('capaavacelular.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  text-align: center;
}

}


/*avaliações*/

.avaliacoes {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff; 
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff; 
}

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

.avaliacao-btn.prev {
  left: 20px;
}

.avaliacao-btn.next {
  right: 20px;
}

/* Dots */
.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: #d1150e;
}

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


   body {
            font-family: Arial, sans-serif;
            background-color: #f3f3f3;
            margin: 0;
            padding: 0;
        }


  * {
  
  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: #cd0c07;
  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: #cd0c07;
  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 {
    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;
    }
}

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



.whatsapp-flutuante {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 1.5s infinite;
}


.whatsapp-flutuante img {
    width: 60px;
    height: 60px;
    display: block;
}


.whatsapp-flutuante:hover {
    transform: scale(1.2);
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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


.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: #d1150e;
  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: #d1150e; 
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-produtos:hover {
  background: #d1150e;
  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;
}


/*página 2*/

.produtos {
   background: url('img/fundosobre.png') center/cover no-repeat;
  padding: 60px;
}

.produtos h2 {
  color: #ffb903;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

/* CARDS */
.cards {
  display: grid;
 grid-template-columns: repeat(4, 1fr); /* 4 POR LINHA */
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 2px solid #00000025; /* BORDA PRETA */
}

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

.card p {
  margin: 15px 0;
  font-weight: 600;
}

.card a {
  display: inline-block;
  background: #d1150e;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.card a:hover {
  background: #000;
}


@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; /* celular */
  }
}

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


/*chat*/

.chat-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  animation: pulse 1.8s infinite;
}

.chat-icon {
  font-size: 20px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* CONTAINER DO CHAT */
.chat-container {
  width: 330px;
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.chat-header {
  background: 25d366;
  color: black;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}


.close-chat {
  cursor: pointer;
}

/* CORPO */
.chat-body {
  padding: 10px;
  max-height: 350px;
  overflow-y: auto;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.chat-message.bot {
  flex-direction: row;
}

.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 8px;
}

.message {
  background: white;
  padding: 8px;
  border-radius: 8px;
  max-width: 230px;
}

.bot-message {
  background: white;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* OPÇÕES */
.options button {
  width: 100%;
  margin-bottom: 6px;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: #25d365f4;
  color: white;
  cursor: pointer;
}

.options button:hover {
  background: #055fc1;
}

.badge {
  position: absolute;
  top: -5px;
  left: -5px;
  background: red;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}
