.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 100px;
}

/* Classe para ocultar elementos visivelmente, mas mantê-los no HTML para SEO */
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Carrossel */
.carousel-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Seção de produtos */
.product-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

/* Seção de destaques */
.highlight-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  gap: 20px;
}

.title-home {
  font-size: 30px;
  color: #BB0606;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #BB0606;
  padding-bottom: 5px;
}

/* Contêiner para os HighlightCards */
.highlight-container-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* Responsividade */
@media (max-width: 1024px) {
  .highlight-container-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .title-home {
    font-size: 20px;
  }
  .home {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .highlight-container-home {
    grid-template-columns: 1fr;
  }
}

/* Estilos para o overlay de loading */
.home-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Fundo branco semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Garante que fique acima de tudo */
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #BB0606; /* Cor do spinner */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}