.hero-section {
    background: var(--my-gradient);
    position: relative;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
    .hero-section {
      /* min-height: 80vh !important; */
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  }

/* Tema escuro - texto branco (landpage) */
[data-bs-theme="dark"] {
    color: #fff;
}

[data-bs-theme="dark"] body,
[data-bs-theme="dark"] p,
[data-bs-theme="dark"] span:not([class*="fa"]):not([class*="bi"]):not(.badge),
[data-bs-theme="dark"] label,
[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6,
[data-bs-theme="dark"] a:not(.btn):not(.nav-link),
[data-bs-theme="dark"] li:not(.nav-item),
[data-bs-theme="dark"] td,
[data-bs-theme="dark"] th,
[data-bs-theme="dark"] .form-label,
[data-bs-theme="dark"] .form-text,
[data-bs-theme="dark"] .card-title,
[data-bs-theme="dark"] .card-text,
[data-bs-theme="dark"] .dropdown-item,
[data-bs-theme="dark"] small:not([class*="fa"]):not([class*="bi"]),
[data-bs-theme="dark"] .small {
    color: #fff !important;
}

[data-bs-theme="dark"] .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Badges claros no tema escuro - texto escuro */
[data-bs-theme="dark"] .badge.bg-white,
[data-bs-theme="dark"] .badge.bg-light,
[data-bs-theme="dark"] .badge.text-bg-light,
[data-bs-theme="dark"] .badge.text-bg-white {
    color: #212529 !important;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    color: #fff;
    background-color: #1a1f2e;
    border-color: rgba(255, 255, 255, 0.15);
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    color: #fff;
    background-color: #1a1f2e;
    border-color: #22c55e;
}

/* Transição suave entre páginas */
#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-body-bg);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}
