/* ======================================
   CTA "VER MÁS"
====================================== */

.next-section-btn {

  width: 130px;

  padding: 14px 20px;

  border-radius: 18px;

  text-decoration: none;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;

  background:
    linear-gradient(
      180deg,
      #ff4d4d 0%,
      #d90429 100%
    );

  border:
    1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);

  backdrop-filter: blur(12px);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

/* TEXTO */
.next-section-btn span {

  color: #fff;

  font-size: 0.92rem;
  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

/* ICONO */
.next-section-btn i {

  color: rgba(255,255,255,0.92);

  font-size: 1.1rem;

  animation: floatingArrow 1.8s ease-in-out infinite;
}

/* HOVER */
.next-section-btn:hover {

  transform: translateY(-4px);

  box-shadow:
    0 18px 45px rgba(217,4,41,0.42),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

/* ANIMACIÓN */
@keyframes floatingArrow {

  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .next-section-btn {

    width: 115px;

    padding: 12px 16px;
  }

}
