.banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* opcional */
}
.banner-container {
    width: 100%;
    /*background: #000; */
    padding: 0;
    margin: 0;
}

/** */

.hero-banner {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #8b0000, #c71f1f);
    color: white;
    position: relative;
}

/* Texto */
.hero-text {
    position: relative;
    z-index: 2;
}

/* Título estilizado */
.hero-text h1 {
    font-family: "Playwrite NO", cursive;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;

    margin: 0;
}

.py-5 {
    padding: 10px;
}


.resultado-bola {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    border: 4px solid #c71f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #c71f1f;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


.galeria-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.galeria-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.galeria-content {
    padding: 15px;
}

.galeria-content h5 {
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 24px;
}

.galeria-content p {
    margin: 0;
    font-size: 14px;
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.form-venha {
    max-width: 500px; 
}