/* BANNER 2 E CARROSSEL */
#BANNER2 {
    position: relative;
    /* width: 580px; */
    width: clamp(580px,60vw,1100px);
    /* height: 2vw; */
    /* width: 60%; */
    height: auto;
}
/* Contêiner do carrossel */
.carousel_container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
/* Área do carrossel */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
/* CLASSE COM AS CAMPANHAS */
.CAMPANHA1 {
    position: relative;
    width: 100%;
    height: auto;
    min-width: 100%;
    box-sizing: border-box;
}
/* BOTOES CARROSSEL */
#prevBtn { 
    left: 1%; 

    position: absolute;
    top: 50%;
    background: none;
    font-size: 35px;
    font-weight: 200;
    transform: translateY(-50%);
    border: none;
}
#nextBtn { 
    right: 1%;

    position: absolute;
    top: 50%;
    font-size: 35px;
    font-weight: 200;
    transform: translateY(-50%);
    border: none;
    background: none;
}
/* PÁGINAS */
.carousel-nav {
    text-align: center;
}
.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #A3A3A3;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #6BB7CB;
}
/* PRIMEIRA CAMPANHA */
#VACINACAO {
    position: relative;
    background-color: #63B3C9;

    height: 300px;  
    width: 90%;

    margin-top: 30px;
    margin-bottom: 1.5%;

    left: 5%;

    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
/* IMAGEM DO GATO NA PRIMEIRA CAMPANHA */
#gato {
    position: absolute;

    width: 12%;
    height: auto;

    bottom: 3%;
    left: 80%;
}
/* IMAGEM DAS PATAS E SERINGA NA PRIMEIRA CAMPANHA */
#PATAS {
    position: absolute;

    width: auto;
    height: 60%;

    top: 25%;
    left: 5%;
}
/* TITULO DA PRIMEIRA CAMPANHA */
#titleVACINACAO {
    position: absolute;
    left: 36%;
    top: 10%;

    width: 65%;
    height: 30%;

    font-family: "Poppins";
    font-weight: 700;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 2%;

    color: #063643;
}
/* TEXTO DA PRIMEIRA CAMPANHA */
#textVACINACAO {
    position: absolute;
    top: 30%;
    left: 39%;

    width: 60%;
    height: 30%;

    font-family: "Poppins";
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 2%;

    color: #0F637A;
}
/* BOTAO DA PRIMEIRA CAMPANHA */
#bottonVACINACAO {
    position: absolute;
    top: 50%;
    left: 49%;

    /* width: 20%; */
    width: 10vw;
    min-width: 110px;
    /* height: 20%; */
    height: 20%;

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

    
    background: white;
    border-radius: 4px;

    font-family: "Poppins";
    font-weight: 700;
    /* font-size: 120%; */
    font-size: clamp(15px, 1.2vw, 20px);
}
#bottonVACINACAO:hover{
    background: #003843;
}

#bottonVACINACAO a {
    text-decoration: none;
    color: #063643;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bottonVACINACAO a:hover{
    color: white;
}
/* SEGUNDA CAMPANHA */
#ADOCAO {
    position: relative;
    background-color: #063643;
    background-image: url(Imagens/fundovacinacao.png);

    height: 300px;  
    width: 90%;
    
    margin-top: 30px;
    margin-bottom: 1.5%;

    left: 5%;

    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
/* IMAGEM DO GATO NA SEGUNDA CAMPANHA */
#gatodelado {
    position: absolute;
    
    right: 0;
}
/* IMAGEM DO CACHORRO NA SEGUNDA CAMPANHA */
#goldenfilhote {
    position: absolute;

    height: 55%;

    left: 55%;
    bottom: 0;
}
/* TITULO DA SEGUNDA CAMPANHA */
#titleADOCAO {
    position: absolute;
    left: 5%;
    top: 10%;

    width: 60%;
    height: auto;

    font-family: "Poppins";
    font-weight: 700;
    font-size: 1.4vw;
    /* font-size: 28px; */
    line-height: 100%;
    letter-spacing: 2%;

    color: #FFFFFF;
}
/* TEXTO DA SEGUNDA CAMPANHA */
#textADOCAO {
    position: absolute;
    top: 30%;
    left: 5%;

    width: 54%;
    height: auto;

    font-family: "Poppins";
    font-weight: 500;
    /* font-size: 1.0vw; */
    font-size: clamp(14px, 1.2vw, 20px);
    /* font-size: 20px; */
    line-height: 100%;
    letter-spacing: 5%;

    color: #fafdff;
}
/* BOTAO DA SEGUNDA CAMPANHA */
#bottonADOCAO {
    position: absolute;
    top: 68%;
    left: 20%;

    width: 20%;
    height: 20%;

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

    background: white;
    
    border-radius: 4px;

    font-family: "Poppins";
    font-weight: 700;
    font-size: clamp(12px, 1.2vw, 20px);
    /* font-size: 120%; */
}

#bottonADOCAO:hover{
    background: #89D3E6;
}

#bottonADOCAO a {
    text-decoration: none;
    color: #063643;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bottonADOCA a:hover{
    color: #003843;
}
/* TERCEIRA CAMPANHA */
#BANHO {
    position: relative;
    background-color: #F8F8FF;
    background-image: url(Imagens/chuva.png);
    background-position: center right, top left;
    background-repeat: no-repeat, no-repeat;
    background-size: 50% 100%, auto;

    height: 300px;  
    width: 90%;

    margin-top: 30px;
    margin-bottom: 1.5%;

    left: 5%;

    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
/* IMAGEM DO GATO NA TERCEIRA CAMPANHA */
#gatodetoalha {
    position: absolute;

    width: auto;
    height: 90%;

    right: 0;
    bottom: 0;
}
/* IMAGEM DO GUARDA-CHUVA NA TERCEIRA CAMPANHA */
#guardachuva {
    position: absolute;

    width:  auto;
    height: 60%;

    top: 0;
    left: 0;
}
/* TITULO DA TERCEIRA CAMPANHA */
#titleBANHO {
    position: absolute;

    top: 13%;
    left: 5%;

    width: 100%;
    height: 42px;

    font-family: "Poppins";
    font-weight: 700;
    font-size: clamp(14px, 1.3vw, 30px);
    /* font-size: 145%; */
    line-height: 100%;
    letter-spacing: 2%;

    color: #063643;
}
/* TEXTO DA TERCEIRA CAMPANHA */
#textBANHO {
    position: absolute;
    top: 29%;
    left: 5%;

    width: 60%;
    height: 60px;

    font-family: "Poppins";
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 18px);
    /* font-size: 18px; */
    line-height: 130%;
    letter-spacing: 2%;

    color: #063643;
}
/* BOTAO DA TERCEIRA CAMPANHA */
#bottonBANHO {
    position: absolute;
    top: 180px;
    left: 100px;

    width: 20%;
    height: 20%;

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

    background: #063643;
    
    border-radius: 4px;

    font-family: "Poppins";
    font-weight: 700;
    font-size: clamp(12px, 1.3vw, 20px);
    /* font-size: 120%; */
}

#bottonBANHO:hover{
    background: #7FD0E4;
}

#bottonBANHO a {
    text-decoration: none;
    color: #F8F8FF;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bottonBANHO a:hover{
    color: #003844;
}