/* home.css - Estilos específicos para a página inicial */

/* Estilos migrados do index.html */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container principal da página */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

/* Seção principal com layout flexível */
.hero-container {
  display: flex;
  gap: 30px !important;
  align-items: center;
}

/* Imagem lateral esquerda com efeito de fusão */
.hero-image-container {
  flex: 0 0 38% !important;
  display: flex;
  justify-content: center;
  max-width: 1920px !important; 
}

.hero-image {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

/* Container do texto sobre */
.hero-text {
  flex: 1;
  max-width: 600px;
  padding: 30px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: none;
}

/* Estilo da toolbar (caso toolbar.html falhe ou use fallback local) */
.toolbar {
  padding: 0 1.5rem;
  background-color: #137a7f;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Título principal */
h1 {
  margin-bottom: 25px;
  font-size: 2.2rem;
  color: #2c3e50;
}

/* Texto principal */
p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Links padrão */
a {
  text-decoration: none;
  color: inherit;
}

/* Botão flutuante do WhatsApp */
.help-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: #39c5bb;
  color: white;
  padding: 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 100;
}

/* Seção de Logos de Marcas */
.brand-logos {
  padding: 40px 20px;
  background-color: #39c5bb;
  text-align: center;
}

.brand-logos h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
}

.logo-item img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.brand-grid img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-grid img:hover {
  filter: grayscale(0%);
}

.logo-carousel {
  overflow-x: hidden;
  overflow-y: auto;
  background: #72d8d3;
  padding: 10px 0;
  margin-top: 74px;
}

.carousel-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

.carousel-track img {
  height: 30px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Layout responsivo para telas menores */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding-top: 30px;
  }

  .hero-image-container {
    flex: 1;
    width: 80%;
    margin-bottom: 30px;
  }
}