/* ============================= */
/* Seção: Sua Marca Continua Em Primeiro Lugar */
/* ============================= */

.section-brand-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, calc(3.846vw + 26.15px), 100px) 0;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background: linear-gradient(
  to bottom,
  rgba(255, 255, 255, 0.03),
  rgba(255, 255, 255, 0)
),
rgba(29, 29, 32, 1);
}

.section-brand-first .title {
  margin-bottom: clamp(30px, calc(1.923vw + 23.08px), 60px);
  background: linear-gradient(90deg, #FAD3A6 0%, #E8B76A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* ============================= */
/* Cards */
/* ============================= */

.bf-cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* permite quebrar naturalmente */
  gap: clamp(16px, calc(0.513vw + 14.15px), 24px);
  width: 100%;
}

.bf-card {
  flex: 1 1 240px; /* quebra natural em telas menores */
  display: flex;
  flex-direction: column;
  border-radius: 20px; /* fixo como solicitado */
  overflow: hidden;
}

.bf-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bf-card:hover img {
  transform: scale(1.02);
}

/* ============================= */
/* Texto final */
/* ============================= */

.bf-footer-text {
  width: 100%;
  max-width: 900px;
  text-align: center;
  color: var(--Greys-80, #d8d8e2);
  font-family: 'Satoshi', sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: clamp(30px, calc(1.923vw + 23.08px), 60px);
}

.mobile {
  display: none !important;
}

@media (max-width: 1200px) {
.bf-card {
  max-width: 336px;
}
}


@media (max-width: 768px) {
  .mobile {
  display: flex !important;
}

.desktop {
  display: none !important;
}
}
