
/* =========================
RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
CONFIG GLOBAL (ESCALA)
========================= */
html {
  font-size: 80%;
}

/* =========================
CORREÇÃO DE ESPAÇOS ENTRE SEÇÕES
========================= */
.catalogo,
.servicos,
.garantia,
.depoimentos,
.contato {
  padding: 40px 0; /* antes era 80px */
}

/* =========================
REMOÇÃO DE CÓDIGO QUEBRADO
(linhas soltas removidas)
========================= */
/* REMOVIDO:
transition: all 0.25s ease;
transform: translateY(10px);

transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.3s ease;
*/

/* =========================
BODY
========================= */
body {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  background: #ffffff;
  color: #000000;
}

/* =========================
CONTAINER
========================= */
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
NAVBAR
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 200px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 19px;
}

.btn-primary {
  background: #3df079;
  color: black;
  padding: 18px 45px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

/* =========================
========================= */
.hero {
  padding-top: 80px; /* ajustado */
  padding-bottom: 0px;
  background: linear-gradient(to bottom, #7c7b7b, #ffffff);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.hero-title + p {
  margin-top: 0 !important;
}

.hero-title {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 0px;
}

#texto-branco {
  color: #ffffff !important;
  font-size:30px ;
}

.hero-title span {
  color: #000000;
}

.hero-experience3 {
  margin-top: 5px;
  font-size: 18px;
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
}

.hero-experience2{
  font-size: 28px;
  
}

.hero-description,p {
  margin-top: 12px;
  color: #333;
  font-size: 20px;
}

.hero-image img {
  max-width: 110vh;
  width: 100%;
  margin-top: 50px;
}


.hero-buttons {
  margin-top: 45px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-image .image-wrapper img {
  transform: translateY(-100px);
}

.image-wrapper {
  animation: float 4s ease-in-out infinite;
}

#semi-novo{
  font-size: 30px;
  color: white;
  display: inline-block;
  transform: translateY(-15px);
}

@keyframes float {
  0% { transform: translateY(0px);}
  50% { transform: translateY(-10px);}
  100% { transform: translateY(0px);}
}

/* =========================
CATÁLOGO
========================= */

.catalogo-header {
  display: block;
  width: 100%;
  margin-top: 50px;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.produto-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee; /* 👈 leve divisão */
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);  
}

.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


.catalogo-header p,
.catalogo-header .tag {
  margin-top: 25px;
  font-size: 22px;
  text-align: center;
  gap: 10px;
}

.catalogo-header h2{
  margin-top: 2px;
  font-size: 35px;
  text-align: center;
}

#catalogo {
  margin-top: -50px !important;
}

.produto-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

#iphone {
  width: 100%;
  max-width: 185px;
  display: block;
  margin: 0 auto;
}


#iphone16pro {
  max-width: 350px;
  width: 100%;
}

#iphone16promax {
  width: 100%;
  max-width: 185px;
  display: block;
  margin: 0 auto;
}

.produto-card h3 {
  margin-top: 18px; /* desce o título */
  text-align: center;
  font-size: 22px;
}

.produto-card p {
  margin-top: 5px; /* menor espaço entre título e descrição */
  text-align: center;
}
/* BADGES */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.hidden {
  display: none;
}

.catalogo-toggle {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-toggle {
  background: #000000;
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-toggle:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

.produto-card:nth-child(n+5) {
  display: none;
}

.produto-card::before,
.produto-card::after {
  display: none !important;
  content: none !important;
}




.novo { background: #0071e3; color: white; }
.seminovo { background: #222; color: white; }
.estoque { background: #ffe5e5; color: red; }

/* =========================
SERVIÇOS
========================= */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  transition: 0.3s;
  border: 1px solid #eee; /* divisão leve */
  box-shadow: 0 5px 15px rgba(0,0,0,0.04); /* sombra suave */

}

.servico-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.servicos-header {
  text-align: center;
  margin-bottom: 40px; /* espaço antes dos cards */
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; 
}

.servicos-header .tag {
  font-size: 26px;
  letter-spacing: 1px;
}

.servicos-header h2 {
  font-size: 32px;        /* aumenta título */
  margin-top: 10px;
  margin-bottom: 10px;
}

.servicos-header p {
  font-size: 20px;
  line-height: 1.6;       /* espaço entre linhas */
  margin-top: 10px;
}

.servicos-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.servico-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  margin-top: 0;
}

.servico-card p {
  line-height: 1.6;
  color: #555;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.check-list li {
  margin-bottom: 6px;
  font-size: 20px;
  color: #333;
}
/* =========================
GARANTIA
========================= */
.garantia {
  background: linear-gradient(135deg,#0f0f0f,#1a1a1a);
  color: white;
  text-align: center;

  padding: 120px 0;

  display: flow-root; /* 👈 ESSA LINHA RESOLVE */
}

.garantia .container {
  display: flex;
  flex-direction: column;
   height: auto;
}

.garantia-title span {
  color: #ffffff;
}

.garantia-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-top: 40px
}

.garantia-card {
   background: white;
  padding: 25px;
  border-radius: 15px;

  display: flex;
  flex-direction: column;
}

.garantia-card:hover {
  transform: translateY(-5px);
}


.garantia-title h2{
  font-size: 30px;
  color: white;
}

.garantia-card img{
 width: 100%;
  height: auto; /* 👈 ESSENCIAL */
  object-fit: contain; /* 👈 MOSTRA TUDO */
  border-radius: 12px;
  color:black;

   background: #f5f5f5;
  padding: 10px;
}


.garantia-section{
  padding: 100px 20px 320px;
}

.garantia-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.garantia-description {
  font-size: 20px;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
}

#compre{
  color: white;
}

/* =========================
DEPOIMENTOS
========================= */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
  background: red !important;
  overflow-y: hidden;
}

.depoimento-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  max-width: 280px;
  margin: 10px auto;
  text-align: left;
}

.depoimento-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;

  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);

  text-align: left;
  transition: 0.3s;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 30px;
}

depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.depoimentos img{
  width: 15%;
}

.depoimentos-header h2{
  font-size: 30px;
}

.depoimentos {
  margin-top: 0;
  padding: 80px 20px;
  background: #f5f5f7;

  position: relative;
  z-index: 0;
  
}

.depoimentos-header img {
  width: 140px;
  margin-bottom: 10px;
}

.depoimentos-header h2 {
    font-size: 32px;
  margin-bottom: 5px;
}

.avaliacao-geral {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.stars {
  color: #f5b50a;
  margin-bottom: 10px;
  font-size: 18px;
}

.depoimento-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.depoimento-card strong {
  display: block;
  font-size: 14px;
}

.depoimento-card span {
  font-size: 12px;
  color: #fffbfb;
}

.depoimento-card strong {
  font-size: 14px;
  margin-bottom: 2px;
}

.avaliacao-geral {
  font-size: 18px;
  margin-bottom: 30px;
}

.avaliacao-geral {
  font-size: 18px;
  margin-bottom: 30px;
}
.reviews-box {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.review {
  width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);;
}

.review.active {
  display: block;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #f5b50a;
  margin-bottom: 10px;
  font-size: 18px;
}

.review p {
  font-size: 16px;
  line-height: 1.6;
}

.controls {
    display: flex;
  justify-content: center;
  align-items: center;
}

.controls button {
  background: #0071e3;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
}

.review:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

#google {
  display: block;
  margin: 0 auto;
  width: 180px; /* ajusta aqui se quiser menor */
}

/* =========================
MAPA
========================= */
.mapa-container {
  min-height: 350px;
  border-radius: 20px;
  overflow: hidden;
}

/* =========================
CONTATO
========================= */
.contato {
  padding: 60px 20px;
  background: #f5f5f7;
  text-align: center;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee; /* divisão leve */
  box-shadow: 0 5px 15px rgba(0,0,0,0.04); /* sombra suave */
}

.contato-card:hover {
  transform: translateY(-5px);
}

/* LAYOUT CONTATO */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* CARDS EM COLUNA */
.contato-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MAPA */
.contato-right {
  display: flex;
}

.contato-right .mapa-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

/* HEADER CENTRALIZADO */
/* SEÇÃO */
.contato {
  padding: 60px 20px;
  background: #f5f5f7;
  text-align: center;
}

/* CONTAINER PRINCIPAL (DUAS COLUNAS) */
.contato-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
}


/* ESQUERDA (LISTA) */
.contato-lista {
  flex: 0.9; /* menor */
}

/* DIREITA (MAPA) */
.mapa {
   flex: 1.1;
  min-height: 400px;
  border-radius: 18px;
  overflow: hidden;
}

/* CARDS DE CONTATO */
.contato-item {
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: inherit;

  background: #ffffff;
  padding: 25px 20px; /* 👈 AUMENTA ALTURA */

  border-radius: 12px;
  margin-bottom: 15px;
  margin-top: 30px;

  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* ÍCONES */
.icon {
  font-size: 22px;
}

/* TEXTO */
.contato-item strong {
  display: block;
  font-size: 16px;
}

.contato-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.contato-item div {
  display: flex;
  flex-direction: column;
}

.mapa{
  flex: 1;
  height: 100%;
  min-height: 500px; /* 👈 AUMENTA AQUI */

  border-radius: 18px;
  overflow: hidden;
}

.mapa iframe {
   width: 100%;
  height: 100%;
  border: none;
}

.contato-lista,
.mapa {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mapa {
  min-height: 100%;
  height: auto;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 500px; /* 👈 ESSA LINHA É A CHAVE */
  border: none;
}

#whats{
  width: 50px;
}

#insta{
  width: 60px;
}

#localizacao{
  width: 50px;
}

#email{
  width: 50px;
}

#suporte{
  width: 50px;
}

.contato-item strong{
  font-size: 20px;
}

.contato-item p{
  font-size: 20px;
}

/* =========================
CTA FINAL
========================= */
.cta-box {
  background: #f2f2f2;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 80px;
}

/* =========================
FOOTER
========================= */
.footer {
  background-color: #000000;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  color: white;
  padding: 15px 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer-logo img {
  width: 60px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  line-height: 1.8;
  font-size: 14px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer p,
.footer li {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}

.footer a:hover {
  color: white;
}

.footer-bottom{
  text-align: center;
}

/* =========================
ANIMAÇÃO
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
BOTÃO WHATSAPP
========================= */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  background: #25D366;
  color: rgb(3, 3, 3);
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================
RESPONSIVO CORRIGIDO
========================= */

/* TABLET */
@media (max-width: 1024px) {

  .catalogo-grid,
  .servicos-grid,
  .garantia-grid,
  .depoimentos-grid,
  .contato-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* MOBILE */
@media (max-width: 768px) {

  /* HERO */
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 300px;
    margin-top: 20px;
  }

  /* REMOVE BUG DO TRANSFORM */
  .hero-image .image-wrapper img {
    transform: none !important;
  }

  /* TEXTOS */
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-experience3 {
    font-size: 24px;
  }

  .hero-experience2 {
    font-size: 20px;
  }

  /* CONTATO */
  .contato-layout {
    grid-template-columns: 1fr;
  }

}

/* MOBILE PEQUENO */
@media (max-width: 600px) {

  .nav-menu {
    display: none;
  }

  .catalogo-grid,
  .servicos-grid,
  .garantia-grid,
  .depoimentos-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* ESCONDE MENU */
  .nav-menu {
    display: none;
  }

  /* AJUSTA LOGO */
  .logo img {
    width: 140px;
  }

  /* BOTÃO MENOR E AJUSTADO */
  .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 12px;
  }

}

@media (max-width: 768px) {

  .nav-container {
    display: flex;
    flex-wrap: wrap; /* 👈 ESSENCIAL */
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 10px 15px;
  }

  /* LOGO */
  .logo img {
    width: 120px;
  }

  /* MENU */
  .nav-menu {
    display: flex; /* mantém */
    flex-wrap: wrap; /* 👈 ESSENCIAL */
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  /* BOTÃO */
  .btn-primary {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }

}

@media (max-width: 1024px) {
  .btn-primary {
    display: none;
  }
}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .depoimentos-grid::-webkit-scrollbar {
    display: none; /* remove barra */
  }

  .depoimento-card {
    min-width: 85%; /* 👈 mostra 1 por vez */
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
  }

  .depoimentos-grid::-webkit-scrollbar {
    display: none;
  }

  .depoimento-card {
    min-width: 90% !important;
    flex: 0 0 90%;
    scroll-snap-align: center;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 20px;
    padding: 20px;
  }

  .depoimento-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
  }

}

@media (max-width: 768px) {

  .depoimentos .container {
    overflow-x: visible !important;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .depoimento-card {
    padding: 20px;
    border-radius: 16px;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  .depoimento-card {
    width: 90% !important;
    max-width: 90% !important;
    padding: 20px;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  .depoimento-card {
    width: 90% !important;
    max-width: 90% !important;
    padding: 20px;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: block; /* 👈 muda completamente */
  }

  .depoimento-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

}

@media (max-width: 768px) {

  .depoimentos-grid {
    display: block !important;
    background: none !important; /* remove debug vermelho */
  }

  .depoimento-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

}

@media (max-width: 768px) {

  .reviews-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .review {
    width: 95% !important;
    max-width: 95% !important;
    margin-bottom: 20px;
  }

}

@media (max-width: 1024px) {

  .mapa {
    display: none;
  }

}