:root {

    --amarelo: #f4c400;
    --preto: #1d1d1d;

}

body {

    font-family: Arial, sans-serif;

    margin: 0;

    padding: 0;

}

/* MENU */

.navbar-clube {

    background: rgba(0,0,0,.90);

}

/* HERO */
.hero {

    background: #000;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    padding-top: 70px;

}

.hero-banner {

    max-width: 100%;

    max-height: calc(100vh - 70px);

    object-fit: contain;

}

/* SOBRE */

.sobre {

    padding: 80px 20px;

    background: #ffffff;

}

.sobre h2 {

    font-weight: 700;

    margin-bottom: 30px;

}

.sobre p {

    font-size: 1.1rem;

    line-height: 1.8;

}

/* CONTATO */

.contato {

    background: var(--amarelo);

    padding: 80px 20px;

}

.contato h2 {

    font-weight: 700;

    margin-bottom: 25px;

}

.contato p {

    font-size: 1.1rem;

}

/* RODAPÉ */

footer {

    background: var(--preto);

    color: white;

    padding: 20px;

}

/* MOBILE */

@media (max-width: 768px) {

    .hero {

        min-height: auto;
        height: auto;

        padding-top: 72px;

        display: block;

        background: #000;

    }

    .hero-banner {

        width: 100%;
        height: auto;

        max-height: none;

        display: block;

    }

}


/* FIM AREA MOBILE*/

.hero {
    position: relative;
}

.area-whatsapp,
.area-instagram {
    position: absolute;
    bottom: 0;
    height: 13%;
    z-index: 5;
    display: block;
}

.area-whatsapp {
    left: 34%;
    width: 25%;
}

.area-instagram {
    left: 60%;
    width: 30%;
}
.contato-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #000;

    font-size: 1.25rem;
    font-weight: 700;

    background: rgba(255,255,255,0.35);
    padding: 12px 22px;
    border-radius: 999px;
}

.contato-whatsapp:hover {
    color: #000;
    background: rgba(255,255,255,0.55);
}

.contato-whatsapp-icone {
    width: 30px;
    height: 30px;
}