/* Estilização geral */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Banner */
.bikers-banner {
    position: relative;
    background: url('assets/images/bikers-banner.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bikers-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.bikers-banner p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Filtro */
.compact-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.compact-filter input,
.compact-filter select,
.compact-filter button {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.compact-filter button {
    background-color: #2c5f2d;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.compact-filter button:hover {
    background-color: #1e421e;
}

/* Grid de Motociclistas */
.bikers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.biker-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.biker-card:hover {
    transform: scale(1.03);
}

.biker-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.biker-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.biker-card p {
    font-size: 0.9rem;
    color: #777;
}

/* Botão para cadastrar equipe */
.submit-biker {
    text-align: center;
    margin: 30px 0;
}

.submit-biker .btn-submit {
    padding: 10px 30px;
    background-color: #2c5f2d;
    color: #fff;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.submit-biker .btn-submit:hover {
    background-color: #1e421e;
}

/* Anúncios patrocinados */
.ads-section {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ads-section .section-title {
    font-size: 2rem;
    color: #333;
}

.ads-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}

.ads-section .card:hover {
    transform: translateY(-5px);
}

.ads-section .card-img-top {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.ads-section .card-body {
    padding: 15px;
    text-align: center;
}

.ads-section .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.ads-section .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .bikers-banner h1 {
        font-size: 2rem;
    }
    .bikers-banner p {
        font-size: 1rem;
    }
    .biker-card img {
        height: 150px;
    }
}
.bikers-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.bikers-section p {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
