*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


.header {
  position: fixed;   /* 👈 faz acompanhar a rolagem */
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;     /* 👈 evita ficar atrás de outros elementos */
}






.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 45px;
}

@media (max-width: 900px) {
  .logo img {
    height: 25px;   /* ajuste ideal para mobile */
  }
}


/* Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
    font-weight: 600;
  color: #004f7c;
  text-decoration: none;
  font-size: 14px;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff7a00, #ffc400);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.ativo::after {
  width: 100%;
}

.menu a:hover {
  color: #ec640f;
}

/* Divisor vertical */
.divider {
  width: 1px;
  height: 20px;
  background: #cfcfcf;
}

/* Botão */
.menu-btn a {
  background: #ff8c00;
  color: #fff;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

.menu-btn a:hover {
  background: #175491;
}

.menu-toggle {
  display: none;
}

.menu-toggle {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fde006;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }


.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.menu-mobile {
  display: flex;
}

@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .menu.open {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}




/* ================================================ WhatsApp ===== */


.whatsapp-fixo {
  position: fixed;
  bottom: 24px;
  right: 24px;

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

  z-index: 999;
  cursor: pointer;
}

.whatsapp-fixo img { 
  width: 56px;
  height: 56px;

  /* sombra ao redor do ícone */
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));

  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-fixo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45));
}



/* ================================================ Banner ===== */

.banner {
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
  display: block;
}

/* BOTÃO */
.banner-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;

  background: #ff8c00;
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;

  font-size: 16px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;

  animation: pulse-laranja 2.5s infinite;
}

/* ANIMAÇÃO DE PULSO */
@keyframes pulse-laranja {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

/* HOVER */
.banner-btn:hover {
  transform: translateX(-50%) scale(1.06);
  background: #06aaf1;
  animation: none; /* para o pulso ao passar o mouse */
}

/* CLICK */
.banner-btn:active {
  transform: translateX(-50%) scale(1.1);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .banner {
    display: flex;
    flex-direction: column;
  }

  .banner-btn {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 16px auto 0;
    display: block;

    animation: pulse-laranja 2.5s infinite; /* mantém pulso no mobile */
  }

  .banner-btn:hover {
    transform: scale(1.06);
  }

  .banner-btn:active {
    transform: scale(1.1);
  }
}


/* ================================================ Titulos ===== */




h1 {
  background: -webkit-linear-gradient(#fb8a08, #f7dc0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 2.5rem;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  text-align: center;
}


h2 {
  font-size: 1.2rem;
  color: #f27907;
  margin-top: -6vh;
  margin-bottom: 50px;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  text-align: center;
}


h4 {
  font-size: 1.2rem;
  color: #000000;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.titulomarcas {
  margin-top: 10vh;
  margin-bottom: -8vh;

}




/* ====================================================== OFERTAS ================== */

.ofertas-section {
  text-align: center;
}

.ofertas-section h1 {
  color: #ff8c00;
  font-size: 2.5rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
}

.ofertas-section h2 {
  font-size: 1.2rem;
  color: #f27907;
  margin-top: -6vh;
  margin-bottom: 50px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 400;
}

.ofertas-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.oferta {
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  z-index: 1;
}

.oferta.active {
  transform: scale(1.1);
  filter: grayscale(0);
  z-index: 10;
}

/* CARD PRINCIPAL */
.oferta-card {
  width: 200px;
  aspect-ratio: 3 / 5;
  cursor: pointer;
  z-index: 1;
  perspective: 900px;
  transform: translateZ(0);
  transition: transform 0.4s ease;
  outline: none;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oferta-card:hover {
  transform: scale(1.05);
}

.oferta-card.active {
  z-index: 10;
}

/* Conteúdo interno – agora sem flip 3D de faces, só container normal */
.oferta-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* FACE DA IMAGEM */
.oferta-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.oferta-front {
  background: transparent;
}

/* Imagem de oferta */
.oferta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
}

/* Quando o card estiver "virado": imagem continua visível, porém desfocada */
.oferta-card.is-flipped .oferta-img,
.oferta-card.active .oferta-img {
  filter: blur(3px);
}

/* OVERLAY COM DEGRADÊ + CTA "COMPRE AGORA!" */
.oferta-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Degradê suave de laranja para amarelo, de cima para baixo,
     com leve transparência para a imagem desfocada aparecer por trás */
  background: linear-gradient(
    to bottom,
    rgba(255, 122, 0, 0.85),
    rgba(255, 196, 0, 0.85)
  );

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Quando o card for clicado (estado "virado"), mostra o overlay */
.oferta-card.is-flipped .oferta-back,
.oferta-card.active .oferta-back {
  opacity: 1;
}

.oferta-cta {
  color: #fff;
  font-size: 22px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Botão "veja mais" (mantido como estava) */
.ofertas-vejamais {
  display: flex;
  justify-content: center;
}



.ofertas-vejamais {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-ofertas {
  background: linear-gradient(90deg, #ff7a00, #ffc400);
  color: #fff;
  padding: 14px 48px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ofertas:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(228, 125, 6, 0.25);
}


@media (max-width: 768px) {

  .ofertas-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 20px;
    justify-content: flex-start; /* 🔥 começa do primeiro */
  }

  .ofertas-container::-webkit-scrollbar {
    display: none;
  }

  /* cards menores */
  .oferta-card {
    flex: 0 0 65%;          /* 🔥 menor que antes */
    scroll-snap-align: start; /* 🔥 começa pelo início */
  }

.oferta-card-link {
  display: block;
  text-decoration: none;
}


  .oferta-card:active {
    transform: scale(1.05);
  }
}





/* ================================================ Cards Beneficio ===== */

.beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px 0;
  
  
}

.beneficio-svg {
  width: 300px;       /* controla o tamanho */
  height: auto;
  
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.25));
}



@media (max-width: 768px) {

  .beneficios {
    position: relative;
    width: 100%;
    height: 140px;          /* altura do card */
    margin: 40px 0 20px;
    overflow: hidden;

    display: block;         /* 👈 NÃO flex no mobile */
  }

  .beneficio-svg {
    position: absolute;     /* 👈 sai do fluxo */
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 280px;
    max-width: 90%;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .beneficio-svg.ativo {
    opacity: 1;
    pointer-events: auto;
  }
  
  .beneficios-indicador {
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    margin: 16px auto 0;
    overflow: hidden;
  }

  .indicador-barra {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff7a00, #ffc400);
    border-radius: 4px;
  }
}





/* ================================ Categorias do catalogo ===== */



.categorias-section {
  width: 100%;
  background: #fff;
  padding: 40px 0 20px 0;
}

.categorias-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.categoria-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.categoria-nome {
  font-family: "Baloo 2", sans-serif;
  font-size: 16px;
  color: #ff8c00;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.categoria-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.categoria-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.categoria-item:hover .categoria-icon {
  box-shadow: 0 8px 24px rgba(0, 34, 255, 0.15);
}

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

  .historia-solar {
    padding: 60px 20px;
  }
}


/* ================================================ Nossa Historia ===== */

.historia-solar {
  width: 100%;
  padding: 80px 0;
  background: #fff;
  display: flex;
  justify-content: center;
}


.historia-container {
  display: flex;
  align-items: center;
  gap: 60px;
}


.historia-video {
  width: 520px;       /* controla o vídeo */
  flex-shrink: 0;
}

.historia-video video {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}


.historia-texto {
  width: 460px;
}

.historia-texto p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

@media (max-width: 900px) {
  .historia-container {
    flex-direction: column;
    text-align: center;
  }

  .historia-video,
  .historia-texto {
    width: 100%;
    max-width: 520px;
  }
}





/* ================================================ Nossa Loja ===== */



.lojas-section {
  text-align: center;
  padding: 80px 20px;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}


.lojas-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.loja-card {
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);  
  border-radius: 40px;
  
}

.loja-card img {
  width: 100%;
  height: auto;
  display: block;
  
}

.loja-card p {
  margin: 20px 0 15px;
  font-size: 16px;
  font-weight: 600;
  
  text-align: center;
  color: #2c4a7a;
  max-width: 210px;             /* largura máxima do texto */
  min-height: 48px;             /* altura mínima para igualar os cards */
  margin: 16px auto 10px auto;  /* centraliza horizontalmente */
}

.loja-card p u {
  font-weight: 700;
}

.loja-titulo {
  font-family: "Baloo 2", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #06469a; /* laranja principal */

  padding: 20px 15px 10px;
  margin: 0;

  
}


/* Botão */
.btn-rota {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00, #ffb400);
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 3vh;
}

.btn-rota:hover {
  opacity: 0.9;
}

.marcas-area {
  width: 100%;
  padding: 40px 0;
  background-color: #ffffff;
}

.marcas-container {
  width: 100%;
  overflow: hidden;
}

.marcas-trilha {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marcas-movimento 25s linear infinite;
}

.marcas-trilha img {
  height: auto;          /* CONTROLA O TAMANHO PADRÃO */
  width: 25vh;           /* MANTÉM PROPORÇÃO */
  object-fit: contain;

  opacity: 0.85;
  transition: all 0.3s ease;
}

.marcas-trilha img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ANIMAÇÃO */
@keyframes marcas-movimento {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* ================================================ Seção Formulario ===== */



.secao-atendimento {
  position: relative;
  color: #fff;

  
  min-height: auto;

  padding: 40px 182px;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow: hidden; /* garante que o banner não vaze pra fora */
}

/* Banner de fundo */
.banner-atendimento {
  position: absolute;
  width: 100%;
  z-index: 1;
}

/* Cabeçalho */
.cabecalho-atendimento {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  pointer-events: none;
}





.secao-atendimento::after {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Conteúdo principal (texto + formulário) */
.atendimento-conteudo {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;  /* mantém o formulário no lugar */
  
  gap: 40px;
  width: 100%;
  margin-top: 20px;
  
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

.atendimento-info {
  max-width: 480px;
  align-self: center;  /* centraliza o bloco de horários verticalmente */
}


/* Texto */

.horarios-label {
  font-size: 12px;
  opacity: 0.9;
  
}

.horarios-titulo {
  font-size: 22px;
  margin: 8px 0;
}

.horarios-descricao {
  font-size: 14px;
  margin-bottom: 20px;

}

.horario-item {
  margin-bottom: 10px;
}

.horario-item span {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.horarios-label,
.horarios-titulo,
.horarios-descricao,
.horario-item span {
  text-shadow: 2px 2px 6px rgba(166, 109, 2, 0.6);
}


/* Formulário */
.formulario-box {
  background: #fff;
  color: #4d4b4b;
  padding: 25px;          /* antes 40px, reduzido */
  border-radius: 24px;
  width: 50vh;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.formulario-titulo {
  font-size: 18px;
}

.formulario-atendimento label {
  font-size: 13px;
}

.formulario-atendimento input,
.formulario-atendimento textarea {
  width: 99%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #eee;
  resize: none;
  font-size: 13px;
}

.btn-enviar {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff7a00, #ffc400);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 3vh;
}


@media (max-width: 900px) {

  .secao-atendimento {
    position: relative;
    padding: 40px 20px;
    width: 100%;
    overflow: hidden;
  }

  .banner-atendimento {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .cabecalho-atendimento,
  .atendimento-conteudo {
    position: relative;
    z-index: 2;
  }

  .atendimento-conteudo {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .cabecalho-atendimento {
    order: 0;
    margin-bottom: 12px;
    text-align: center;
  }

  .formulario-box {
    order: 1;
    width: 100%;
    max-width: 360px;      /* 👈 tamanho ideal mobile */
    margin: 0 auto;
    padding: 20px 16px;    /* reduz “peso” visual */
    border-radius: 20px;
  }

  .formulario-titulo {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
  }

  .formulario-atendimento label {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .formulario-atendimento input,
  .formulario-atendimento textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .formulario-atendimento textarea {
    min-height: 80px;    
  }

  .btn-enviar {
    padding: 12px;
    font-size: 14px;
    margin-top: 12px;
  }

  .atendimento-info {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

}






/* =================================================== Roda pé ===== */



.rodape {
  background: #fff;
  padding: 60px 120px;
    font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.rodape-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.rodape-coluna h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
  
}

.rodape-coluna p {
  font-size: 14px;
  margin-bottom: 6px;
}



/* Botões */
.botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-rodape {
  background: linear-gradient(90deg, #ff7a00, #ffc400);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;   /* evita quebrar texto */
  
  
  
}

.btn-rodape.outline {
  background: transparent;
  border: 2px solid #ff7a00;
  color: #ff7a00;
  
}


@media (max-width: 768px) {
  .rodape {
    padding: 40px 20px;
  }

  .rodape-container {
    flex-direction: column;
    gap: 30px;
  }

  .botoes {
    flex-direction: row;
  }
}

.rodape-botoes {
  display: flex;
  flex-direction: column; /* UM ABAIXO DO OUTRO */
  gap: 10px;
  align-items: flex-start; /* mantém alinhado à esquerda */
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

.rodape-logo {
  height: 5vh !important;
  width: auto !important;
  max-height: none;
  max-width: none;
}




.footer-social img {
  height: 4vh;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}



footer {
  position: relative;
  margin-top: 80px;
  overflow: visible;
    clear: both;
  z-index: 1;
}



.logo-e-redes {
  display: flex;
  align-items: center; /* 🔥 AQUI está a correção */
  gap: 80px;
}



.redes-icones {
  display: flex;
  gap: 12px;
}

.redes-icones img {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {

  .rodape {
    padding: 40px 20px;
  }

  .rodape-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  /* LOGO + REDES */
  .logo-e-redes {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .redes-bloco h4 {
    margin-bottom: 10px;
  }

  .redes-icones {
    justify-content: center;
  }

  /* BOTÕES */
  .rodape-botoes {
    align-items: center;
    gap: 14px;
  }

  .btn-rodape {
    width: 220px; /* padrão visual */
  }

  /* COLUNAS DE TEXTO */
  .rodape-coluna {
    text-align: center;
  }

  .rodape-coluna h4 {
    margin-bottom: 8px;
  }
 }