/* === SEÇÃO AULAS DE NATAÇÃO BAÍA DAS GATAS === */

.natacao-section {
  padding: 60px 20px;
  background: #f6f8fa;
  color: #222;
  font-family: "Roboto", sans-serif;
}

.natacao-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #0078b7;
}

.natacao-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.coluna {
  flex: 1 1 32%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 20px;
  min-width: 280px;
}

.coluna h3 {
  color: #0078b7;
  margin-bottom: 15px;
}

/* === TABELA DE HORÁRIOS === */
/* === Atualização da tabela === */
.tabela-horarios {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
}

.tabela-horarios th,
.tabela-horarios td {
  border: 1px solid #ddd;
  padding: 12px 10px;
  vertical-align: top;
}

.tabela-horarios .th-horario {
  background: #f0f8ff;
  color: #003366;
  font-size: 1.05em;
  text-align: center;
  border: 2px solid #0078b7;
}

.tabela-horarios .nivel {
  background-color: #0078b7;
  color: #fff;
  font-weight: bold;
  width: 40%;
}

.tabela-horarios td:last-child {
  background: #fafafa;
  color: #333;
}

/* Ajuste no mobile */
@media (max-width: 768px) {
  .tabela-horarios td, .tabela-horarios th {
    display: block;
    width: 100%;
  }
  .tabela-horarios tr {
    display: block;
    margin-bottom: 10px;
  }
}
/* === INFORMAÇÕES LOCAIS E CONTACTOS === */
.local-info,
.contato-info {
  margin-top: 20px;
}

.local-info h4,
.contato-info h4 {
  color: #0078b7;
  margin-bottom: 10px;
}

.contato-info ul {
  list-style: none;
  padding: 0;
}

.contato-info li {
  margin-bottom: 5px;
}

.contato-info a {
  color: #0078b7;
  text-decoration: none;
}

.contato-info a:hover {
  text-decoration: underline;
}

/* === COLUNA CENTRAL === */
.coluna-central ul {
  list-style: disc;
  padding-left: 20px;
}

.coluna-central ul li {
  margin-bottom: 8px;
}

/* === COLUNA DIREITA === */
.poster-placeholder {
  border: 2px dashed #ccc;
  padding:10px;
  text-align: center;
  font-style: italic;
  color: #666;
  border-radius: 8px;
  background: #fafafa;
}

/* === RESPONSIVIDADE === */
@media (max-width: 900px) {
  .natacao-flex {
    flex-direction: column;
  }
  .coluna {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tabela-horarios td,
  .tabela-horarios th {
    display: block;
    width: 100%;
  }
  .tabela-horarios tr {
    display: block;
    margin-bottom: 10px;
  }
}
