/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Century Gothic", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 20px;
}

/* ========================
   CABEÇALHO
======================== */
.cabecalho {
  background-color: #FF6600;
  color: #fff;
  padding: 2px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cabecalho .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cabecalho.shrink {
  padding: 0px 0;
  transition: all 0.3s ease;
}

.cabecalho.shrink .logo img {
  height: 30px;
  transition: height 0.3s ease;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.menu a:hover {
  color: #575757;
  transition: color 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* ========================
   BANNER
======================== */
.banner-rotativo {
  background-color: #eee;
}

/* ============================
   EFEITO PARALLAX NO BANNER
============================ */

.parallax-banner{
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('mercados/conexao-e-proposito.png');
  background-size: cover;           /* pode cortar para cobrir */
  background-attachment: fixed;     /* parallax no desktop */
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.parallax-banner h1 {
  font-size: 36px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  max-width: 90%;
}

.banner-img img {
  width: 100%;
  height: auto;
  display: block;
}
/* ====== Banner PARALLAX (desktop/tablet) ====== */


/* ====== Banner MOBILE (imagem 100% sem cortes) ====== */
.banner-mobile{
  display: none;                    /* escondido por padrão (desktop) */
  width: 100%;
  background: #fff;                 /* evita “faixas” brancas em volta */
}
.banner-mobile-img{
  display: block;
  width: 100%;
  height: auto;                     /* mantém a imagem inteira (sem corte) */
  aspect-ratio: 16/9;               /* reserva espaço e reduz CLS (ajuste se sua arte for outra proporção) */
  object-fit: contain;              /* garante imagem inteira visível */
  object-position: center top;      /* foco no topo se necessário */
}

/* ====== Breakpoint: só celular ====== */
@media (max-width: 768px){
  .parallax-banner{ display: none; } /* oculta parallax no mobile */
  .banner-mobile{ display: block; }  /* mostra o banner de imagem no mobile */
}

/* ========================
   TEXTO INTRODUTÓRIO
======================== */
.secao-texto h2 {
  color: #575757;
  margin-bottom: 10px;
  font-size: 28px;
  text-align: center;
}

.secao-texto p {
  font-size: 18px;
}
/* ========================
   SEÇÃO CLIENTES
======================== */
.secao-clientes {
  background-color: #f7f7f7;
  padding: 40px 0;
}

.secao-clientes h2 {
  color: #575757;
  margin-bottom: 20px;
  text-align: center;
}

.chamadas-clientes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card-chamada {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-decoration: none;
  color: #333;
  width: 100%;
  max-width: 480px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-chamada i {
  font-size: 32px;
  color: #FF6600;
  min-width: 32px;
}

.card-chamada h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #575757;
}

.card-chamada p {
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}

.card-chamada:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ========================
   CARROSSEL DE LOGOS
======================== */
.carrossel-clientes {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  background-color: transparent; /* Sem fundo branco */
}

.slide-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.logo-cliente {
  flex: 0 0 auto;
  width: 200px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-cliente img {
  max-width: 100%;
  height: auto;
  transition: none; /* Remove transições */
  filter: none;      /* Remove preto e branco */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   BOTÃO GALERIA
======================== */
.secao-botao-galeria {
  margin: 0 0 40px 0;
}

.botao-galeria {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #FF6600;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.botao-galeria:hover {
  background-color: #575757;
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ========================
   SEÇÃO PRODUTOS
======================== */
.secao-produtos {
  padding-top: 40px;
  padding-bottom: 0;
}

.secao-produtos h2 {
  color: #575757;
  margin-bottom: 20px;
  text-align: center;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.produto {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.produto:hover {
  transform: scale(1.05);
  border-color: #FF6600;
  color: #FF6600;
}

.imagem-produto {
  width: 100%;
  height: 120px;
  margin-bottom: 40px;
}

.produto-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.secao-extra-produtos {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* ========================
   RODAPÉ MODERNO
======================== */
.rodape {
  background-color: #575757;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.rodape-conteudo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.coluna {
  flex: 1;
  min-width: 260px;
}

.coluna h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #FF6600;
}

.coluna p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.coluna button {
  display: block;
  width: 60%;
  margin: 8px 0;
  background-color: #FF6600;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coluna button:hover {
  background-color: #e25400;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rodape-base {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #ccc;
}

/* Ícones Redes Sociais */
.icones-redes {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.icone-social {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icone-social:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.instagram { background-color: #E4405F; }
.facebook  { background-color: #1877F2; }
.linkedin  { background-color: #0077B5; }
.blog      { background-color: #ff6600; }
.youtube   { background-color: #FF0000; }

/* ========================
   RESPONSIVO
======================== */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    background-color: #FF6600;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100vw;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .menu.ativo {
    display: flex;
  }

  .menu a {
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
  }

  .parallax-banner {
    background-attachment: scroll;
    min-height: 380px;
    width: 100%;
    background-position: center center;
    background-size: cover;
  }

  .parallax-banner h1 {
    font-size: 24px;
    padding: 15px;
  }

  .rodape-conteudo {
    flex-direction: column;
    align-items: center;
  }

  .coluna {
    text-align: center;
  }

  .coluna button {
    width: 100%;
  }

  .produtos {
    grid-template-columns: 1fr;
  }
}
