.access-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 82px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.platform-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.platform-card {
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  width: 100%;
  min-height: 142px;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(9, 35, 63, 0.08);
}

.platform-card span {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.access-platforms .aulion-cursos-logo-card img {
  width: min(220px, 100%);
  height: 96px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.access-platforms .dark-logo-card span {
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.platform-links {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.92);
  box-shadow: 0 10px 24px rgba(9, 35, 63, 0.06);
}

.platform-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid #e2ebf6;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(9, 35, 63, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.platform-link-item:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 111, 240, 0.34);
  box-shadow: 0 12px 24px rgba(9, 35, 63, 0.09);
}

.platform-link-item strong,
.platform-link-item small {
  display: block;
}

.platform-link-item strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
}

.platform-link-item small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.platform-link-item.is-primary {
  background: linear-gradient(135deg, #ffffff, #edf6ff);
}

.link-arrow {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
}
.student-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(50px, 7vw, 88px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.student-help .eyebrow,
.student-help h2 {
  color: var(--white);
}

.student-help p {
  max-width: 780px;
  color: #e7f1ff;
}

@media (max-width: 1120px) {
  .access-platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .student-help {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .access-platforms {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .platform-card,
  .platform-links {
    padding: 16px;
  }

  .platform-link-item {
    min-height: 0;
  }

  .button,
  .student-help .button {
    width: 100%;
  }
}
