/* Fundo moderno do HERO */
.hero-finance {
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* Azul escuro elegante */
  padding: 100px 0;
}

/* Cartão com efeito vidro moderno */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Texto com gradiente */
.text-gradient {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Botão Hotmart moderno */
.btn-hotmart-modern {
  background: linear-gradient(135deg, #ff6a00, #ffcc00);
  color: #fff;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.btn-hotmart-modern:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.5);
  color: #fff;
}
.text-gradient {
  background: linear-gradient(90deg, #ffb700, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.carousel-section {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.carousel-container {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: width 0.3s ease, height 0.3s ease;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
}

.carousel-slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh; /* limita a altura em telas pequenas */
  display: block;
  border-radius: 1rem;
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-btn {
    padding: 0.7rem;
    font-size: 1.2rem;
  }

  .carousel-image {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    padding: 0.5rem;
    font-size: 1rem;
  }

  .carousel-image {
    max-height: 50vh;
  }
}

.section-features {
  padding: 4rem 0;
  background: #f4f7fc;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 28px rgba(0,0,0,0.08);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0d6efd;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA button */
.btn-hotmart-modern {
  background: linear-gradient(135deg, #ff6600, #ffcc00);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
  transition: 0.3s ease;
}

.btn-hotmart-modern:hover {
  background: linear-gradient(135deg, #ffcc00, #ff6600);
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.6);
}


