/* Montserrat */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Animações  */

@keyframes pulsar {
    0%, 100% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1.1);
    }
}

@keyframes surgirslidelado {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
      transform: translateX(0px);
    }
}


@keyframes surgirslide {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
      transform: translateY(0px);
    }
}

@keyframes balancalado {
    0% {
        transform: translateX(0px);
    }

    33% {
        transform: translateX(5px);
    }
    
    66% {
        transform: translateX(-5px);
    }
    
    100% {
        transform: translateX(0px);
    }
}

@keyframes opacidade {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
}

/* Edição Global */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: Montserrat;
    background: linear-gradient(90deg, rgba(0,110,198,1) 0%, rgba(78,153,255,1) 30%, rgba(0,88,140,1) 100%);
}

/* Navegação do Topo da página */

header {
    background-color: white;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    justify-content: right;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 50px;
    transform: translateX(30px);
    animation: surgirslidelado 1.5s forwards;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    text-decoration: none;
    color: #F36300;
    font-weight: normal;
    font-size: 20px;
}

header nav ul li:hover {
    color: #b44800;
}

header nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0px;
    height: 2px;
    background-color: #F36300;
    transition: width 0.3s ease;
}

header nav ul li:hover::after {
    width: 100%;
}

/* Logo Imagem */

.logo-topo {
    display: flex;
    align-items: center;
    transform: translateX(-15px);
    animation: surgirslidelado 1.5s forwards;
}

.logo-topo-icon {
    width: 40px;
    margin-left: 30px;
    animation: pulsar 2.0s infinite ease-in-out;
    cursor: pointer;
}

.titulos-logo {
    padding-left: 10px;
    padding-bottom: 6px;
    text-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.349);
}

.titulo-logo {
    color: #F36300;
    font-size: 28px;
    line-height: 18px;
    padding-top: 10px;
}

.sub-tit {
    color: #79411c;
    font-size: 15.8px;
    padding-left: 5px;
}

.img-inicial-topo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsivo Topo */

@media screen and (max-width: 768px) {
    header {
        height: 90px;
        flex-direction: column;
    }

    header nav ul {
        padding-right: 0;
        padding-bottom: 10px;
    }

    .logo-topo-icon {
        padding-top: 10px;
        margin: 0;
    }

    header nav ul li a {
        font-size: 18px;
    }

    .img-inicial-topo {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
}

@media screen and (max-width: 1000px) {
    header {
        height: 90px;
        flex-direction: column;
    }
    header nav ul {
        padding-right: 0;
        padding-bottom: 10px;
    }

    .logo-topo-icon {
        padding-top: 10px;
        margin: 0;
    }

    .titulos-logo {
        display: none;
    }
}

/* Fim do Topo */





/* Container de Download */

.container-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    background: linear-gradient(90deg, rgb(0, 101, 184) 0%, rgba(78,153,255,1) 30%, rgb(0, 83, 131) 100%);

}

.menu {
    width: 1350px;
    height: 90%;
    background: linear-gradient(90deg, rgb(0, 101, 184) 0%, rgba(78,153,255,1) 30%, rgb(0, 83, 131) 100%);
    border-radius: 20px;
    border: #ffffff 1px solid;
    display: flex;
}

.container-principal-avisos {
    color: #ffffff;
    border-right: 1px solid #ffffff;
    width: 50%;
    height: 100%;
    padding: 50px;
}

.aviso-principal {
    padding-bottom: 30px;
    font-size: 35px;
    text-align: center;
}

.avisos-importantes {
    font-size: 18px;
}

.aviso-principal-item {
    padding-bottom: 50px;
}

.acesso-remoto-item {
    font-size: 18px;
    padding-bottom: 40px;
    padding-left: 0px;
    list-style: none;
}

.master-ico {
    width: 50px;
}

.master-remote {
    font-size: 30px;
    color: #ffffff;
    padding: 15px;
    margin-left: 12px;
    background: linear-gradient(112deg, rgba(189, 126, 255, 1) 0%, rgba(129, 162, 255, 1) 50%);
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.master-remote:hover {
    background: linear-gradient(112deg, rgba(129, 162, 255, 1) 0%, rgba(189, 126, 255, 1) 80%);
}

.container-principal-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 600px;
    height: 550px;
    margin: 35px;
    border-radius: 20px;
    background: linear-gradient(to right, #bcd8ff, #ffffff);
    gap: 10px
}

.titulo-principal-download {
    font-size: 28px;
    font-weight: bold;
    color: #004175;
    text-align: center;
    margin-bottom: 20px;
}

.container-principal-download-btn:hover {
    transform: scale(1.1);
}

.container-principal-download-btn {
    transition: 0.3s ease;
}

.titulo-principal-download {
    font-size: 20px;
}

.dw-btn {
    padding: 10px 50px;
    border: #004175 2px solid;
    border-radius: 30px;
    font-size: 20px;
    background-color: #004f8f;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.dw-btn:hover {
    background-color: #004175;
}

@media screen and (max-width: 1400px) {
    .menu {
        flex-direction: column;
        height: 1200px;
        width: 1000px;
    }
    
    .container-principal-avisos {
        border-right: none;
        border-bottom: #ffffff 1px solid;
        width: 100%;
        height: 550px;
    }

    .container-principal-download {
        width: 930px;
    }

    .img-pc{
        width: 200px;
    }

    .container-principal {
        height: 1300px;
    }

    .master-remote {
        margin-left: 0px;
    }
}

@media screen and (max-width: 1050px) {
    .menu {
        height: 1400px;
        width: 700px;
    }

    .container-principal-avisos {
        border-right: none;
        border-bottom: #ffffff 1px solid;
        width: 100%;
    }
    
    .container-principal {
        height: 1500px;
    }
    
    .container-principal-download {
        width: 630px;
    }

    .master-remote {
        font-size: 25px;
        margin-left: 0px;
    }
}

@media screen and (max-width: 750px) {
    .menu {
        height: 630px;
        width: 400px;
    }
    
    .container-principal {
        height: 700px;
    }

    .container-principal-avisos {
        display: none;
    }

    .container-principal-download {
        width: 330px;
    }

    .dw-btn {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 450px) {
    .menu {
        height: 640px;
        width: 360px;
    }
    
    .container-principal {
        height: 800px;
    }

    .container-principal-download {
        width: 290px;
    }
}

@media screen and (max-width: 350px) {
    .menu {
        height: 600px;
        width: 300px;
    }
    
    .container-principal {
        height: 700px;
    }

    .container-principal-download {
        width: 230px;
    }
}






























/* Footer */

.container-footer {
    background: linear-gradient(90deg, #004175 0%, #0065b8 50%, #004f8f 100%);
    border-top: 1px solid #ffffff;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-footer-img {
    padding-right: 40px;
    border-right: 1px solid #ffffff;
}

.img-footer {
    animation: surgirslide 1.0s forwards;
    transform: translateY(15px);
    cursor: pointer;
}

.container-footer-contatos {
    padding-left: 40px;
    padding-right: 40px;
}

.titulo-footer {
    color: #ffffff;
    font-size: 30px;
    padding-bottom: 10px;
    text-align: center;
    animation: surgirslide 1.0s forwards;
    transform: translateY(8px);
}

.texto-footer {
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    animation: surgirslide 1.0s forwards;
    transform: translateY(8px);
}

.link-footer {
    text-decoration: none;
    color: #ffffff;
    animation: surgirslide 1.0s forwards;
    transform: translateY(8px);
}

.link-footer:hover {
    color: #77c2ff;
}

.container-footer-densenvolve {
    padding-left: 40px;
    border-left: 1px solid #ffffff;
    padding-top: 38px;
    padding-bottom: 38px;
    text-align: center;
}

.vagner-footer {
    color: #ffffff;
    font-size: 15px;
    animation: surgirslidelado 1.1s forwards;
    transform: translateX(15px);
}

.vg-dev {
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    font-family: "Allura", cursive;
}

.vg-dev:hover {
    animation: balancalado 1.5s infinite ease-in-out;
}

/* Responsivo Footer */

@media screen and (max-width: 780px) {
    .container-footer {
        flex-direction: column;
        height: auto;
    }

    .container-footer-img {
        padding-right: 0;
        border-right: none;
    }

    .container-footer-densenvolve {
        padding-left: 0;
        border-left: none;
    }

    .texto-footer {
        font-size: 15px;
        }

    .container-footer-img {
        padding-top: 40px;
        padding-bottom: 20px;
    }
}


.container-tira-baixa {
    background-color: #ffffff;
}

.tira-baixa {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    animation: opacidade 1.0s forwards;
}