

/*# sourceMappingURL=style.css.map */

.empresa__breadcrumb-box {
  display: flex;
  padding-top: 6rem;
  background-color: #f9f9f9;
}


.empresa__breadcrumb-box .s-produto__breadcrumbs {
  max-width: 800px;
  width: 100%;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  display: flex;
  padding: 0;
}

.empresa__breadcrumb-box .s-produto__breadcrumbs span {
  color: #777;
}

.empresa__breadcrumb-box .s-produto__breadcrumbs a {
  color: #007bff;
  text-decoration: none;
}

.empresa__breadcrumb-box .s-produto__breadcrumbs a:hover {
  text-decoration: underline;
}

/* Seção institucional */
.empresa__container {
  width: 100%;
  min-height: calc(100vh - 160px);
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.empresa__conteudo {
  max-width: 800px;
  width: 100%;
  text-align: justify;
  background-color: rgb(255, 255, 255);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: "Segoe UI", sans-serif;
}

.empresa__conteudo h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.6rem;
  font-weight: bold;
}

.empresa__conteudo p {
  margin-bottom: 2rem;
}

.rodape__informacoes {
  justify-content: flex-start !important;
  gap: 4rem !important;
}


.rodape__secao-empresa {
  margin-top: 4rem; /* ajuste conforme desejar */}


/* 1) O <li> vira o “container posicionado” do dropdown */
.cabecalho__item-lista {
  position: relative;              /* <- chave para colar o submenu no item */
  padding-bottom: 0;               /* evita criar espaço que gere “gap” */
}

/* 2) O submenu cola imediatamente abaixo do item, sem folga no meio */
.cabecalho__expansao-tipos {
  top: 100%;                       /* já está assim, mas agora referencia o <li> */
  left: 0;
  right: auto;                     /* evita esticar à direita se não quiser full-width */
  margin-top: 0;                   /* garante zero “fresta” */
  pointer-events: auto;            /* segurança */
  z-index: 1000;                   /* sobrepõe cabeçalho/elementos vizinhos */
}

/* 3) Animação suave e sem piscar (opcional) */
@media (hover: hover) {
  .cabecalho__expansao-tipos {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
  }
  .cabecalho__item-lista:hover > .cabecalho__expansao-tipos {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .15s ease, transform .15s ease;
    display: flex; /* mantém seu layout atual */
  }
}
