body {
    font-family: "Bebas Neue", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header e Navbar */
header {
    background-color: #4CAF50;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .navbar {
    background-color: #24e11a;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

header .navbar a {
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    padding: 10px;
    transition: background-color  ease;
}

header .navbar li{
    list-style: none;
    display: inline;
    justify-content: center;
}

header .navbar a:hover {
    background-color: #4CAF50;
    border-radius: 15px;
}


/* pag Home */
.container {
    background-size: cover;
    background-position: center;
    color: #000000;
    text-align: center;
    padding: 100px 20px;
}

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

.container video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%);
    z-index: -1; 
}

.container h1 {
    font-size: 48px;
    margin: 0;
}

.container p {
    font-size: 24px;
    color: whitesmoke;

}

.container .btn {
    background-color: red;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    margin-top: 20px;
}

.container .btn:hover {
    background-color: #b30000;
}

/* pag destinos */
.destinos {
    text-align: center;
    padding: 50px 20px;
}

.destinos h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pacotes_viagem {
    display: inline-block;
    width: 30%;
    margin: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease;
}

.pacotes_viagem img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pacotes_viagem p {
    padding: 0 10px 10px;
    color: #333; 
}

.pacotes_viagem:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* pag sobre */
.sobre {
    text-align: center;
}

.sobre h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.sobre_texto p {
    font-size: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 12px rgba(67, 131, 39, 0.1);
    border-radius: 8px;
    background-color: #ffffff;
    padding: 10%;
}

.sobre img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-top: 5px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

/* pag contato */
.container_cadastro { 
    text-align: center;
    justify-content: center;
    display: inline-block;
    width: 65%;
    margin: 20px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: white;
    width: 50%;
    margin-left: 25%;
}

.form_grupo {
    margin-bottom: 15px;
    width: 50%;
    margin-left: 25%;
}

.form_grupo div {
    margin-bottom: 5px;
    color: #555;
}



input {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 30%;
    margin: 0 auto;
    display: block;
}

button:hover {
    background-color: #218838;
}

#mensagem {
    text-align: center;
    color: red;
}

form {
    display: grid;
    grid-gap: 10px;
}

input[type="submit"]:hover {
    background-color: #117aca;
}

/* avaliação*/

.container_avaliacao {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 70px;
}

.stars {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.star {
    font-size: 40px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
    padding: 10px;
    display: inline-block;
}

.star:hover,
.star.active {
    color: #ffcc00;
}

#nota {
    font-size: 18px;
    margin-bottom: 20px;
}

#submit-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#submit-button:hover {
    background-color: #0056b3;
}

.footer_avaliacao {
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    header .navbar {
        flex-direction: column;
    }

    .container h1 {
        font-size: 36px;
    }

    .container p .sobre p {
        font-size: 24px;
    }

    .container .btn {
        font-size: 16px;
    }

    .destinos h2 {
        font-size: 30px;
    }

    .pacotes_viagem {
        width: 90%;
        margin: 10px auto;
    }

    .pacotes_viagem img {
        height: 150px;
    }

    .sobre_texto {
        width: 70%;
        padding-left: 70px;
    }

    .container_cadastro{
        width: 80%;
        margin-left: 10%;
    }
}

@media (max-width: 480px) {
    header .navbar a {
        font-size: 18px;
        padding: 8px;
    }

    .container h1 {
        font-size: 28px;
    }

    .container p {
        font-size: 18px;
    }

    .container .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .destinos h2 {
        font-size: 24px;
    }

    .pacotes_viagem {
        width: 100%;
        margin: 10px 0;
    }

    .pacotes_viagem img {
        height: 120px;
    }

    .sobre h1 {
        font-size: 24px;
    }

    .sobre p {
        font-size: 16px;
        padding: 0 5px;
    }

    .container_cadastro{
        width: 70%;
        margin-left: 15%;
    }

    .footer_avaliacao{
        margin-top: 60%;
    }

}

