@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 {
    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);
}

.titulo-pagina {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #01152e;
}

.titulo-pagina h1{
    font-family: Oswald;
    font-size: 45px;
    font-weight: 700;
    color: aliceblue;
}

.titulo-pagina p{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arimo;
    font-size: 20px;
    font-weight: 500;
    color: antiquewhite;
}

.s1-img img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;;
}

.s1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding-left: 20rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.s1-escrito {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 100%;
}

.s1-titulo h2{
    font-family: Oswald;
    font-size: 30px;
    font-weight: 600;
    color: aliceblue;
    border-bottom: #01152e solid 0.4px;
    padding-bottom: 1rem;
}

.s1-escrito p {
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    color: rgb(222, 215, 206);
    padding-top: 1rem;
}

.rodape {
    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;
}

.logo-cabeçalho{
    padding-right: 0;
}

nav{
    gap: 2rem;
    padding-left: 0;
    margin-left: 0;
}

.s1{
    flex-direction: column;
    padding-left: 0;
    width: 90%;
    margin: auto;
    text-align: center;
    gap: 2rem;
}

.s1-escrito{
    width: 100%;
}

}

@media (max-width:600px){

.titulo-pagina h1{
    font-size: 32px;
}

.titulo-pagina p{
    font-size: 16px;
}

.s1-img img{
    width: 150px;
    height: 150px;
}

}