body {
    background-color: #0d0d0d; /* Fundo escuro */
    color: #d4af37; /* Dourado */
    font-family: 'Georgia', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #d4af37;
    max-width: 90%;
    padding: 20px;
    width: 1000px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.subtitle {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about {
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #fff;
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #888;
}

.team {
    margin-top: 40px;
    text-align: center;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espaço entre as fotos */
    flex-wrap: wrap; /* Permite quebrar linha no celular */
}

.gallery img {
    width: 200px;
    max-width: 100%;
    height: 200px;
    object-fit: cover; /* Recorta a foto mantendo a proporção */
    border: 2px solid #d4af37;
    border-radius: 5px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.5); */
}
