/* Import Google Fonts (já no HTML, mas bom ter aqui como referência) */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Open+Sans:wght@400;600&display=swap'); */

body {
    font-family: 'Open Sans', sans-serif;
    padding-top: 70px; /* Ajuste para navbar fixa */
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.display-4, .display-5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Mais peso para títulos principais */
}

/* Navbar */
.navbar-brand img {
    max-height: 40px;
}
.btn-sm-nav-action {
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
}
@media (max-width: 991.98px) {
    .navbar-nav .nav-item .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .navbar-nav .nav-item .me-2 {
        margin-right: 0 !important;
    }
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(21, 98, 218, 0.85), rgba(13, 63, 140, 0.9)), url('../images/hero-background.jpg'); /* Placeholder - substitua com uma imagem de fundo ou cor sólida */
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 90vh; /* Altura da viewport */
    padding: 60px 0;
}
.hero-section h1 {
    color: #fff; /* Garante que o H1 seja branco */
}
.hero-section .lead {
    color: #e0e0e0; /* Cor mais suave para o lead text */
}
.hero-image-custom {
    max-width: 100%;
    height: auto;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Cores Primárias (Exemplo, ajuste conforme a identidade visual do Orzap) */
.btn-primary {
    background-color: #007bff; /* Azul Orzap - ajuste se necessário */
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.text-primary {
    color: #007bff !important;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #007bff20; /* Cor primária com transparência */
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* CTA Section */
.cta-section {
    background-color: #0d6efd; /* Cor primária do Bootstrap */
    /* Ou use um gradiente: */
    /* background: linear-gradient(45deg, #007bff, #0056b3); */
}

/* Footer */
.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.footer-link:hover {
    color: #fff;
}
.social-icon {
    color: #adb5bd;
    transition: color 0.2s ease-in-out;
}
.social-icon:hover {
    color: #fff;
}
.inverted-logo {
    filter: brightness(0) invert(1); /* Para logos que precisam ser brancas no fundo escuro */
}


/* Affiliate Section */
.bg-light-alt {
    background-color: #f0f4f8; /* Um tom de cinza/azul bem claro, diferente do bg-light padrão */
}

.affiliate-promo-card {
    background-color: #ffffff;
    border-radius: 15px; /* Bordas mais arredondadas para destaque */
}

.affiliate-promo-card .img-fluid.rounded-circle {
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2); /* Sombra sutil na cor primária */
}

.btn-success { /* Para o botão de afiliados */
    background-color: #198754; /* Verde padrão do Bootstrap para sucesso */
    border-color: #198754;
    font-weight: bold;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}
