.apropos-page {
  width: 100%;
  padding: 80px 64px 80px;
  position: relative;
  z-index: 2;
}

.apropos-hero {
  max-width: 1780px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.apropos-badge {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(123,44,255,0.12);
  border: 1px solid rgba(123,44,255,0.25);
  color: #c084fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.apropos-left h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.apropos-left h1 span {
  background: linear-gradient(135deg, #a855f7, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.apropos-left > p {
  max-width: 640px;
  color: rgba(255,255,255,0.68);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.apropos-left > p span {
  color: #c084fc;
  font-weight: 700;
}

.apropos-features {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.apropos-feature {
  display: flex;
  align-items: center;
  gap: 18px;
}

.apropos-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(123,44,255,0.12);
  border: 1px solid rgba(123,44,255,0.22);
  color: #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.apropos-feature h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.apropos-feature p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}

.apropos-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.apropos-right::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,44,255,0.3), transparent 70%);
  filter: blur(95px);
  z-index: -1;
}

.apropos-image {
  width: 100%;
  max-width: 820px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 70px rgba(123,44,255,0.22))
    drop-shadow(0 40px 90px rgba(0,0,0,0.45));
  animation: aproposFloat 5s ease-in-out infinite;
}

@keyframes aproposFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.apropos-stats {
  max-width: 1780px;
  margin: 0 auto;
  padding: 30px 36px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.apropos-stat {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.apropos-stat:last-child {
  border-right: none;
}

.apropos-stat h2 {
  font-size: 34px;
  margin-bottom: 8px;
  color: #a855f7;
}

.apropos-stat p {
  color: rgba(255,255,255,0.62);
  font-size: 16px;
}

.footer {
  margin-top: 70px;
}

/* Footer bottom igual às outras páginas */
.footer-bottom {
  max-width: 1780px;
  margin: 24px auto 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.42);
  font-size: 18px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links span {
  color: #a855f7;
  font-size: 10px;
  transform: translateY(-1px);
}

.footer-bottom-links a,
.footer-bottom-links a:visited,
.footer-bottom-links a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  color: rgba(255,255,255,0.55);
  transition: 0.3s;
  font-size: 17px;
  font-weight: 500;
  position: relative;
}

.footer-bottom-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: #a855f7;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  text-decoration: none !important;
  color: #c084fc;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .apropos-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .apropos-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .apropos-features {
    width: 100%;
    max-width: 600px;
    text-align: left;
  }

  .apropos-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .apropos-stat:nth-child(2) {
    border-right: none;
  }

  .apropos-stat:nth-child(1),
  .apropos-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 850px) {
  .apropos-page {
    padding: 60px 22px 60px;
  }

  .apropos-left h1 {
    font-size: 48px;
  }

  .apropos-left > p {
    font-size: 17px;
  }

  .apropos-stats {
    grid-template-columns: 1fr;
  }

  .apropos-stat,
  .apropos-stat:nth-child(2) {
    border-right: none;
  }

  .apropos-stat {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .apropos-stat:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }
}