styles.css
/* Fonte */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

/* Header */
header {
    background-color: #1e3d58;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

nav a:hover {
    color: #ffcc00;
}

h1.club-name {
    font-family: 'Lora', serif;
    font-size: 40px;
    margin: 20px 0;
    font-weight: 700;
}

/* Tela inicial com imagem e texto */
#home {
    position: relative;
    height: 80vh; /* Diminuindo a altura para tornar a seção mais compacta */
    background-image: url('https://i.postimg.cc/Wbf1G6f5/IMG-3906.jpg'); /* Substitua com a imagem desejada */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFD700;
}

.home-content {
    background: rgba(0, 0, 0, 0.6); /* Fundo escuro transparente para melhorar a visibilidade do texto */
    padding: 30px;
    border-radius: 10px;
}

.home-content h1 {
    font-size: 39px; /* Diminuindo o tamanho da fonte para 32px */
    font-family: 'Lora', serif;
    margin-bottom: 10px; /* Ajustando o espaçamento inferior */
}

.home-content p {
    font-size: 25px; /* Diminuindo o tamanho da fonte do parágrafo */
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 500px; /* Ajustar o tamanho máximo para texto */
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

.visit-btn {
    background-color: #ffcc00;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.visit-btn:hover {
    background-color: #e0a800;
}

/* Seções */
section {
    padding: 50px 20px;
    text-align: center;
}

.espaco-info h2, .contato-section h2, .localizacao-section h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1e3d58;
    margin-bottom: 20px;
}

.espaco-info p, .contato-section p, .localizacao-section p {
    font-size: 18px;
    font-weight: 300;
    color: #555;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.image-gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    text-align: center;
}

.modal-content h2 {
    font-family: 'Lora', serif;
    font-size: 24px;
    color: #1e3d58;
}

.modal-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.modal-content button {
    background-color: #ffcc00;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.modal-content button:hover {
    background-color: #e0a800;
}

.modal-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Estilos adicionais para o botão flutuante */
#whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distância do fundo */
    right: 20px; /* Distância da direita */
    background-color: #25d366; /* Cor de fundo do WhatsApp */
    border-radius: 50%; /* Tornar o botão redondo */
    padding: 10px; /* Espaçamento interno */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra sutil */
    transition: background-color 0.3s, transform 0.3s; /* Efeito de transição suave */
    z-index: 9999; /* Garantir que o botão fique acima de outros elementos */
}

#whatsapp-float:hover {
    background-color: #128c7e; /* Cor de fundo ao passar o mouse */
    transform: scale(1.1); /* Aumentar um pouco o botão ao passar o mouse */
}

.whatsapp-icon {
    width: 40px; /* Tamanho reduzido do ícone */
    height: 40px; /* Tamanho reduzido do ícone */
    object-fit: contain; /* Ajustar o ícone para manter a proporção */
}

/* Footer */
footer {
    background-color: #1e3d58;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}
