﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: black; /* Define a cor do texto como preto */
}
.text-black {
    color: black; /* Classe adicional para garantir que o texto fique preto */
}
.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    background-color: #1e90ff;
    color: white;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
header p {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
}
.hero {
    text-align: center;
    margin-bottom: 2rem;
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-button, .whatsapp-button {
    background-color: #1e90ff;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    margin: 0.5rem;
    font-size: 1rem;
    display: inline-block;
}
.cta-button:hover {
    background-color: #1c86ee;
}
.whatsapp-button {
    background-color: #25D366;
}
.whatsapp-button:hover {
    background-color: #1EBE57;
}
.destinos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Permite que os itens quebrem linha conforme necessário */
}
.destino {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    color: black; /* Define a cor do texto como preto */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.destino img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.destino h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}
.destino p {
    padding: 0 1rem 1rem;
    font-size: 1rem;
    text-align: center;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem; /* Garantir que o footer fique abaixo do conteúdo */
}

