body {
  font-family: "Poppins", sans-serif;
  background-color: #f6f6f6;
}

.shopee-gradient {
  background: linear-gradient(135deg, #0439A1 0%, #031855 100%);
}

.card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.number-highlight {
  background: linear-gradient(90deg, #0439A1 0%, #031855 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }

  10% {
    left: 100%;
    opacity: 0.6;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Garantir que os ícones sejam perfeitamente redondos */
.icon-circle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Posição da imagem do cartão */
.card-image {
  position: absolute;
  right: 5px;
  top: 35%;
  transform: translateY(-50%);
  z-index: 1;
  width: 150px;
}

/* Media queries para ajustar posição em telas menores */
@media (max-width: 380px) {
  .card-image {
    top: 30%;
    right: 0;
    width: 130px;
  }
}

/* Carrossel simplificado */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-item {
  width: 100%;
  flex-shrink: 0;
}

.carousel-item.active {
  display: block;
}

.carousel-item:not(.active) {
  display: none;
}

.carousel-img-container {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #ccc;
  color: #777;
  background-color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.step-number.active {
  border-color: #0439A1;
  background-color: #0439A1;
  color: white;
}

.step-number.completed {
  border-color: #0439A1;
  background-color: #0439A1;
  color: white;
}

.step-line {
  flex: 1;
  height: 3px;
  background-color: #ddd;
  position: relative;
}

.step-line.active {
  background-color: #0439A1;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicator.active {
  background-color: #0439A1;
  transform: scale(1.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

/* Efeitos de transição para telas */
.page-transition {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.pulse-blue {
  position: relative;
  z-index: 1;
  animation: pulse-blue 1.5s infinite;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(4, 57, 161, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(4, 57, 161, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(4, 57, 161, 0);
  }
}