/* Reset básico */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
}

/* Barra superior */
.navbar {
  background-color: #1e90ff;
  color: #fff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar img {
  height: 100px;
  margin-left: 20px;
}

.nav-links {
  margin-right: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Cabeçalho principal */
header {
  text-align: center;
  padding: 30px 20px;
  background-color: #eaf4ff;
}

header h1 {
  font-size: 2.5em;
  color: #333;
}

/* Secções de eventos e notícias */
.section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h2 {
  font-size: 1.2em;
  margin: 0 0 10px;
}

.card-content p {
  font-size: 0.95em;
  color: #555;
}

/* Secção dos órgãos sociais */
.corpos-section {
  padding: 30px 20px;
  text-align: center;
}

.corpos-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.corpos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.corpo-card {
  background: #fff;
  border-radius: 10px;
  width: 200px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.corpo-card img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

.corpo-card h3 {
  font-size: 1em;
  margin: 5px 0;
}

.corpo-card p {
  font-size: 0.9em;
  color: #666;
}

.competicoes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.coluna {
  flex: 1 1 400px;
  max-width: 500px;
}

.coluna h2 {
  color: #333;
  margin-bottom: 20px;
}

.compet-item {
  background: #f0f8ff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}

.compet-item:hover {
  transform: scale(1.02);
}

.compet-item img {
  width: 85%;
  height: 150px;
  object-fit: cover;
}

.compet-item div {
  padding: 10px 15px;
}

.compet-item h3 {
  margin: 0 0 5px;
  color: dodgerblue;
}

.compet-item p {
  margin: 0;
  color: #555;
}
.evento-container {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #f0f8ff;
  border-radius: 8px;
  text-align: center;
}

.evento-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.evento-container p {
  margin: 10px 0;
  color: #333;
  font-size: 1.1rem;
}

.evento-container .btn {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 10px 20px;
  background: dodgerblue;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.evento-container .btn:hover {
  background: #1c78d0;
}
.estatutos-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: #f0f8ff;
  border-radius: 8px;
  text-align: center;
}
.clubes-container {
  max-width: 1000px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.clube-card {
  background: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.clube-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.clube-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}
.noticia-conteudo {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  line-height: 1.6;
  color: #333;
}

.data-noticia {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.galeria img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 20px 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Rodapé 
footer {
  background-color: #1e90ff;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer img {
  height: 35px;
  margin-right: 10px;
}
.footer-logos {
  display: flex;
  align-item
}

footer {
  text-align: center;
  font-size: 0.9em;
  padding: 20px;
  background: #e0e0e0;
  margin-top: 40px;
}
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}
.footer-logos img {
  height: 30px;
  object-fit: contain;
}*/

footer {
  text-align: center;
  font-size: 0.9em;
  padding: 20px;
  background: #e0e0e0;
  margin-top: 40px;
}

footer img {
  height: 30px;
  margin-right: 10px;
  object-fit: contain;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

