/*--------------------------------------------
----------------------------------------------
                VARIÁVEIS GLOBAIS (:ROOT)
-----------------------------------------------
----------------------------------------------*/
:root {
  /* --- Identidade Visual Força Máxima --- */
  --cor-primaria: #f7c00c; /* Amarelo principal */
  --cor-primaria-rgb: 247, 192, 12; /* Versão RGB para transparências */
  --cor-primaria-hover: #e0ac00; /* Amarelo mais escuro (hover) */
  --cor-primaria-dark: #b58d0a; /* Amarelo queimado (usado no gradiente) */

  /* --- Cores de Fundo (Dark Mode) --- */
  --bg-dark: #141414; /* Preto quase absoluto (Fundo principal)  #141414*/
  --bg-dark-rgb: 20, 20, 20; /* Versão RGB */
  --bg-secondary: #1c1c1c; /* Cinza muito escuro (Seções secundárias) */
  --bg-footer: #000000; /* Preto absoluto */

  /* --- Tipografia (Escala de Cinza) --- */
  --text-white: #ffffff;
  --text-light: #d1d5db; /* Texto padrão (Cinza claro) */
  --text-lighter: #e5e7eb; /* Texto destaque (Quase branco) */
  --text-medium: #9ca3af; /* Descrições (Cinza médio) */
  --text-dark: #6b7280; /* Texto escuro (Detalhes) */
  --text-on-primary: #141414; /* Texto preto sobre fundo amarelo */

  /* --- Bordas e UI --- */
  --border-dark: #1f2937; /* Bordas sutis */
  --border-hover: #374151; /* Bordas ao passar o mouse */
  --border-input: #4b5563; /* Bordas de botões/inputs */

  /* --- Funcionais --- */
  --whatsapp-green: #22c55e;
  --whatsapp-hover: #16a34a;
}

/*--------------------------------------------
----------------------------------------------
                GLOBAIS
-----------------------------------------------
----------------------------------------------*/

/* --- RESET GLOBAL OBRIGATÓRIO --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  color: var(--text-light);
  background-color: var(--bg-secondary);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#social,
#catalogo,
#produtos,
#diferenciais,
#seletor,
#quemsomos,
#proposito,
#faq,
.footer-completo {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/*--------------------------------------------
----------------------------------------------
                MENU SECTION
-----------------------------------------------
----------------------------------------------*/

#menu-inicial {
  /* Uso do RGB para transparência: rgba(20, 20, 20, 0.8) */
  background-color: rgba(var(--bg-dark-rgb), 0.8);

  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);

  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#menu-nav {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#menu-logo > img {
  height: 6rem;
}

#menu-inicial #menu-nomes {
  display: none;
}

@media (min-width: 768px) {
  #menu-inicial #menu-nomes {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
}

/* Estado Inicial Mobile */
.menu-mobile-container {
  display: none;
  background-color: var(--bg-dark);
  padding: 1rem 1.5rem 1rem 1.5rem;
  width: 100%;
  position: static;
  top: 100%;
  left: 0;
  z-index: 49;
}

.menu-mobile-container.aberto {
  display: block;
}

#mobile-menu-button {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

#mobile-menu-button:focus {
  outline: none;
  color: var(--text-white);
}

#div-mobile-button span {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 768px) {
  #div-mobile-button {
    display: none;
  }
  .menu-mobile-container {
    display: none !important;
  }
  #mobile-menu-button {
    display: none;
  }
}

#menu-inicial #menu-nomes a.menu-nomes-item,
a.menu-nomes-item-mobile {
  color: var(--text-light);
  transition: color 0.2s ease-in-out;
}

a.menu-nomes-item-mobile {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
}

a.menu-nomes-item-botao-mobile {
  display: block;
  margin-top: 0.5rem;
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

a.menu-nomes-item-botao-mobile:hover {
  background-color: var(--cor-primaria-hover);
}

#menu-inicial #menu-nomes a.menu-nomes-item:hover,
.menu-nomes-item-mobile:hover {
  color: var(--cor-primaria);
}

#menu-inicial #menu-nomes a.menu-nomes-item-botao {
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

#menu-inicial #menu-nomes a.menu-nomes-item-botao:hover {
  background-color: var(--cor-primaria-hover);
  color: var(--text-on-primary);
}

/*--------------------------------------------
----------------------------------------------
                HERO SECTION 
-----------------------------------------------
----------------------------------------------*/

#hero {
  color: var(--text-white);
  padding: 64px 0px 64px 0px;
  /* Gradiente usando as variáveis */
  background: linear-gradient(
    -45deg,
    var(--bg-dark),
    var(--bg-secondary),
    var(--cor-primaria-dark),
    var(--bg-dark)
  );
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
  overflow: hidden;
  will-change: background-position;
}

@media (min-width: 768px) {
  #hero {
    padding: 80px 0 80px 0;
  }
}

#hero-container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  #hero-container {
    flex-direction: row;
  }
}

#hero-text {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  #hero-text {
    width: 50%;
    text-align: left;
  }
}

#hero-text > div {
  position: relative;
  padding-left: 32px;
}

#hero-text > div #hero-traco {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.25rem;
  background-color: var(--cor-primaria);
  border-radius: 9999px;
}

#hero-text > div h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  #hero-text > div h2 {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  #hero-text > div h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

#hero-text > div h2 span {
  color: var(--cor-primaria);
}

/* --- ESTILO DO TÍTULO PRINCIPAL SEO (Agora H1) - Fica Menor --- */
#hero-text > div h1 {
  margin-bottom: 32px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-light);
  max-width: 28rem;
  width: 100%;
  font-weight: 400; /* Garante que não fique em negrito exagerado se não quiser */
}

@media (min-width: 768px) {
  #hero-text > div h1 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.hero-seo-copy {
  margin: -0.75rem 0 1.5rem;
  max-width: 34rem;
  color: var(--text-lighter);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-seo-copy {
    font-size: 1rem;
  }
}

#hero-text > div > a {
  display: inline-block;
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
  padding: 12px 32px 12px 32px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
  /* Sombra usando RGB da cor primaria */
  box-shadow:
    0 10px 15px -3px rgba(var(--cor-primaria-rgb), 0.2),
    0 4px 6px -2px rgba(var(--cor-primaria-rgb), 0.2);
}

#hero-text > div > a:hover {
  background-color: var(--cor-primaria-hover);
}

#hero-text > div div#hero-telefone {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-medium);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 768px) {
  #hero-text > div div#hero-telefone {
    justify-content: start;
  }
}

#hero-telefone svg {
  height: 16px;
  width: 16px;
  color: var(--cor-primaria);
}

#hero-telefone span a {
  font-weight: 600;
  color: var(--text-white);
}

#hero-telefone span a:hover {
  color: var(--cor-primaria);
}

#hero-container #hero-imagem {
  display: none;
  width: 100%;
}

@media (min-width: 768px) {
  #hero-container #hero-imagem {
    display: block;
    width: 50%;
  }
}

#hero-container #hero-imagem img {
  width: 100%;
  height: auto;
  transform: scale(1.1);
  margin-right: -2rem;
}

/*--------------------------------------------
----------------------------------------------
                PROVA SOCIAL
-----------------------------------------------
----------------------------------------------*/

section#social {
  background-color: var(--bg-dark);
  padding: 48px 0 48px 0;
  border-bottom: 1px solid #161616;
}

section#social div#social-conjunto {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

section#social div#social-conjunto h3 {
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

/*--------------------------------------------
----------------------------------------------
                DIFERENCIAIS COMPETITIVOS
-----------------------------------------------
----------------------------------------------*/

#diferenciais {
  padding-top: 48px;
  padding-bottom: 80px;
  background-color: white;
}

.diferenciais-container {
  width: 90%; /* Evita que cole nas bordas em telas médias */
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px; /* Aumentei o espaço entre um card e outro para dar respiro */
}

.diferenciais-titulo-principal {
  font-size: 2rem;
  margin: 0 auto;
  color: black;
}

.diferenciais-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: black;
}

.diferenciais-descricao {
  color: rgb(56, 56, 56);
}

.diferenciais-descricao-destaque {
  font-weight: bold;
}

.diferenciais-card,
.diferenciais-card-inverse {
  display: flex;
  justify-content: space-between; /* Empurra os elementos para as extremidades com critério */
  align-items: center;
  gap: 60px; /* Espaço maior entre a imagem e o texto */
}

.diferenciais-card {
  flex-direction: row;
}

.diferenciais-card-inverse {
  flex-direction: row-reverse;
}

/* Ajuste na imagem para ela nunca estourar o container */
.diferenciais-card-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.diferenciais-card-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.diferenciais-card-div div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.diferenciais-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow:
    0 10px 15px -3px rgba(var(#000000), 0.2),
    0 4px 6px -2px rgba(var(--cor-primaria-rgb), 0.2);
}

/* -----------------------------------------------
   MEDIA QUERY PARA MOBILE (ATÉ 768px)
----------------------------------------------- */
@media (max-width: 768px) {
  /* Resetamos as duas classes para column simples */
  .diferenciais-card,
  .diferenciais-card-inverse {
    flex-direction: column !important; /* O !important garante que o row-reverse morra aqui */
    text-align: center;
    gap: 30px;
  }

  .diferenciais-card-div {
    /* Centraliza os itens na coluna, mas o botão seguirá o tamanho do conteúdo */
    align-items: center;
    text-align: center;
  }

  .diferenciais-btn {
    /* Garante que o botão não estique para a largura total da div */
    width: fit-content;
    align-self: center;
  }

  .diferenciais-card-img {
    width: 100%;
    max-width: 450px; /* Evita que a imagem fique gigante em tablets */
  }
}

/*--------------------------------------------
----------------------------------------------
          SEÇÃO OFERTA DE VALOR (PRODUTOS)
-----------------------------------------------
----------------------------------------------*/

.oferta-section {
  background-color: white;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.oferta-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.oferta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.oferta-titulo {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.oferta-descricao {
  color: var(--text-medium);
  font-size: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.oferta-card {
  background-color: var(--bg-dark);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid #3d3c3c;
  box-shadow: 0 0 30px rgba(#000000, 0.25);
}

.oferta-card-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .oferta-card-flex {
    flex-direction: row;
  }
}

.oferta-img-container {
  width: 100%;
}

@media (min-width: 768px) {
  .oferta-img-container {
    width: 50%;
    flex-shrink: 0;
  }
}

.oferta-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.oferta-conteudo {
  width: 100%;
}

@media (min-width: 768px) {
  .oferta-conteudo {
    width: 50%;
  }
}

.oferta-card-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.oferta-destaque-amarelo {
  color: var(--cor-primaria);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.oferta-texto {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.oferta-texto-brands {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-top: 1rem;
}

.texto-branco {
  font-weight: 600;
}

.oferta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow:
    0 10px 15px -3px rgba(var(#000000), 0.2),
    0 4px 6px -2px rgba(var(--cor-primaria-rgb), 0.2);
}

.oferta-btn:hover {
  background-color: var(--cor-primaria-hover);
}

/* =========================================
   SEÇÃO CATÁLOGO DE PRODUTOS (Layout 2 Colunas Mobile)
   ========================================= */

.catalogo-section {
  background-color: var(--bg-dark);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.catalogo-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  /* Reduzi o padding lateral do container para ganhar espaço para os cards */
  padding: 0 1rem;
}

.catalogo-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.catalogo-titulo {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.titulo-destaque {
  color: #ffc300;
}

.catalogo-subtitulo {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* --- GRID DO CATÁLOGO --- */
.catalogo-grid {
  display: grid;
  text-align: center;

  /* MUDANÇA PRINCIPAL: 2 Colunas no Mobile */
  grid-template-columns: repeat(2, 1fr);

  /* Espaço menor entre os cards para caberem bem */
  gap: 0.75rem;

  /* Removi aquele padding extra lateral que espremia o conteúdo */
  padding-left: 0;
  padding-right: 0;
}

/* --- ESTILO DO CARD (MOBILE) --- */
.catalogo-card {
  background-color: var(--bg-dark);
  /* Padding interno menor para sobrar espaço pra imagem e texto */
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 0.1px solid #6f5500;
  display: flex;
  flex-direction: column;

  height: auto;
  min-height: 0;
}

/* --- IMAGEM (MOBILE) --- */
.catalogo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* Mantém retangular */
  object-fit: contain; /* Mostra inteira sem cortar */
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
  background-color: #000;
}

/* --- TEXTOS (Ajustados para caber em 2 colunas) --- */
.catalogo-nome {
  /* Fonte levemente menor no mobile para não quebrar em 3 linhas */
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.catalogo-desc {
  font-size: 0.75rem; /* Descrição menorzinha */
  color: var(--text-medium);
  flex-grow: 1;
  margin-bottom: 0.75rem;
}

.catalogo-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  background-color: #927001;
  color: var(--text-light);

  /* Botão mais compacto no mobile */
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.6rem 0.2rem; /* Menos padding lateral */

  border-radius: 0.375rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

/* =========================================
   REGRAS PARA TABLET E PC (Mantendo o original)
   ========================================= */

@media (min-width: 640px) {
  .catalogo-section {
    padding-top: 4rem;
    padding-bottom: 7rem;
  }

  .catalogo-section .container {
    padding: 0 1.5rem; /* Volta o padding normal */
    /* sla */
  }

  .catalogo-grid {
    /* No Tablet/PC volta a ter gap maior */
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .catalogo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalogo-card {
    height: 350px; /* Altura fixa no PC */
    padding: 1.5rem;
    width: 90%;
  }

  /* Ajustes da Imagem no PC */
  .catalogo-img {
    height: 11rem;
    aspect-ratio: auto;
    object-fit: cover; /* Zoom para preencher */
    margin-bottom: 1rem;
  }

  /* Ajustes de Texto no PC (Volta ao tamanho original) */
  .catalogo-nome {
    font-size: 1.125rem;
  }
  .catalogo-desc {
    font-size: 0.875rem;
  }
  .catalogo-btn {
    font-size: 0.75rem;
    padding: 0.7rem 1rem;
  }
}

/* =======================================================
   SEÇÃO KITS (SEU ESTILO ORIGINAL PC)
   ======================================================= */
.destaque-kit-hidraulico {
  margin-top: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 60px;
  /* Garante que não vaze a tela em monitores menores */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.destaque-kit-hidraulico-1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
}

.destaque-kit-hidraulico-1-title-destaque {
  color: var(--cor-primaria);
}

.destaque-kit-hidraulico-1-list {
  align-self: flex-start;
  display: inline-block;
  padding-left: 20px;
}

.destaque-kit-hidraulico-1 p,
.destaque-kit-hidraulico-1 li {
  color: #dadada;
}

.destaque-kit-hidraulico-1 a {
  margin-top: 20px;
  align-self: flex-start;
  display: inline-block;
  padding: 10px;
  color: var(--text-on-primary);
  background-color: var(--cor-primaria);
  font-weight: 600;
  border-radius: 0.375rem;
}

.destaque-kit-hidraulico-2 {
  width: 50%;
  /* Centraliza a imagem na div dela */
  display: flex;
  justify-content: center;
}

.destaque-kit-hidraulico-2 img {
  width: 550px;
  border-radius: 20px;
  /* Garante que a imagem nunca estoure o container */
  max-width: 100%;
  height: auto;
}

/* =======================================================
   RESPONSIVIDADE (MOBILE)
   Aqui a mágica acontece
   ======================================================= */
@media (max-width: 900px) {
  .destaque-kit-hidraulico {
    margin-top: 50px; /* Diminui a margem no mobile */
    /* INVERTE A ORDEM: Imagem vai pro topo, Texto vai pra baixo */
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0 1.5rem; /* Margem lateral para não colar na borda do celular */
  }

  /* Faz as divs ocuparem a largura total */
  .destaque-kit-hidraulico-1,
  .destaque-kit-hidraulico-2 {
    width: 100%;
    align-items: center; /* Centraliza itens */
    text-align: center; /* Centraliza texto */
  }

  /* Centraliza o botão e a lista no mobile */
  .destaque-kit-hidraulico-1-list,
  .destaque-kit-hidraulico-1 a {
    align-self: center;
    text-align: left; /* Lista fica estranha centralizada, mantive left */
  }

  /* Ajusta imagem para caber na tela do celular */
  .destaque-kit-hidraulico-2 img {
    width: 100%;
    max-width: 400px; /* Tamanho bom pro mobile */
  }
}

/* =========================================
   SEÇÃO QUEM SOMOS
   ========================================= */

.quemsomos-section {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 3rem;
  color: var(--text-white);
  overflow: hidden;
  background-color: var(--bg-dark);
}

.quemsomos-linha-titulo {
  width: 140px;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 5px;
}

.quemsomos-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.quemsomos-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--bg-dark-rgb), 0.8);
}

.quemsomos-conteudo {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 20px;
}

.quemsomos-img {
  object-fit: contain;
  width: 100%;
  border-radius: 10px;
  max-width: 600px;
  height: auto;
  display: block;
}

.quemsomos-div1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  align-items: start;
  justify-content: start;
  text-align: left;
}

@media (min-width: 768px) {
  .quemsomos-conteudo {
    flex-direction: row;
    gap: 80px;
    align-items: center;
  }

  .quemsomos-div1 {
    width: 40%;
    align-items: start;
    justify-content: center;
    text-align: left;
  }
}

.quemsomos-div2 {
  z-index: 10;
}

@media (min-width: 768px) {
}

.quemsomos-titulo {
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .quemsomos-titulo {
    font-size: 2.5rem;
  }
}

.quemsomos-texto {
  color: rgb(188, 188, 188);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  max-width: 56rem;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.quemsomos-destaque {
  font-size: 1rem;
}

.quemsomos-btn {
  background-color: var(--cor-primaria);
  width: 200px;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  border: none;
  margin-top: 20px;
}

.quemsomos-btn:hover {
  background-color: var(--cor-primaria-hover);
}

.quemsomos-btn a {
  background: none;
  color: var(--text-on-primary);
}
/* =========================================
   SEÇÃO COMPROMISSO
   ========================================= */

.compromisso-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: var(--text-white);
  overflow: hidden;
  background-color: var(--bg-dark);
}

@media (min-width: 900px) {
  .compromisso-section {
    padding-bottom: 10rem;
  }
}

.compromisso-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.compromisso-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: bottom;
  filter: brightness(0.3);
}

.compromisso-conteudo {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.compromisso-titulo {
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.compromisso-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .compromisso-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.compromisso-card {
  background-color: rgba(var(--bg-dark-rgb), 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
}

.compromisso-card:hover {
  border-color: rgba(var(--cor-primaria-rgb), 0.5);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05),
    0 0 15px rgba(var(--cor-primaria-rgb), 0.1);
}

.compromisso-icon-box {
  display: inline-block;
  padding: 1rem;
  background-color: var(--bg-dark);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.compromisso-icon {
  width: 2rem;
  height: 2rem;
  color: var(--cor-primaria);
}

.compromisso-card-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cor-primaria);
  margin-bottom: 1rem;
}

.compromisso-texto {
  color: var(--text-light);
  line-height: 1.625;
}

/* =========================================
   SEÇÃO FAQ (DÚVIDAS FREQUENTES)
   ========================================= */

.faq-section {
  background-color: white; /* Mantém fundo branco limpo */
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #eee; /* Separação sutil do rodapé */
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-titulo {
  font-size: 1.875rem;
  font-weight: 700;
  color: #141414; /* Cor escura padrão */
  margin-bottom: 0.5rem;
}

.faq-destaque {
  color: var(--cor-primaria); /* O amarelo da marca */
  position: relative;
  display: inline-block;
}

/* Pequeno sublinhado no destaque */
.faq-destaque::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--cor-primaria);
  margin-top: 2px;
  border-radius: 2px;
  opacity: 0.6;
}

.faq-subtitulo {
  color: var(--text-dark); /* Cinza escuro */
  font-size: 1rem;
  max-width: 40rem;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px; /* Largura contida para leitura confortável */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Estilo do Card da Pergunta */
details.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Borda cinza suave */
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

details.faq-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Quando aberto, destaca a borda */
details.faq-item[open] {
  border-color: var(--cor-primaria);
  background-color: #fffcf0; /* Um fundo amarelo super pálido sutil */
}

summary.faq-pergunta {
  padding: 1.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #141414;
  cursor: pointer;
  list-style: none; /* Remove o triângulo padrão feio */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

/* Remove marcador padrão em alguns navegadores (Webkit) */
summary.faq-pergunta::-webkit-details-marker {
  display: none;
}

summary.faq-pergunta:hover {
  color: var(--cor-primaria-dark);
}

/* O Ícone (+) */
.faq-icon {
  color: var(--cor-primaria);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Gira o ícone quando aberto */
details.faq-item[open] .faq-icon {
  transform: rotate(45deg); /* Vira um X */
  color: #141414;
}

.faq-resposta {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: var(--text-dark); /* Cinza escuro para leitura */
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid transparent;
  animation: slideDown 0.3s ease-out;
}

/* Animação simples de entrada */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajuste Mobile */
@media (max-width: 640px) {
  .faq-titulo {
    font-size: 1.5rem;
  }
  summary.faq-pergunta {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

/* =========================================
   RODAPÉ UNIFICADO (MEGA FOOTER)
   ========================================= */

.footer-completo {
  background-color: white; /* Garante que tudo tenha a mesma cor */
  padding-top: 7rem;
  color: var(--text-dark);
}

.footer-grid {
  display: flex;
  flex-direction: column; /* Mobile First: Um embaixo do outro */
  gap: 3rem;
  padding-bottom: 7rem;
}

/* --- LADO ESQUERDO: INFORMAÇÕES --- */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: white;
}

.footer-titulo {
  font-size: 1.75rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.5rem;
}

.footer-dados p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-dados strong {
  color: black;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: black;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}

.footer-social img {
  opacity: 0.8;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.footer-social img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Botão WhatsApp Estilizado */
.whatsapp-btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  width: 100%; /* Full width no mobile */
}

.whatsapp-btn-footer:hover {
  background-color: #25d366;
  color: #fff;
}

/* --- LADO DIREITO: FORMULÁRIO --- */
.footer-form-container {
  background-color: rgb(241, 241, 241); /* Fundo super leve para destacar */
  padding: 2rem;
  border-radius: 7px;
  border: 1px solid #333;
}

.footer-chamada {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-form input,
.footer-form textarea,
.footer-form select {
  font-family: inherit;
  width: 100%;
  padding: 14px;
  background-color: white; /* Mais escuro que o fundo */
  border: none;
  border-radius: 7px;
  color: rgb(109, 109, 109);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.footer-form textarea {
  height: 120px;
  resize: vertical;
}

.footer-form input:focus,
.footer-form textarea:focus,
.footer-form select:focus {
  border-color: var(--cor-primaria);
}

.footer-submit-btn {
  background-color: var(--cor-primaria-dark);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 5px;
}

.footer-submit-btn:hover {
  background-color: var(--cor-primaria-hover);
}

.seo-footer {
  background-color: #000000;
  border-top: 2px solid #ffcd11;
  border-bottom: 2px solid #ffcd11;
  padding: 12px 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.seo-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.seo-marquee + .seo-marquee {
  margin-top: 8px;
}

.seo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  padding-right: 18px;
  animation: seo-scroll 125s linear infinite;
}

.seo-marquee-reverse .seo-marquee-track {
  animation-direction: reverse;
}

.seo-marquee-track a {
  color: #ffcd11;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 4px 0;
}

.seo-marquee-track a:hover {
  text-decoration: underline;
}

.seo-marquee-track span {
  color: rgba(255, 205, 17, 0.65);
  margin: 0 16px;
}

.seo-marquee:hover .seo-marquee-track {
  animation-play-state: paused;
}

@keyframes seo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  .seo-footer {
    padding: 10px 0;
  }

  .seo-marquee-track a {
    font-size: 11px;
  }

  .seo-marquee-track span {
    margin: 0 12px;
  }
}

/* --- BARRA DE COPYRIGHT --- */
.footer-bottom {
  border-top: 1px solid #222; /* A linha separadora mágica */
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  background-color: black;
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }

  .footer-info {
    width: 40%;
  }

  .footer-form-container {
    width: 50%;
    margin-top: 0;
  }

  .whatsapp-btn-footer {
    width: auto; /* Botão tamanho normal no PC */
  }
}

/* =========================================
   SEÇÃO SELETOR INTELIGENTE
   ========================================= */

.seletor-section {
  background-color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.seletor-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seletor-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.seletor-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.75rem;
}

.seletor-descricao {
  color: black;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto;
}

.seletor-wrapper {
  max-width: 56rem;
  margin: 0 auto; 
}

.seletor-step-titulo {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: black;
  margin-bottom: 1.5rem;
}

.seletor-grid {
  display: grid;
  gap: 1rem;
}

.fluid-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .fluid-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .fluid-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.temp-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .temp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.selector-btn {
  width: 100%;
  background-color: #141414;
  border: 2px solid var(--border-input);
  border-radius: 0.5rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.selector-btn:hover {
  border-color: var(--cor-primaria);
  background-color: var(--bg-dark);
}

.selector-btn.selected {
  border-color: var(--cor-primaria);
  background-color: var(--bg-dark);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(var(--cor-primaria-rgb), 0.2);
}

.selector-btn:hover svg,
.selector-btn.selected svg {
  color: var(--cor-primaria);
}

.seletor-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.text-amarelo {
  color: var(--cor-primaria);
}
.text-cinza {
  color: var(--text-light);
}

.seletor-label {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--text-white);
}

.seletor-label-big {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.seletor-result-box {
  margin-top: 3rem;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-dark);
}

.hidden {
  display: none !important;
}

.mt-step {
  margin-top: 2.5rem;
}

/* =========================================
   SEÇÃO "NÃO ENCONTROU?" (CTA)
   ========================================= */

.seletor-cta-section {
  background-color: white;
  padding-bottom: 4rem;
  padding-top: 1rem;
}

.seletor-cta-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seletor-cta-box {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-secondary);
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-hover);
  transition: all 0.3s ease;
  /* Importante: Cria o contexto de empilhamento */
  z-index: 1;
}

.seletor-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("/assets/img/card_seletor.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;

  z-index: 0;
  pointer-events: none;
  display: block;
}

.seletor-cta-box:hover {
  border-color: rgba(var(--cor-primaria-rgb), 0.5);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(var(--cor-primaria-rgb), 0.2);
}

.seletor-cta-titulo,
.seletor-cta-texto,
.seletor-cta-btn {
  position: relative;
  z-index: 2;
}

.seletor-cta-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.seletor-cta-texto {
  color: var(--text-medium);
  max-width: 36rem;
  margin: 0 auto 1.5rem auto;
}

.seletor-cta-btn {
  display: inline-block;
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.seletor-cta-btn:hover {
  background-color: var(--cor-primaria-hover);
}

/*--------------------------------------------
----------------------------------------------
                ICONE WHATSAPP FLUTUANTE
-----------------------------------------------
----------------------------------------------*/

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px; /* Distância do fundo */
  right: 20px; /* Distância da direita */
  background-color: #25d366; /* Verde oficial do Zap */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Garante que fique na frente de tudo */
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.whatsapp-float img {
  width: 35px; /* Tamanho do ícone dentro do círculo */
}

/* Efeito de hover (interatividade) */
.whatsapp-float:hover {
  transform: scale(1.1); /* Dá um zoom leve ao passar o mouse */
  background-color: #128c7e; /* Tom de verde mais escuro */
}

/* Ajuste para mobile (se quiser que ele fique menor em telas pequenas) */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 30px;
  }
}

/*--------------------------------------------
----------------------------------------------
                ANIMAÇÕES E EFEITOS EXTRAS
-----------------------------------------------
----------------------------------------------*/

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo-scroller {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
}
.logo-scroller-inner {
  display: flex;
  width: fit-content;
  animation: scroll 25s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.logo-scroller-inner img {
  height: 48px;
  margin: 0 40px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  filter: grayscale(100%) contrast(0.5) brightness(1.7);
}
.logo-scroller-inner:hover {
  animation-play-state: paused;
}
.logo-scroller-inner img:hover {
  transform: scale(1.1);
  filter: grayscale(0) contrast(1) brightness(1);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header-scrolled {
  background-color: rgba(var(--bg-dark-rgb), 0.7);
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
}
.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.product-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(var(--cor-primaria-rgb), 0.2);
}
.reset-btn-highlight {
  background-color: var(--cor-primaria);
  color: var(--text-on-primary);
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(var(--cor-primaria-rgb), 0.2);
}
.reset-btn-highlight:hover {
  background-color: var(--cor-primaria-hover);
  transform: scale(1.05);
}
/* =========================================
   ESTILOS DO RESULTADO (GERADO PELO JS)
   ========================================= */

.resultado-header {
  text-align: center;
}

.resultado-label {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.resultado-material {
  color: var(--cor-primaria);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  /* Um brilho sutil para destacar */
  text-shadow: 0 0 20px rgba(var(--cor-primaria-rgb), 0.2);
}

.resultado-detalhes {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.resultado-analise {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}

/* Títulos h4 que vêm dentro da análise (Vantagens/Desvantagens) */
.resultado-analise h4 {
  color: var(--cor-primaria);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Lista de detalhes técnicos */
.resultado-analise ul li {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

/* Setinha personalizada antes de cada item */
.resultado-analise ul li::before {
  content: "➤";
  color: var(--cor-primaria);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 3px;
}

.resultado-acoes {
  margin-top: 2.5rem;
  text-align: center;
}
