/* Seção: Por que a 2x Trade? */
.why-2xtrade-section {
  padding: 64px 0 48px 0;
  text-align: center;
}

.why-2xtrade-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.why-2xtrade-subtitle {
  font-size: 1.25rem;
  color: #b0b3c6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.why-2xtrade-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-2xtrade-top-row,
.why-2xtrade-bottom-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.why-2xtrade-top-row .why-2xtrade-card,
.why-2xtrade-bottom-row .why-2xtrade-card {
  max-width: 360px;
  width: 100%;
}

.why-2xtrade-card:nth-child(1) { grid-area: card1; }
.why-2xtrade-card:nth-child(2) { grid-area: card2; }
.why-2xtrade-card:nth-child(3) { grid-area: card3; }
.why-2xtrade-card:nth-child(4) { grid-area: card4; }
.why-2xtrade-card:nth-child(5) { grid-area: card5; }

.why-2xtrade-card {
  background: #181a23;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.why-2xtrade-card img {
  max-width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: filter 0.18s;
}

.why-2xtrade-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.28);
}

.why-2xtrade-card:hover img {
  filter: brightness(1.08) saturate(1.1);
}

@media (max-width: 900px) {
  .why-2xtrade-top-row,
  .why-2xtrade-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .why-2xtrade-section {
    padding: 36px 0 24px 0;
  }
  .why-2xtrade-title {
    font-size: 1.5rem;
  }
}
