@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: #12dede;
    background: linear-gradient(120deg, rgba(18, 222, 222, 1) 0%, rgba(78, 120, 191, 1) 54%, rgba(68, 110, 158, 1) 74%);
}


.cabeçalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-right: 5rem;
    margin-left: 5rem;
}

.logo-cabeçalho {
    font-family: Oswald;
    font-weight: 600;
    font-size: 30px;
    padding-right: 20rem;
    text-transform: uppercase;
    color: #01152e;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 9rem;
    padding-left: 10rem;
    font-family: Arimo;
    font-weight: 500;
    font-size: 24px;
    margin-left: 5rem;
    color: aliceblue;
}

a {
    text-decoration: none;
    color: aliceblue;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

img {
    height: 250px;
    width: 100px;
    border-radius: 10px;
}

main {
    display: flex;
    flex-direction: column;
}

.titulo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.principal-titulo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #01152e;
    width: 100%;
    padding-bottom: 5rem;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem;
    margin-left: 10rem;
    width: 40%;
}

.info h1 {
    font-family: Inter;
    font-weight: 600;
    font-size: 35px;
    color: #12dede;
    padding-bottom: 1.5rem;
    border-bottom: #056969 solid 0.4px;
}

.info p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 25px;
    color: #056969;
    padding-top: 1rem;
}

.principal-imagem {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-right: 3rem;
    padding-top: 2rem;
}

.principal-imagem img {
    flex: 1 1 calc(20% - 20px); 
    object-fit: cover;
}

.botão {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    background: linear-gradient(120deg, rgba(18, 222, 222, 1) 0%, rgba(78, 120, 191, 1) 54%, rgba(68, 110, 158, 1) 74%);
    padding-bottom: 2rem;
    border-top: #023b52 solid 0.8px;
}

button {
    background-color: #12dede;
    margin: auto;
    padding: 1rem 2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

button:hover {
    transform: scale(1.05);
    background-color: #067272;
    color: aliceblue;
    transition: 0.5s;
}

.rodape {
    background: linear-gradient(120deg, rgba(18, 222, 222, 1) 0%, rgba(78, 120, 191, 1) 54%, rgba(68, 110, 158, 1) 74%);
    border-top: #01152e solid 0.8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    height: 9rem;
}

.rodape h2 {
    font-family: Arimo;
    font-size: 20px;
    font-weight: 500;
    color: aliceblue;
    height: 100%;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 900px){

.cabeçalho{
    flex-direction: column;
    gap: 1rem;
}

.logo-cabeçalho{
    padding-right: 0;
}

nav{
    gap: 2rem;
    padding-left: 0;
    margin-left: 0;
    font-size: 18px;
}

.principal-titulo{
    flex-direction: column;
    padding: 2rem;
}

.info{
    padding: 2rem;
    margin-left: 0;
    width: 100%;
    text-align: center;
}

.principal-imagem{
    justify-content: center;
}

.principal-imagem img{
    height: 180px;
    width: 80px;
}

}

@media (max-width:600px){

nav{
    flex-direction: column;
    gap: 1rem;
}

.info h1{
    font-size: 26px;
}

.info p{
    font-size: 18px;
}

.principal-imagem img{
    height: 150px;
    width: 70px;
}

button{
    padding: 0.8rem 1.5rem;
}

}