﻿html,body
{
    background-image:url('back.png');
    background-size:cover;
    background-position:center center;
    border:0;
    margin:0;
    height:100%;
}

html {
    scroll-behavior: smooth;
}


table {
    margin:0;
    padding:0;
    width:100%;
    height:100%;
}

td {
    vertical-align:middle;
    text-align:center;
    height:100%;
}

img {
    margin-bottom:10px;
    transition: all 0.35s ease;
}

.load {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 245, 230, 0.8);
    background-image: url('load.svg');
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: 999999;
}

::selection {
  color: #516E4F;
  background: rgba(248, 245, 230, 1);
}

img:hover {
    transform: scale(1.05);
    transition: all 0.25s ease;
}


.opacityefect {
    opacity: 0.8;
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .opacityefect:hover {
        opacity: 1;
        -moz-transition: all 0.25s ease;
        -webkit-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

.brilhoefect {
    -webkit-filter: brightness(1);
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .brilhoefect:hover {
        -webkit-filter: brightness(1.2);
        -moz-transition: all 0.25s ease;
        -webkit-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

.scaleefect {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .scaleefect:hover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        -moz-transition: all 0.25s ease;
        -webkit-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }


.logo {
    width:200px;
    height:202px;
    background-image:url('logo.png');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:contain;
    text-align:center;
    position:relative;
    margin:0 auto;
    margin-top:20px;
}

.bts {
    max-width:80%;
    text-align:center;
    margin:0 auto;
    position:relative;
    margin-top:30px;

}

.btsit {

}

@keyframes bt1 {

    0% {
        transform: rotate(0deg);
    }

    2% {
        transform: rotate(2deg);
    }
    4% {
        transform: rotate(-2deg);
    }
    6% {
        transform: rotate(2deg);
    }
    8% {
        transform: rotate(-2deg);
    }

    10% {
        transform: rotate(0deg);
    }
    

    100% {
        transform: rotate(0deg);
    }
}

#bt1 {

    animation: bt1 5s ease-in-out 3s infinite;
    
    

    
}

.msgdeliv {
    width:100%;
    display: flex;
    justify-content: center; /* Alinha horizontalmente */
    align-items: center; /* Alinha verticalmente */
    height: 100vh;
    background-color:rgba(81, 110, 79, 0.85);
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    opacity:0;
}

    .msgdeliv div {
        width: 300px;
        height: 1;0px;
        background-color:rgba(248, 245, 230, 1);
        border-radius: 15px;

        font-family:Calibri, Arial;
        font-size:16px;

        padding:20px;
        display: flex;
        justify-content: center; /* Alinha horizontalmente */
        align-items: center; 
        text-align:center;

        font-weight:bold;
    }



@media only screen and (min-width:769px) {
    /*PC*/

    .body {
        background-position:left center;
    }

    .logo {
        width:260px;
        height:262px;
        background-image:url('logo.png');
        background-repeat:no-repeat;
        background-position:center center;
        
        float:left;
        margin:auto;

        margin-left:80px;

    }

    .bts {
        max-width: 370px;
        text-align: left;
        margin: auto;
        position: relative;
        float:left;
        margin-left:90px;
        margin-top: 0px;
    }

}