body {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background-color: #FFFDFA;
}

button,
.modal-button,
a.button {
    background-color: #A35029;
    color: #FFFDFA;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s ease;
}

button:hover,
.modal-button:hover,
a.button:hover {
    background-color: #8a4222;
}

section {
    padding: 50px;
    text-align: center;
}

#intro {
    height: 100vh;
    display: none; /* Inicialmente escondido, será exibido no script */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFDFA;
    text-align: center;
    color: #1E2939;
    background-image: url("./image.jpg");
    background-size: cover;
    background-position: center;
}

#intro .content {
    background-color: rgba(255, 253, 250, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1,
h2 {
    margin: 0;
    color: #1E2939;
}

h1.great-vibes-regular,
h2.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 48px;
}

p {
    font-size: 24px;
    margin: 5px 0;
    color: #1E2939;
}

.local {
    font-size: 24px;
    margin-top: 10px;
    color: #1E2939;
}

#informacoes {
    display: flex;
    justify-content: space-around;
    background-color: #FFFDFA;
    padding: 20px 0;
    flex-wrap: wrap;
    border-top: 1px solid #1E2939;
    border-bottom: 1px solid #1E2939;
}

.info-box {
    flex: 1;
    max-width: 30%;
    margin: 10px;
    background-color: #FFFDFA;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(30, 41, 57, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    border: 1px solid #1E2939;
}

.info-box p {
    margin: 10px 0;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .info-box {
        max-width: 90%;
    }
}

/* Estilos para o modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(30, 41, 57, 0.7);
}

.modal-content {
    background-color: #FFFDFA;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #1E2939;
    width: 80%;
    max-width: 300px;
    text-align: center;
    border-radius: 8px;
}

.audio-button {
    background-color: #A35029;
    color: #FFFDFA;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin: 15px 0 0;
    transition: background-color 0.3s ease;
}

.audio-button:hover {
    background-color: #8a4222;
}

.modal-content button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    background-color: #A35029;
    color: #FFFDFA;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #8a4222;
}

a {
    text-decoration: none;
    color: #A35029;
}

a:hover {
    text-decoration: underline;
}