@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    color: black;
    text-align: center;
    background-image: linear-gradient(to top, #8DA3A6, #A69B7C, #734B34);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll; 
    min-height: 100vh; 
}

.header-container .logo {
    height: 100px;
}

.menu {
    margin-top: 10px;
}

.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.menu a:hover {
    background-color: #8da3a62a;
}

main {
    padding: 20px;
}

main h2 {
    margin-top: 20px;
}

main img {
    width: 90%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    margin: 20px 0;
}

.textoqs {
    text-align: justify;
    line-height: 1.6;
    margin: 10px auto;
    max-width: 900px;
}

.pacotes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.pacote {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.pacote img {
    width: 300px;
    height: 200px;
    border-radius: 20px;
}

footer {
    padding: 20px;
    color: rgba(255, 140, 0, 0.836);
}

footer .socials img {
    height: 35px;
    margin: 5px;
    transition: 0.3s;
    border-radius: 10px;
}

footer .socials img:hover {
    box-shadow: 2px 2px 5px black;
    transform: scale(1.1);
}

footer h3.dev {
    background-color: black;
    padding: 10px;
    width: 250px;
    margin: 20px auto 0;
    border: 3px solid rgba(255, 255, 255, 0.644);
    border-radius: 1em;
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .pacotes {
        flex-direction: column;
        align-items: center;
    }
}
