/* BANNER 1 */
#BANNER1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #F8F8FF;
    height: 26vw;
    /* width: 600px; */
    width: clamp(600px,60vw,1152px);
    /* width: 60%; */
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    /* margin-top: 160px; */
    overflow: hidden;
}
/* FIGURA DE CHACHORROS DO BANNER 1 */
#Dogs {
    position: absolute;

    width: 60%;
    height: auto;

    bottom: 5%;
    right: 5%;
}
/* FIGURA DA WAVE NA BANNER 1 */
#wave {
    position: absolute;

    width: 23%;
    height: auto;

    left: 78%;
    top: 1%;
}
/* TEXTO DO BANNER 1 */
#textoBRANCA {
    position: absolute;

    width: 70%;
    height: 10%;

    left: 8%;
    top: 8%;

    font-weight: 700;
    font-size: clamp(20px,1.8vw, 40px);
    /* font-size: 28px; */
    color: #063643;

    text-align: left;
    line-height: 1.4em;
}
/* TEXTO DO RESPONSIVO */
#text_respon {
    display: none;
}
/* BOTAO DO BANNER 1 */
#bottonBRANCA {
    position: absolute;

    left: 8%;
    top: 46%;

    width: 26%;
    height: 20%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #0F637A;
    border-radius: 8px;

    font-size: 2vw;
    font-weight: bold;
    text-decoration: none;
}
#bottonBRANCA a {
    text-decoration: none;
    color: white;
    font-size: clamp(15px,80%,30px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bottonBRANCA a:hover{
    color: #003843;
}


#bottonBRANCA:hover{
    color: #003843;
    background: #89D3E6;
}