body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    background-color: #0b3d91;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 50px;
}

nav{
    display: flex;
    gap: 40px;
}

nav a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.inicio{
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 50px;

    height: 70vh;
}

.quadrado{
    width: 250px;
    height: 250px;

    background-color: #59dbe8;

    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    color: white;

    font-size: 24px;
    font-weight: bold;

    transition: 0.3s;
}

.quadrado:hover{
    transform: scale(1.05);

    background-color: #42c8d6;
}

.pacote{
    width: 80%;

    background-color: #f0f0f0;

    margin: 30px auto;

    padding: 20px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    text-decoration: none;

    color: black;

    transition: 0.3s;
}

.pacote:hover{
    transform: scale(1.02);

    background-color: #e4e4e4;
}

.pacote img{
    width: 140px;

    height: 100px;

    object-fit: cover;

    border-radius: 10px;

    margin-right: 20px;
}

.pacote h2{
    margin: 0;

    color: #0b3d91;

    font-size: 32px;
}

.pacote p{
    margin-top: 10px;

    font-size: 18px;
}

.ajuda{
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    height: 70vh;
}

.ajuda h1{
    font-size: 50px;

    color: #0b3d91;
}

.ajuda p{
    font-size: 25px;
}