/* 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);
    }
}

/* Edição Global */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: Montserrat;
    background-color: #004080;
}

/* 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;
    text-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.349);
}

.titulo-logo {
    color: #F36300;
    font-size: 43px;
    line-height: 23px;
    padding-top: 10px;
    display: none;
}

.sub-tit {
    color: #79411c;
    font-size: 24.4px;
    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;
    }
}

/* Fim do Topo */





/* Sobre */

.fundo-sobre {
    background: linear-gradient(to right, #ff9854, #ffffff, #ffffff);
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

@media screen and (max-width: 1470px) {
    .fundo-sobre {
        flex-direction: column;
    }
}

@media screen and (max-width: 700px) {
    .container-sobre {
        display: none;
        margin: 0;
        padding: 0;
    }

    .container-sobre-texto {
        display: none;
        margin: 0;
        padding: 0;
    }

    .fundo-sobre {
        height: 500px;
        padding-top: 0;
    }
}

.container-sobre {
    width: 700px;
    height: 367px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(30px);
    animation: surgirslidelado 1.5s forwards;
}

.titulo-sobre {
    color: #F36300;
    font-size: 45px;
    text-align: center;
    line-height: 50px;
}

.span-tit {
    font-style: italic;
    color: #ffffff;
    font-size: 70px;
    text-shadow: 4px 4px 12px #F36300;
}

.span-tit-ramos {
    color: #ffffff;
    font-size: 55px;
    text-shadow: 4px 4px 12px #F36300;
}






























.video-sobre-vid {
    border-radius: 20px;
    box-shadow: 3px 2px 27px -5px rgba(243, 99, 0, 1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

@media screen and (max-width: 700px) {
    .video-sobre-vid {
    width: 500px;
    height: 281px;
    }

    .fundo-sobre {
        height: 400px;
    }
}

@media screen and (max-width:) {
    
}

.video-sobre-vid:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease-in-out box-shadow 0.3s ease-in-out;;
    box-shadow: 3px 2px 57px -4px rgba(243, 99, 0, 1);
}

































/* Container Topo */

.container-topo {
    background: linear-gradient(90deg,rgba(28, 153, 255, 1) 0%, rgba(188, 225, 255, 1) 50%, rgba(28, 153, 255, 1) 100%);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px
}

.container-topo-info {
    border: 3px solid white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

/* Imagens Início */

.img-container-um {
    background-image: url(img/img-container1.png);
    background-size: cover;
    border-right: 3px solid white;
    width: 350px;
    height: 350px;
    z-index: 5;
}

.img-container-dois {
    background-image: url(img/img-container2.png);
    background-size: cover;
    border-right: 3px solid white;
    width: 350px;
    height: 350px;
    z-index: 5;
}

.img-container-tres {
    background-image: url(img/img-container3.png);
    background-size: cover;
    border-right: 3px solid white;
    width: 350px;
    height: 350px;
    z-index: 5;
}

/* Imagens Fim */

/* Títulos Início */

.titulos-container {
    background: linear-gradient(90deg,rgba(255, 137, 59, 1) 0%, rgba(255, 166, 107, 1) 50%, rgba(255, 137, 59, 1) 100%);
    padding-left: 10px;
    padding-right: 10px;
}

.titulo-div-topo {
    text-align: center;
    padding-top: 10px;
    color: #ffffff;
    transform: translateX(-10px);
    animation: surgirslidelado 1.5s forwards;
}

.texto-div-info {
    margin-top: 20px;
    color: white;
    width: 190px;
    text-align: left;
    transform: translateX(-50px);
    animation: surgirslide 1.5s forwards;
}

/* Títulos Fim */

/* Resonsivo Container Topo */

@media screen and (max-width: 1890px) {
    .container-topo {
        gap: 20px;
        height: 700px;
    }
    
    .container-topo-info {
        flex-direction: column;
    }

    .img-container-um {
        border-right: none;
        border-bottom: 3px solid white;
        background-size: cover;
    }

    .img-container-dois {
        border-right: none;
        border-bottom: 3px solid white;
    }

    .img-container-tres {
        border-right: none;
        border-bottom: 3px solid white;
    }

    .texto-div-info {
        height: 190px;
        width: 330px;
        text-align: center;
        border-top: 3px solid white;
        padding-top: 20px;
    }

    .titulo-div-topo {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1150px) {
    .container-topo {
        flex-direction: column;
        height: 2000px;
    }
}




























































/* 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;
}