/* Variáveis do Projeto */
:root {
    --verde: #009739;
    --azul: #002776;
    --amarelo: #FFDF00;
    --dark: #1a1a1a;
    --light: #f4f7f6;
}

/* Global */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    padding-top: 70px; /* Compensa o menu fixo */
}

.text-verde { color: var(--verde) !important; }

/* Navbar Custom */
.navbar-brand.logo-text {
    font-weight: 800;
    color: var(--azul);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--verde) !important;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--azul);
    margin-bottom: 2rem;
    font-weight: 800;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--verde);
    margin: 15px auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fcf9 0%, #edf2f7 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.btn-azul {
    background-color: var(--azul);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
}

.btn-azul:hover {
    background-color: #001a4d;
    color: #fff;
}

.btn-verde {
    background-color: var(--verde);
    color: #fff;
    border: none;
}

.btn-verde:hover {
    background-color: #007a2e;
    color: #fff;
}

/* Cards & Agents */
.custom-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--verde);
    transition: 0.3s;
}

.agent-item {
    background: var(--azul);
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.agent-item:hover {
    transform: translateY(-10px);
    background: var(--verde);
}

.item-highlight {
    background: #0037a3; /* Um azul um pouco mais claro para destacar */
}

.custom-badge {
    background: var(--amarelo);
    color: #000;
    padding: 5px 12px;
    font-size: 0.7rem;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-soon {
    background: #666;
    color: #fff;
}

/* Form */
.custom-input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.custom-input:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 0.25rem rgba(0, 151, 57, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 50px 0;
}

/* Ajustes Mobile */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-content { text-align: center; }
}

.partner-logo {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) !important;
    transform: scale(1.1);
}