body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #002b5c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  z-index: 1000;
}

header img {
  height: 45px;
}

nav a {
  color: #fff;
  margin: 0 35px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.swiper {
  width: 100%;
  height: 400px;
  margin-top: 65px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.slide1 {
  background: #0056b3 url('/Imagens/Banner1.svg') center/cover no-repeat;
  aspect-ratio: 4 / 1;
  width: 100%;
}

.slide2 {
  background: #008f68 url('/Imagens/banner2.svg') center/cover no-repeat;
  aspect-ratio: 4 / 1;
  width: 100%;
}

.slide3 {
  background: #b30059 url('/Imagens/banner3.svg') center/cover no-repeat;
  aspect-ratio: 4 / 1;
  width: 100%;
}

.slide4{
  background: #13bd73 url('/Imagens/banner4.svg') center/cover no-repeat;
  aspect-ratio: 4 / 1;
  width: 100%;
}   


.slide5{
  background: #13bd73 url('/Imagens/banner5.svg') center/cover no-repeat;
  aspect-ratio: 4 / 1;
  width: 100%;
}

.slide6{
  background: #13bd73 url('/Imagens/banner6.svg') center/cover no-repeat;
  aspect-ratio: 4 / 1;
  width: 100%;
}


/* === VERSÃO MOBILE (substitui imagens e altura) === */
@media (max-width: 768px) {
  .slide1 {
    background: #0056b3 url('/Imagens/bannercel1.svg') center/cover no-repeat;
    min-height: 400px;
  }
  .slide2 {
    background: #008f68 url('/Imagens/bannercel2.svg') center/cover no-repeat;
    min-height: 400px;
  }
  .slide3 {
    background: #b30059 url('/Imagens/bannercel3.svg') center/cover no-repeat;
    min-height: 400px;
  }
  .slide4 {
    background: #13bd73 url('/Imagens/bannercel4.svg') center/cover no-repeat;
    min-height: 400px;
  }
  .slide5 {
    background: #13bd73 url('/Imagens/bannercel5.svg') center/cover no-repeat;
    min-height: 400px;
  }
  .slide6 {
    background: #13bd73 url('/Imagens/bannercel6.svg') center/cover no-repeat;
    min-height: 400px;
  }
}


.categorias {
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.categoria {
  background: #f5f5f5;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.categoria:hover {
  transform: translateY(-5px);
}

.categoria img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.quem-somos {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #f1f1f1; /* cor de fundo leve */
}

.quem-somos img {
  width: 350px;
  height: auto;
  border-radius: 10px;
}

.quem-somos div {
  max-width: 600px;
}

.quem-somos h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #142C3B; /* cor escura para contraste */
}

.quem-somos p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .quem-somos {
    flex-direction: column;
    text-align: center;
  }

  .quem-somos img {
    width: 100%;
    max-width: 300px;
  }

  .quem-somos div {
    max-width: 100%;
  }

  .quem-somos h2 {
    font-size: 28px;
  }

  .quem-somos p {
    font-size: 16px;
  }
}

.depoimentos {
  text-align: center;
  padding: 50px 20px;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 60px 0;
}

.depoimentos h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #1a1a1a;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Poppins:wght@300;400;600&display=swap');

/* Texto do depoimento */
.depo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300; /* fino */
  font-size: 1.15rem;
  line-height: 1.6;
  color: #222;
  font-style: italic;
}

/* Nome do cliente */
.depo-nome {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* mais destacado */
  font-size: 1.05rem;
  color: #111;
}

/* Tempo do depoimento */
.depo-tempo {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
}

.depo-card {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
}

.stars {
  color: gold;
  font-size: 1.6rem; /* levemente maior */
  margin-bottom: 15px;
}
.texto {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
}

.cliente-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.cliente-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.cliente-info span {
  font-size: 0.9rem;
  color: #777;
}


footer {
  background-color: #002b5c;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}


/*botão flutuante*/

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #3CC671;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 60px;  /* aumente para 50px se quiser maior ainda */
  height: 60px;
}

.produto-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  width: 100%;
  max-width: 250px;
  display: block;
}

.produto-card:hover {
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.produto-conteudo {
  padding: 15px;
  text-align: center;
}

.produto-conteudo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

.categoria {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.produto-conteudo h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 4px 0;
}

.avaliacoes {
  color: #bbb;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.descricao {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 10px;
}

.preco {
  font-size: 1.0rem;
  font-weight: bold;
  color: #0B2AF6  /* Azul vibrante escuro */
;
}

.preco .unidade {
  font-size: 0.85rem;
  color: #555;
}





/*Configuraçao Catalago Grade*/

.titulo-solucoes {
  text-align: left;
  margin-left: 30px; /* Ajuste a posição lateral */
}

.produto img {
  height: 200px; /* ajuste conforme necessidade */
  width: auto;   /* mantém proporção */
  object-fit: contain; /* para não deformar imagens */
}

.produto {
  height: 500px; /* altura fixa para manter alinhamento */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.produtos-grid-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.produtos-grid-section h2 {
  font-size: 28px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.produtos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;

}


.produto {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.produto img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  border-radius: 6px;
}

.produto h3 {
  font-size: 18px;
  color: #3700fd;
  margin-bottom: 8px;
}

.produto p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
}

.produto .preco {
  color: #e60000;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}

.produto button {
  margin-top: 12px;
  background-color: #22c55e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.produto button:hover {
  background-color: #16a34a;
}
/*coleta dados clientes*/

---


/* Seção externa com margem e centralização */
.cadastro-elegante {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bloco interno com destaque e contraste */
.cadastro-box {
  background-color: #ffffff;
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Título com emoção e hierarquia */
.cadastro-box h2 {
  font-size: 24px;
  color: #1e3a8a;
  margin-bottom: 16px;
}

/* Texto explicativo */
.cadastro-box p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

/* Botão CTA elegante */
.botao-cadastro {
  background-color: #22c55e;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.botao-cadastro:hover {
  background-color: #16a34a;
}

/* RESPONSIVO: Centralizar logo no celular */
@media (max-width: 768px) {
  header .interface {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  header .logotipo-cabecalho {
    text-align: center;
  }

  header .logotipo-cabecalho img {
    max-width: 180px;
    width: 100%;
    height: auto;
  }

  header nav.menu-desktop {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  header nav.menu-desktop button {
    width: 100%;
    max-width: 120px;
    height: auto;
    padding: 8px;
  }
}

/* RESPONSIVO: Carrossel para seção "Últimos Lançamentos" */
@media (max-width: 768px) {
  .produtos-section .produtos-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 20px;
    justify-content: flex-start;
  }

  .produto-card {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 320px;
    scroll-snap-align: center;
    box-sizing: border-box;
  }

  .produtos-section .produtos-grid::-webkit-scrollbar {
    display: none;
    
  }
}

/* RESPONSIVO: Carrossel para seção "Soluções Sob Medida" */
@media (max-width: 768px) {
  .produtos-grid-section .produtos-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 20px;
    justify-content: flex-start;
  }

  .produtos-grid-section .produto-card {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 320px;
    scroll-snap-align: center;
    box-sizing: border-box;
  }

  .produtos-grid-section .produtos-grid::-webkit-scrollbar {
    display: none;
  }
}

/* RESPONSIVO: Ajuste de banner no celular */
@media (max-width: 768px) {
  .swiper.bannerSwiper {
    aspect-ratio: 2.8 / 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
  }

  .swiper.bannerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
}


/* Ajuste para telas pequenas (celular) */
@media screen and (max-width: 768px) {
  .titulo-secao {
    font-size: 20px;
    flex-wrap: wrap;         /* permite quebra de linha */
    white-space: normal;     /* texto quebra normalmente */
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .faixa-banner {
    width: 100%;
    height: 220px; /* altura maior para visual de destaque */
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
}
/* Estilo padrão (desktop) */
.slide1, .slide2, .slide3, .slide4, .slide5 {
    width: 100%;
    aspect-ratio: 4 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* No celular */
@media (max-width: 768px) {
    .slide1, .slide2, .slide3, .slide4, .slide5 {
        aspect-ratio: auto; /* deixa a altura livre */
        height: 180px; /* aumenta a altura para visibilidade */
        background-size: cover; /* preenche o espaço */
        background-position: center;
    }
}

/* === Estilo padrão (desktop) === */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #002b5c; /* cor do cabeçalho permanece */
}

.nav-links {
  display: flex;
  gap: 20px;  
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
}

.hamburger {
  display: none; /* não aparece no desktop */
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* === Estilo somente para celular === */

 @media (max-width: 768px) {
  .hamburger {
    display: block;           /* aparece no celular */
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    
    position: absolute;       /* necessário para mover o ícone */
    top: 15px;                /* posição vertical */
    right: 50px;              /* ajuste: menor valor puxa para a esquerda */
  }


    .nav-links {
    display: none; /* esconde menu normal no celular */
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #002b5c; /* mantém cor do cabeçalho */
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links.active {
    display: flex; /* mostra menu quando clicado */
  }

 }