@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
main{
    max-width: 950px;
    margin: auto;
}

body{
    font-family: 'Exo 2', sans-serif;
    background-color: #ECECEC;
    font-family: sans-serif;
}

p{
    color: #6A6A6A;
}

h1, h3{
    color: #0D324D;
}

h5{
    font-size: 12px;
}

header h1{
    font-size: 60px;
    width: 55%;
    margin-left: 10px;
}

header p{
    width: 55%;
    margin-left: 10px;
    font-size: 30px;
    /* width: 1000px; */
    flex-direction: column;
}

header{
    display: flex;
    flex-direction: row;
    position: relative;
}

#Mascote{
    position: absolute;
    object-fit: contain;
    height: 50vh;
    margin-bottom: -30px;
    right: -50px;
    top: 70px;
    animation: floating 3s ease-in-out infinite;
}

header img{
    width: 400px;
    height: 400px;
}

hr{
    margin-top: 10px;
    margin-left: -10px;
    width: 1000px;
    background-color: #ccc;
    border: none;
    height: 1px;
}

#seta{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    font: arial normal;
    font-size: 30px;
}

.setas{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    margin-top: 30px;
    gap: 1000px;
}

.container_video{
    display: flex;
    justify-content: center;
    align-items: center;
}

.video{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

video:hover{
    transform: scale(1.1);
}

video{
    width: 268px;
    height: 150px;
    margin-bottom: 30px;
    margin-left: -1px;
    border: 4px solid #ffffff;
    transition: all 400ms;
}

h3{
    font-size: 30px;
    margin-left: 10px;
}

.projetos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.projeto{
    width: 250px;
    height: 300px ;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.imagem{
    width: 225px;
    height: 170px;
    margin-top: 10px;
    border: 4px solid white;
    background-color: #086FC4;
    transition: all 400ms;

}

.imagem:hover{
    transform: scale(1.1);
}

.descricao{
    width: 200px;
    height: 100px;
}

.descricao h5{
    word-spacing: -30px;
}

@keyframes floating {
    0% {
      transform: translateY(0px)
      scale(1)
    }
    50% {
      transform: translateY(-40px)
      scale(1.1)
    }
    100% {
      transform: translateY(0px)
      scale(1)
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */
GEMINI

/* Estilizando o formulário */
form {
    text-align: center; /* Centraliza o conteúdo */
    width: 50%; /* Define a largura do formulário */
    margin: 0 auto; /* Centraliza o formulário horizontalmente */
  }
  
  /* Estilizando o título */
  h2 {
    margin-bottom: 20px;
  }
  
  /* Estilizando os campos de entrada */
  input[type="text"],
  input[type="number"] {
    width: 200px; /* Define a largura dos campos */
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.enviar{
    margin-left: 5px;
    margin-top: 20px;
    background-color: #086FC4;
    width: 100px;
    height: 50px;
    color: white;
    /* font-size: 20px; */
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.enviar:hover{
    background-color: #075da3;
    cursor: pointer;
}

.linha{
    height: 200px;
    margin-left: 70px;
    border-left: 1px solid #ccc;
    margin-top: 30px;
}

.containerRodape{
    display: flex;
}

.containerRodape h3{
    /* margin-left: -10px; */
}

.nomecontato{
    width: 500px;
}

.inscrever{
    width: 900px;
}

.contato{
    margin-left: 20px;
    margin-top: 30px;
    /* width: 200px;
    height: 200px; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: yellow;
    /* gap: -150px; */
}

.whatsapp{
    width: 150px;
    margin-left: -400px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram{
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a{
    text-decoration: none;
}

.contato img{
    height: 60px;
}

@media (max-width: 630px){
    #Mascote{
        transition: 1.5s;
        position: absolute;
        object-fit: contain;
        height: 90vh;
        margin-bottom: -30px;
        right: -250px;
        top: 60px;
        animation: floating 3s ease-in-out infinite;
    }

    header img{
        width: 480px;
        height: 400px;
    }

}

@media (max-width: 940px){
    .video{
        display: flex;
        flex-direction: row;
        gap: 40px;
        flex-direction: column;

    }
}

@media (max-width: 780px){
    .projetos{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-direction: column;
    }
}

.projeto img{
    width: 225px;
    height: 170px;
}