
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    overflow: auto;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgb(249, 250, 251);   
}

section{
    margin: 0;
    z-index: 1;
}

.p_titulo{
    font-family: system-ui, sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: rgb(32, 36, 46);
    margin-bottom: 1rem;
}

/*****************************PREÇO*****************************/
.PRECO{
    text-align: center;
    margin-top: 2rem;
}
.PRECO_CONTAINER{
    display: inline-flex;  
    flex-wrap: wrap;
    justify-content: center;
}
.preco_num{
    font-size: xx-large;
    font-weight: bold;
}
.PRECO_TAG{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2rem;
    width: 15rem;
    height: 20rem;
    margin: 1rem;
    padding: 1rem;
    transform: scale(1);
    transition: transform 0.5s ease-out;
    background-color: white;
}
.PRECO_TAG:hover{
    transform: scale(1.05);
}

/****************************************************************/

.download{
    margin-top: 6rem;
    text-align: center;
}

.baixar:hover{
    background-color:#4c6e85;
    scale: 1.1;
    transition: background-color 0.3s;
}
.baixar{
    padding: 1rem 3rem 1rem 3rem;
    font-size: 2rem;
    border-radius: 1.5rem;
    cursor: pointer;
    background-color: #69c5e9;
    border: 1px solid #81d6f7;
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 24px rgba(135, 206, 250, 0.30),
                0 0 12px rgba(135, 206, 250, 0.45);
}
.p_req{
    color: rgb(90, 87, 87);
}
.link_dotnet{
    text-decoration: none;
    color: rgb(38,128,217);
}
.link_dotnet:hover{
    text-decoration: underline blue;
}
.PRODUTO{
    margin-top: 1rem;
    padding: 1rem;
    display: grid;
    box-sizing: border-box;  
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    background-color: lightblue;
    width: 100%;
    transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
}
.PRODUTO:hover{
    transition: 0.1s;
    box-shadow: 0 8px 24px rgba(135, 250, 244, 0.3),
                0 0 12px rgba(135, 206, 250, 0.45); 
}
/* ******************************** COMBOBOX ********************************/
.combobox{
    background-color: white;
    font-size: large;
    font-weight: bold;
    margin: 0rem 0 1rem 0;
    border-radius: 0.5rem;
    border: 0.15rem solid #ccc;
    height: 3rem;
    width: 10rem;
    text-align: center;
    text-align-last: center;
}
.cb_item{
    text-align: center;
}
/* ***************************************************************************/

/* ******************************** CARROSSEL ********************************/
.carousel{
    padding-top:1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: row;
}
.bt_carousel_left, .bt_carousel_right{
    z-index: 1;
    opacity: 0.5;
    border: none;
    width: 4rem;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color:inherit;
}

.bt_carousel_left:hover,.bt_carousel_right:hover{
    background-color:white;
}
.png_container{
    display: inline-flex;   
    overflow: hidden;
    width: 100%;
}

.png_img{
    display: inline-flex;
    width: 100%;
}

.png_carousel{
    display:none;
    min-width: 100%;
    box-sizing: border-box;
}

.png_carousel img{
    width: 100%;
    overflow: hidden;   
}
/* ******************************************************************************/

