@charset "utf-8";

/*ESTA PÁGINA DESTYLES É PARA O POPUP DE AUTORIZAÇÃO DE COOKIES NA PÁGINA INDEX.HTML*/


    
.cookie-banner{
    display: flex;
    align-items:center;
    justify-content: center;
    position: fixed;
    top: 140px;
    width: 65%;
    height:auto;
} 

.cabecalho_cookie-banner{
    display: flex;
   flex-direction: column;
   align-items: center;
   justify-items: center;
    width:100%;
    height: auto;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #4F4F4F; 
}

.cabecalho_cookie-banner h4{
    width: 90%;
    height: auto;
    font-size: 22px;
    font-weight: 300;
    color:#FFFFFF;
    text-align:center;
    background-color: #cb6614;
    border-radius: 10px;
    margin: 3px auto;
}

.cabecalho_cookie-banner p{
    padding: 5px 15px 0px 15px;
    font-size: 13px;
    color: #000;
    text-align: justify;
}

.contentor-botoes{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    width: 80%;
    height: auto;
    margin: 8px auto;
}

.cabecalho_cookie-banner button{
    padding: 3px;
    font-size: 1rem;
    font-weight:bold;
    color:#FFFFFF;
    width: 120px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    background-color: #cb6614;
    cursor: pointer;
    transition: all 0.2s ease; 
}

 .cabecalho_cookie-banner button:hover{
    background-color: #FFFFFF ;
    color:#cb6614;
    border: 1px solid #cb6614;
 }

.cabecalho_cookie-banner p a{
    text-decoration: none;
    color: brown;
}

.cabecalho_cookie-banner p a:hover{
    text-decoration: underline;
    color: #696969;
    cursor: pointer;
    transition: all 0.2s ease;
}



@media(max-width:600px) {

    .cabecalho_cookie-banner h4{font-size: 0.87rem;}
    .cabecalho_cookie-banner p{font-size: 0.6rem;}
    .cabecalho_cookie-banner button{width: 70px; font-size:0.7rem ;}
}

 @media(min-width:601px) and (max-width:767px ){

    .cabecalho_cookie-banner h4{font-size: 1rem;}
    .cabecalho_cookie-banner p{font-size: 0.73rem;}
    .cabecalho_cookie-banner button{width: 85px; font-size:0.74rem ;}
 }

 @media(min-width:768px) and (max-width:1023px) {

    .cabecalho_cookie-banner h4{font-size: 1.25rem;}
    .cabecalho_cookie-banner p{font-size: 0.82rem;}
    .cabecalho_cookie-banner button{width: 95px; font-size:0.8rem ;}
 }

 @media(min-width:1024px) and (max-width:1279px) {

    .cabecalho_cookie-banner h4{font-size: 1.4rem;}
    .cabecalho_cookie-banner p{font-size: 0.89rem;}
    .cabecalho_cookie-banner button{width: 100px; font-size:0.9rem ;}
 }

    @media (min-width:1280px) {
    
    .cabecalho_cookie-banner h4{font-size: 1.7rem;}
    .cabecalho_cookie-banner p{font-size: 0.95rem;}
    .cabecalho_cookie-banner button{width: 120px; font-size:1rem ;}
 }

