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

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    font-weight: 500;
}

p {
    font-size: 20px;
}

q {
    font-size: 16px;
    font-style: italic;
    quotes: none;
}

blockquote {
    font-size: 16px;
    font-style: italic;
    width: 400px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    gap: 20px;
}

header ul {
    display: flex;
}

header li {
    list-style-type: none;
}

header a {
    text-decoration: none;
}

header img {
    width: 200px;
    height: 40px;
}


/* Seção introdução */
.introducao {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
    background-color: #2c3aba;
    height: 600px;
}

.introducao img {
    width: 300px;
}

.introducao h1 {
    color: #fff;
}

.introducao h2 {
    color: #fff;
}

.introducao p {
    margin-top: 12px;
    width: 500px;
}

/* Seção depoimentos */
.depoimentos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 600px;
}

.depoimentos > div {
    display: flex;
    width: 100vw;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.depoente > p {
    margin-top: 16px;
    text-align: center;
}

.parcerias {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    text-align: center;
    color: #fff;
    background-color: #2c3aba;
    height: 600px;
}

/* Footer  */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

footer ul {
    display: flex;
    list-style-type: none;
    gap: 30px;
}

footer ul li a {
    text-decoration: none;
    display: inline-block;
}

footer ul li {
    display: inline-block;
}