.brands{
  padding: clamp(32px, 5vw, 64px) 0;
}

.brands__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.brands__intro{
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.6;
}

/* GRID INVISÍVEL */
.brands__grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 36px;
  align-items: center;
}

/* LOGOS */
.brands__grid img{
  max-height: 42px;     /* chave da consistência */
  width: auto;
  max-width: 100%;
  opacity: 0.82;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

/* Hover subtil e elegante */
@media (hover: hover){
  .brands__grid img:hover{
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-1px);
  }
}

/* Responsivo */
@media (max-width: 1024px){
  .brands__grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px){
  .brands__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
  .brands__grid img{ max-height: 34px; }
}

/* Texto técnico (fundo cinzento) */
.tech-text {
  background: #1a1a1a;
  padding: 60px 0;
  text-align: center;
}

.tech-text p {
  max-width: 800px;
  margin: 0 auto;
  color: #cfcfcf;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero {
  position: relative;
}

