/* Single Curso - 100% Bootstrap */


/* Cards com altura igual - sempre se ajustam ao maior */
.card.shadow.rounded-3.p-4 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card.shadow.rounded-3.p-4 .card-body,
.card.shadow.rounded-3.p-4 > *:last-child {
  flex: 1;
}

/* Para cards que precisam de altura específica */
.card.shadow.rounded-3.p-4.fixed-height {
  height: auto;
  min-height: 200px; /* altura mínima padrão */
}

/* Garantir que as rows tenham altura igual */
.row.equal-height > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.row.equal-height > [class*="col-"] > * {
  flex: 1;
}

/* Bullets azuis com check para a seção O Curso */
.list-unstyled li .me-2 {
  width: 27px;
  height: 27px;
  margin-right: 7px;
  margin-top: 1px;
  flex-shrink: 0;
  background: #4AA1D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}



.curso-hero .hero-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.curso-sobre::after {
  content: '';
  position: absolute;
  height: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.curso-modulos::after {
  content: '';
  position: absolute;
  height: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}



/* ===== CTA Flutuante - CSS Mínimo ===== */

/* Apenas o essencial que não pode ser feito com Bootstrap */
.cta-flutuante {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-flutuante.cta-hidden {
  transform: translateY(100px);
  opacity: 0;
}

.cta-flutuante.cta-compact {
  transform: scale(0.95);
}

/* Hover do botão */
.cta-flutuante .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Responsivo para mobile muito pequeno */
@media (max-width: 480px) {
  .cta-flutuante {
    bottom: 10px !important;
  }

  .cta-flutuante .bg-gradient {
    width: calc(100vw - 20px) !important;
    min-height: 80px !important;
  }
}

.curso-cta {
  background: linear-gradient(90deg, #ff7a3a, #ff4d6d);
  border-radius: 900px;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.25));
}



/* ===== Instrutor: layout simples com redes sociais embaixo da foto ===== */
@media (min-width: 992px) {
  /* Layout simples: foto à esquerda, texto à direita */
  .instrutor-section {
    display: flex !important;
    align-items: flex-start !important;
    gap: 2rem !important;
  }

  /* Foto com dimensões fixas */
  .instrutor-section .col-lg-3 {
    flex: 0 0 384px !important;
    width: 384px !important;
    max-width: 384px !important;
  }

  /* Estilo da imagem conforme Figma */
  .instrutor-section .col-lg-3 img {
    width: 384px !important;
    height: 418px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
  }

  /* Conteúdo à direita */
  .instrutor-section .col-lg-9 {
    flex: 1 !important;
  }

  /* Redes sociais embaixo da foto */
  .instrutor-section .instrutor-social {
    margin-top: 1rem !important;
  }
}






