
.container {
  padding: 2rem;
  line-height: 1.5;
}

.container-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 7rem;
  background-color: #f2637e;
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.container-header .title {
  max-width: 1100px;
  margin: auto;
  padding-bottom: 1em;
}

.container-header h1 {
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: left;
  margin-top: .7em;
}

.container-inicial-blog h1 {
  font-size: 1.5rem;
}


.container-header .post-data {
  color: white;
  margin-bottom: .8em;
}

.container-header .author a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.container-header .author a:hover {
  border-bottom: 2px solid white;
}

h2 {
  color: #f2637e;
  font-weight: 700;
  font-size: 2rem;
  margin-block: 2rem;
}

h3 {
  color: #f2637e;
  font-weight: 600;
  font-size: 1.5rem;
  padding-top: 1rem;
}

article img {
  margin-bottom: 1.5rem;
  border-radius: 13px;
}

.container p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #414141;
  margin-bottom: 1.5rem;
  padding: 0;
  text-align: justify;
}

.curso-item p {
  text-align: justify;
}

.image-container figcaption {
  text-align: center;
  margin-top: 0.3rem;
  font-style: italic;
  color: rgb(131, 130, 130);
}

/* Personalização da galeria do WordPress */

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  border-radius: 0 0 15px 15px; 

  background: linear-gradient(#f2637d, #f2637e);
}

.content ul li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.content a {
  color: #f2637e;
}

.content a:hover {
  color: #04bfbf;
}

.container-citacao {
  display: flex;
  align-items: center;
  background-color: #fff;
  /* cinza claro */
  padding: 30px;
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 80%;
  margin-inline: auto;
  margin-block: 15px;
  gap: 30px;
}

.container-citacao img.profile {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.box-citacao {
  max-width: 600px;
}

.citacao {
  font-size: 1.2em;
  font-style: italic;
  color: rgb(131, 130, 130);
}

.nome {
  font-weight: bold;
  color: #f2637e;
}

/* Estilos para a página de membros */

.membro-setores span {
  text-transform: lowercase !important;
  font-variant: lowercase;
}

.membro-setores {
  margin-top: 10px;
}

/* Estilo geral para o container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Estilos para a página de cursos */

.container .cursos-futuros, .cursos-passados {
  text-align: center;
}

/* Grid dos cursos */
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Bloco individual de curso */
.curso-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 0;
  overflow: hidden; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;

}

.curso-item .texto {
  padding-inline: 1rem;
}

/* Hover para efeito de destaque */
.curso-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Torna todo o bloco clicável */
.curso-item a {
  display: flex;
  text-decoration: none;
  flex-direction: column;
  color: inherit;
  height: 100%;
}

.curso-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
}

/* Imagem do curso */
.curso-item img {
  width: 100%;
  height: 200px;
  object-fit: cover; 
  display: block;
}

/* Título do curso */
.curso-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 1rem;
  font-weight: bold;
}

/* Excerpt do curso */
.curso-item p {
  font-size: 1rem;
  color: #646464;
  margin: 0 1rem 1rem;
}

.curso-status {
  display: flex;
  justify-content: center;
  margin-top: auto; 
  padding: 0 2rem 2rem 1rem;
}

/* Estilo geral dos badges */
.curso-badge {
  font-size: 0.9rem;
  padding: 3px 7px;
  color: #fff;
  border-radius: 20px;
  
}

/* Badge para "Inscreva-se" */
.curso-badge.aberto {
  background-color: #f2637e; /* Verde */
}

/* Badge para "Em Breve" */
.curso-badge.em-breve {
  background-color: #b0b0b0; /* Amarelo */
}

/* Estilos para o mobile */

@media only screen and (max-width: 768px) {


  .container-header h1 {

    font-size: 2rem;
    margin: auto;
  }

  body {
    font-size: 1rem;
  }

  .image-container img {
    max-width: 95%;
  }

  .container-citacao {
    flex-direction: column;
    max-width: none;
  }

  .container-citacao img.profile {
    width: 130px;
    height: 130px;
  }

  .nome {
    text-align: center;
  }
}