/* Estilos do efeito de processamento */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.26);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

#loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  position: relative;
}

.spinner-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  border-top: 5px solid #6a11cb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-circle:nth-child(2) {
  border: 5px solid transparent;
  border-top: 5px solid #2575fc;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation: spin 1.5s linear infinite reverse;
}

.loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: #2c3e50;
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Banner com Imagem */
.banner-imagem {
  height: 70vh;
  position: relative;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-imagem img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .banner-imagem {
    height: 50vh;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .banner-imagem {
    height: 80vh;
  }
}

.banner-sobre {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  min-height: 50vh;
  padding: 50px 0;
  color: white;
}

@media (max-width: 768px) {
  .banner-sobre {
    min-height: 30vh;
    padding: 30px 0;
  }
}

@media (min-width: 992px) {
  .banner-sobre {
    min-height: 60vh;
    padding: 70px 0;
  }
}

.badge-sobre {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

.text-purple {
  color: #6f42c1;
}

.valor-card {
  transition: transform 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-5px);
}
