/* investimentos.css | Oportunidades de Investimento TGS */

.inv-hero {
  padding: 4rem 0 3rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 10%, rgba(214, 173, 85, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(5,5,4,1) 0%, transparent 100%);
}

.inv-hero-content {
  max-width: 720px;
}

.inv-hero-content h1 {
  margin-top: 0.6rem;
}

.inv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.inv-strategy-card {
  position: relative;
  overflow: hidden;
}

.inv-strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pb-accent), transparent);
  opacity: 0.4;
}

.inv-asset-card {
  position: relative;
}

.inv-asset-card:hover {
  border-color: rgba(255, 229, 161, 0.45);
}

.inv-asset-card .row strong {
  line-height: 1.1;
}

.inv-final-cta {
  padding: 3.5rem 0;
  position: relative;
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(214, 173, 85, 0.06), transparent 70%),
    linear-gradient(180deg, transparent, rgba(5,5,4,1) 100%);
}

.inv-final-cta-content {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .inv-hero {
    padding: 2rem 0 2rem;
  }

  .inv-hero-content h1 {
    font-size: 1.6rem;
  }
}
