
/* Google Font */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand img {
    max-height: 40px;
}

.navbar .nav-link {
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #1B5E20; /* Cor primária da cooperativa de exemplo */
}

.btn-primary {
    background-color: #1B5E20;
    border-color: #1B5E20;
}

.btn-primary:hover {
    background-color: #2E7D32;
    border-color: #2E7D32;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("data:image/svg+xml,%3Csvg width='1920' height='600' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 600' preserveAspectRatio='none'%3E%3Crect width='100%25' height='100%25' fill='%236c757d'%3E%3C/rect%3E%3Ctext x='50%25' y='50%25' fill='%23dee2e6' dy='.3em' font-size='96' text-anchor='middle'%3EProfissionais de Saúde%3C/text%3E%3C/svg%3E") no-repeat center center;
    background-size: cover;
    padding: 100px 0;
}

.hero-section h1 {
    font-weight: 700;
}

/* Section Title */
.section-title {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #212529;
}
