body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}
header {
    background-color: #006bb6;
    color: white;
    padding: 10px 0;
    text-align: center;
}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0 80px 0; /* Adiciona 80px de padding inferior */
}

h1, h2 {
    text-align: center;
}
.destinations {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.destination {
    background-color: white;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.destination img {
    max-width: 100%;
    border-radius: 5px;
}
.destination button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}
.destination button:hover {
    background-color: #45a049;
}
footer {
    background-color: #006bb6;
    color: white;
    text-align: center;
    padding: 5px 0; /* Reduzir o padding para 5px */
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Media Query para dispositivos móveis */
@media (max-width: 768px) {
    .destination {
        width: 100%;
    }
}
