/* Create icon in "About Us" */
#circle_create {
  margin: 0 auto;
  float: none;    
}


/* Quem pode Participar*/

#participar {
  padding: 60px 0;
  background-color: #f8f9fa;
}

#participar .section-heading {
  font-size: 2.1em;
  margin-bottom: 10px;
}

#participar .section-underline {
  width: 100px;
  height: 4px;
  background-color: #3DF28B;
  margin: 10px auto;
}

#participar .section-subheading {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #6c757d;
}

#participar p {
  font-size: 1.1em;
  color: #6c757d;
  margin-top: 20px;
}

#about .section-underline{
  width: 100px;
  height: 4px;
  background-color: #3DF28B;
  margin: 10px auto;
}

.underline{

  margin-bottom: 10rem;

}

/* Section Heading Underline */
.underline {
  position: relative;
}

.underline::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #3DF28B;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}

/* Carousel adjustments */
.carousel-item {
  transition: transform 0.5s ease;
}

/* Animation for icons */
.row.text-center .col-md-4 i,
.row.text-center .col-md-6 i {
  transition: transform 0.3s ease;
}

.row.text-center .col-md-4:hover i,
.row.text-center .col-md-6:hover i {
  transform: scale(1.1);
}
/* --------------------------------------------*/

/* Carousel indicators */
.carousel-indicators {
  bottom: -30px;
}

.carousel-indicators li {
  background-color: #d3d3d3; /* Cor cinza para indicadores inativos */
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.carousel-indicators .active {
  background-color: #3DF28B; /* Cor verde para indicador ativo */
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .row.text-center .col-md-4,
  .row.text-center .col-md-6 {
      margin-bottom: 20px;
  }

  .underline::after {
      width: 50px;
  }
}
/* --------------------------------------------*/

/* Schedule Section */
.schedule-card {
  background-color: #f8f9fa;
  background: linear-gradient(135deg, #FFFFFF, #E0E0E0); /* Adiciona o degradê leve */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.schedule-icon {
  font-size: 2rem;
  color: #3DF28B;
  margin-bottom: 15px;
}

.schedule-icon i {
  display: block;
}

.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.underline::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #3DF28B;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .schedule-card {
      padding: 15px;
  }

  .underline::after {
      width: 60px;
  }
}
/* --------------------------------------------*/

/* Proposed Section */
.page-section.bg-light {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.proposed-item {
  background-color: #fff;
  background: linear-gradient(135deg, #FFFFFF, #E0E0E0); /* Adiciona o degradê leve */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proposed-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.proposed-item i {
  color: #3DF28B;
}

.underline {
  position: relative;
}

.underline::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #3DF28B;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .proposed-item {
      margin-bottom: 20px;
  }
  
  .underline::after {
      width: 50px;
  }
}

/* --------------------------------------------*/


/* Call to Action Section */
#call-to-action {
  position: relative;
  padding: 200px 0;
  background-image: url("../assets/img/galery/kids/IMG_7614.jpg"); /* Substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  color: white;
}

#call-to-action .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Escurece a imagem de fundo */
}

#call-to-action .container {
  position: relative;
  z-index: 2;
}

#call-to-action h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #3DF28B;
}

#call-to-action p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#call-to-action .btn-primary {
  background-color: #3DF28B;
  border-color: #3DF28B;
  color: #252525;
}

#call-to-action .btn-primary:hover {
  background-color: #32c377;
  border-color: #32c377;
}

@media (max-width: 767px) {
  #call-to-action {
      padding: 70px 0;
  }

  #call-to-action h2 {
      font-size: 2rem;
  }

  #call-to-action p {
      font-size: 1rem;
  }
}
/* --------------------------------------------*/

/* Gallery Section */
#gallery {
  padding: 60px 0;
  text-align: center;
}

/* Gallery Intro */
.gallery-intro {
  margin-bottom: 30px;
}

/* Gallery Icon */
.gallery-icon {
  font-size: 4rem;
  color: #3DF28B; /* Cor do ícone */
  margin-bottom: 10px;
}

/* Gallery Title */
#gallery h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #252525;
}

/* Gallery Toggle Text */
.gallery-toggle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
}

/* Gallery Toggle Icon */
.gallery-toggle-icon {
  font-size: 2rem;
  color: #3DF28B;
  cursor: pointer;
}

/* Gallery Container (escondido inicialmente) */
.gallery-container {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.1);
}


/* --------------------------------------------*/


/* Cards styling */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px; /* Define uma altura fixa para os cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3DF28B;
}

/* Ajustando o conteúdo para manter os textos equilibrados */
.card h4 {
  margin-bottom: 15px;
}

.card p {
  flex-grow: 1;
}

.card:last-child {
  margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 767px) {
  .card {
      height: auto; /* Permite que a altura seja adaptável em telas menores */
  }
}

/* --------------------------------------------*/

















