/**
 * Curso — Detalhe de curso
 */

/* ── Página ──────────────────────────────────────────────────── */

.curso-page {
  background-color: var(--grey-10);
  padding-top: 104px;
}

.curso-page .container {
  container-type: inline-size;
}

/* ── Grid principal ──────────────────────────────────────────── */
/*
  Colunas : [conteúdo 1fr] [sidebar 434px]
  Linhas  :
    1 — vídeo:  altura = (container - 434px) × 9/16  (sync com infos)
    2 — bar:    120px fixo  (sync com curso-compra)
    3 — main:   auto  (seções de conteúdo)
*/

.curso-layout {
  /* Sidebar: 434px em 1920px → ~22.6vw; mínimo 300px para não apertar o card */
  --sidebar-w: clamp(300px, 22.6vw, 434px);

  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  grid-template-rows:
    calc((100cqw - var(--sidebar-w)) * 9 / 16) clamp(80px, 12.6vh, 120px) auto;
}

/* ── Posicionamento explícito dos filhos ─────────────────────── */

.curso-video {
  grid-column: 1;
  grid-row: 1;
}

.curso-bar {
  grid-column: 1;
  grid-row: 2;
}

.curso-main {
  grid-column: 1;
  grid-row: 3;
}

.curso-sidebar-sticky {
  grid-column: 2;
  grid-row: 1 / 4;
}

/* ── Vídeo ───────────────────────────────────────────────────── */

.curso-video {
  position: relative;
  background-color: var(--grey-20);
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.curso-video iframe,
.curso-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.curso-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.56);
}

.curso-video__play {
  position: relative;
  width: 128px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  transition: background-color 0s 0.1s;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
}

.curso-video__play:hover {
  background-color: var(--grey-10);
  transition: background-color 0s 0.1s;
}

.curso-video__play-bg {
  position: absolute;
  color: var(--grey-10);
  transition: transform 0.35s ease, color 0.35s ease;
  transform-origin: center;
}

.curso-video__play:hover .curso-video__play-bg {
  color: var(--grey-10);
  transform: scale(18);
}

.curso-video__play-fg {
  position: absolute;
  color: transparent;
  z-index: 2;
  transition: color 0.15s ease 0.1s;
}

.curso-video__play:hover .curso-video__play-fg {
  color: var(--white);
}

/* ── Bar de detalhes ─────────────────────────────────────────── */

.curso-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: clamp(1rem, 4.17vw, 5rem);
  border-bottom: 1px solid var(--grey-40);
}

.curso-bar__features {
  display: flex;
  align-items: center;
  gap: 32px;
}

.curso-bar__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.curso-bar__feature img {
  flex-shrink: 0;
  display: block;
}

.curso-bar__professor {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
}

.curso-bar__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--grey-50);
  flex-shrink: 0;
  background-size: cover;
}

.curso-bar__professor-name {
  color: var(--grey-80);
}

/* ── Sidebar sticky ──────────────────────────────────────────── */

.curso-sidebar-sticky {
  position: sticky;
  top: 104px;
  /* abaixo do header */
  align-self: start;
}

/* ── Infos / card de compra ──────────────────────────────────── */

.curso-infos {
  position: relative;
  background-color: var(--white);
  /* Mesma altura que o vídeo: (container - sidebar) × 9/16 */
  height: calc((100cqw - var(--sidebar-w)) * 9 / 16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Triângulo indicador no lado esquerdo do card */
.curso-infos::before {
  content: '';
  position: absolute;
  bottom: 32px;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent var(--white) transparent transparent;
}

.curso-infos__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 324px;
}

.curso-infos__label {
  color: var(--grey-10);
  margin-bottom: 0;
}

.curso-infos__title {
  color: var(--grey-10);
  margin-bottom: 0;
}

.curso-infos__desc {
  color: var(--grey-20);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.curso-infos__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--grey-120);
  padding-top: 24px;
}

.curso-infos__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.curso-infos__price-old {
  color: var(--grey-80);
  margin-bottom: 0;
  position: relative;
}

.curso-price-strike {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 10px;
  transform: translateY(-50%);
  color: var(--aqua-100);
  pointer-events: none;
  overflow: visible;
}

.curso-price-strike line {
  stroke-dasharray: 101;
  stroke-dashoffset: 101;
  transition: stroke-dashoffset 0s;
}

.curso-infos__price-old.is-struck .curso-price-strike line {
  animation: curso-strike 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes curso-strike {
  to {
    stroke-dashoffset: 0;
  }
}

.curso-discount-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  background-color: var(--grey-10);
  border-radius: 6px;
  color: var(--white);
  text-transform: uppercase;
}

.curso-infos__price-current {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--grey-10);
}

.curso-infos__price-current .text-md {
  padding-top: 6px;
  margin-bottom: 0;
}

.curso-infos__price-current .display-8-bold {
  line-height: 1.15;
}

.curso-infos__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Selos de compra ─────────────────────────────────────────── */

.curso-compra {
  height: clamp(80px, 12.6vh, 120px);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 8px 4px;
  flex-wrap: wrap;
}

.curso-compra__tag {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--white);
  flex-shrink: 0;
}

.curso-compra__tag img {
  flex-shrink: 0;
  display: block;
}

/* ── Seções de conteúdo ──────────────────────────────────────── */

.curso-main {
  display: flex;
  flex-direction: column;
  gap: 140px;
  padding: 0 clamp(1rem, 4.17vw, 5rem) clamp(80px, 12.6vh, 120px) 0;
}

/* ── Descrição ───────────────────────────────────────────────── */

.curso-descricao {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 140px;
}

.curso-descricao__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.curso-descricao__label {
  color: var(--grey-90);
  margin-bottom: 0;
}

.curso-descricao__title {
  color: var(--white);
  margin-bottom: 0;
}

.curso-descricao__text {
  color: var(--grey-120);
  margin-bottom: 0;
}

/* ── Infos Curso ─────────────────────────────────────────────── */

.curso-infos-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}

.curso-infos-card {
  flex: 1 1 320px;
  background-color: var(--grey-20);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 28.75vw;
}

.curso-infos-card__label {
  margin-bottom: 0;
  white-space: nowrap;
  width: fit-content;
}

/* Público-alvo — pills */
.curso-publico {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.curso-publico__pill {
  background-color: var(--grey-30);
  padding: 8px 16px;
  border-radius: 32px;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.15;
}

/* Carga horária */
.curso-carga__duracao {
  color: var(--white);
  margin-bottom: 0;
}

.curso-carga__acesso {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-80);
}

.curso-carga__acesso img {
  flex-shrink: 0;
  display: block;
}

.curso-carga__acesso .text-md {
  margin-bottom: 0;
  white-space: nowrap;
}

.curso-carga__acesso .display-9-bold {
  margin-bottom: 0;
  white-space: nowrap;
  color: var(--grey-80);
}

.curso-carga__linha {
  flex: 1;
  height: 1px;
  background-color: var(--grey-80);
  min-width: 24px;
}

/* ── Módulos ─────────────────────────────────────────────────── */

.curso-modulos {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.curso-modulos__title {
  color: var(--white);
  margin-bottom: 0;
}

.curso-modulos__list {
  display: flex;
  flex-direction: column;
}

.modulo-item {
  border-bottom: 1px solid var(--grey-40);
}

.modulo-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 12px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.modulo-item__header:hover {
  background-color: var(--grey-30);
}

.modulo-item__left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.modulo-item__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 24px;
  border-right: 1px solid var(--grey-40);
  flex-shrink: 0;
}

.modulo-item__folder-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.modulo-item__folder {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  display: block;
  transition: opacity 0.35s ease;
}

.modulo-item__folder--closed {
  opacity: 1;
}

.modulo-item__folder--open {
  opacity: 0;
}

.modulo-item.is-open .modulo-item__folder--closed {
  opacity: 0;
}

.modulo-item.is-open .modulo-item__folder--open {
  opacity: 1;
}

.modulo-item__numero {
  width: 74px;
  white-space: nowrap;
}

.modulo-item__titulo {
  color: var(--white);
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.modulo-item__arrow {
  width: clamp(20px, 2.2vw, 32px);
  height: clamp(20px, 2.2vw, 32px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modulo-item__arrow img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modulo-item.is-open .modulo-item__arrow img {
  transform: rotate(180deg);
}

.modulo-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modulo-item.is-open .modulo-item__body {
  grid-template-rows: 1fr;
}

.modulo-item__body-inner {
  overflow: hidden;
}

.modulo-item__content {
  display: flex;
  flex-direction: column;
  padding-left: 148px;
  padding-bottom: 40px;
}

.modulo-item__aula {
  padding: 12px 0;
  border-bottom: 1px dashed var(--grey-60);
  color: var(--grey-110);
  margin-bottom: 0;
}

/* ── Chamada ─────────────────────────────────────────────────── */

.curso-chamada {
  position: relative;
}

.curso-chamada__image {
  position: sticky;
  top: 104px;
  height: 83vh;
  background-color: var(--grey-20);
  overflow: hidden;
  background-size: cover;
}

.curso-chamada__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.curso-chamada__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.curso-chamada__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.curso-chamada__text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  height: 83vh;
}

.curso-chamada__quote {
  color: var(--white);
  margin-bottom: 0;
  max-width: 30ch;
}

/* ── Professor ───────────────────────────────────────────────── */

.curso-professor {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.curso-professor__title {
  color: var(--white);
  margin-bottom: 0;
}

.curso-professor__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.curso-professor__image {
  width: min(55.9%, 696px);
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--grey-20);
}

.curso-professor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.curso-professor__info {
  max-width: 52.6ch;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.curso-professor__name {
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
}

.curso-professor__bio {
  color: var(--grey-80);
  margin-bottom: 0;
}

/* ── Quer saber mais ─────────────────────────────────────────── */

.curso-saibamais {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 80px;
  scroll-margin-top: 4vh;
}

.curso-saibamais__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 40ch;
}

.curso-saibamais__title {
  color: var(--white);
  margin-bottom: 0;
}

.curso-saibamais__subtitle {
  color: var(--white);
  margin-bottom: 0;
}

.curso-saibamais__arrow {
  width: 4.2vw;
  height: 4.2vw;
  flex-shrink: 0;
  display: block;
}

.curso-saibamais__box {
  background-color: var(--white);
  max-width: 52.6ch;
  width: 100%;
}

.curso-saibamais__form-title {
  padding: 24px 24px 0 24px;
}

/* ── Placeholder blocks ──────────────────────────────────────── */

.bloco {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.bloco-secao {
  background: var(--grey-40);
}

/* ── RD Station Form Overrides ───────────────────────────────── */


/* Title */
#rd-form-mpb9et7p .rd-section-title,
#rd-form-mpb9et7p .rd-section-text h3,
#rd-form-mpb9et7p .rd-section-text h4,
#rd-form-mpb9et7p .bricks-form-header h3,
#rd-form-mpb9et7p .bricks-form-header h4,
#rd-form-mpb9et7p h3,
#rd-form-mpb9et7p h4 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: clamp(16px, 1.146vw, 22px);
  line-height: 1.15;
  letter-spacing: 0.023em;
  color: var(--grey-10);
  margin: 0;
}

/* Labels */
.curso-saibamais__box #rd-form-mpb9et7p .bricks-form__label {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1.2;
  letter-spacing: 0.07px;
  color: var(--grey-10);
  display: block;
  margin-bottom: 6px;
}

.curso-saibamais__box #rd-column-mpb9et7o>div {
  background-color: var(--white);
}

/* Inputs & select */
#rd-form-mpb9et7p input[type="text"],
#rd-form-mpb9et7p input[type="email"],
#rd-form-mpb9et7p input[type="tel"],
#rd-form-mpb9et7p input[type="number"],
#rd-form-mpb9et7p input[type="date"],
#rd-form-mpb9et7p select,
#rd-form-mpb9et7p textarea {
  width: 100%;
  height: 48px;
  background-color: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 0;
  padding: 0 19px;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  color: var(--grey-10);
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

#rd-form-mpb9et7p input[type="text"]:focus,
#rd-form-mpb9et7p input[type="email"]:focus,
#rd-form-mpb9et7p input[type="tel"]:focus,
#rd-form-mpb9et7p select:focus {
  border-color: var(--grey-10);
  outline: none;
  box-shadow: none;
}

#rd-form-mpb9et7p input::placeholder {
  color: var(--grey-100);
}

/* Submit button */
.curso-saibamais__box button#rd-button-mpb9et7u {
  width: 100%;
  height: 56px;
  background-color: var(--primary);
  color: var(--grey-10);
  border: none;
  border-radius: 32px;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: clamp(14px, 0.938vw, 18px);
  line-height: 1.15;
  letter-spacing: 0.09px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 12px;
}

#rd-form-mpb9et7p button[type="submit"]:hover,
#rd-form-mpb9et7p .rd-button:hover,
#rd-form-mpb9et7p .bricks-form-footer button:hover {
  background-color: var(--aqua-30, #8ee8a8);
}

/* Disclaimer / privacy text */

.curso-saibamais__box #rd-form-mpb9et7p .bricks-form__static,
.curso-saibamais__box #rd-text-mpb9et7v p span {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: clamp(11px, 0.625vw, 12px) !important;
  line-height: 1.25;
  letter-spacing: 0.06px;
  color: var(--grey-10);
  margin: 0;
}

/* Remove default RD Station background/border from wrappers */
#rd-form-mpb9et7p .rd-section,
#rd-form-mpb9et7p .rd-column,
#rd-form-mpb9et7p [id^="rd-section-"],
#rd-form-mpb9et7p [id^="rd-column-"] {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.curso-saibamais__box #rd-row-mpb9et7j {
  display: none !important;
}

/* ── Mobile ──────────────────────────────────────────────────── */


@media (max-width: 1366px) {
  .title__professor {
    display: none;
    ;
  }
}

@media (max-width: 1024px) {

  .curso-layout {
    grid-template-rows: calc((100cqw - var(--sidebar-w)) * 9 / 16) auto auto;
  }

  .curso-infos {
    height: auto;
  }

  .curso-bar {
    padding: 24px clamp(1rem, 4.17vw, 5rem) 24px 0;
  }

  .curso-bar__features {
    gap: 16px;
    flex-wrap: wrap;
  }

  .title__professor {
    display: flex;
  }

  .curso-chamada__image,
  .curso-chamada__text {
    height: 68vh;
  }

  .curso-professor__container,
  .curso-saibamais {
    flex-direction: column;
  }

  .curso-saibamais__arrow {
    display: none;
  }

  .curso-infos-car,
  .curso-professor__info,
  .curso-infos-card {
    max-width: 100%;
  }

  .curso-professor__image {
    width: 100%;
  }

}

.curso-cta-float {
  display: none;
}

@media (max-width: 768px) {
  .curso-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .curso-page {
    padding-top: 72px;
  }

  .curso-infos__inner {
    max-width: 100%;
  }

  .curso-compra {
    padding: 0 4px;
  }

  .curso-infos-card {
    flex: 1 1 100%;
  }

  /* Ordem: vídeo → sidebar (infos+compra) → bar → conteúdo */
  .curso-video {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16/9;
    margin-left: calc(-1 * clamp(1rem, 4.17vw, 5rem));
    margin-right: calc(-1 * clamp(1rem, 4.17vw, 5rem));
  }

  .curso-sidebar-sticky {
    grid-column: 1;
    grid-row: 2;
    position: static;
    margin-left: calc(-1 * clamp(1rem, 4.17vw, 5rem));
    margin-right: calc(-1 * clamp(1rem, 4.17vw, 5rem));
  }

  .curso-bar {
    grid-column: 1;
    grid-row: 3;
    height: auto;
    border-top: 1px solid var(--grey-40);
  }

  .curso-main {
    grid-column: 1;
    grid-row: 4;
    padding: 80px 0;
  }

  .curso-descricao {
    padding-top: 24px;
  }

  .curso-bar__feature img {
    width: 24px;
  }

  .curso-infos {
    height: auto;
    padding: 32px 24px;
  }

  .curso-infos::before {
    display: none;
  }

  .curso-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }

  .curso-video__play {
    width: 80px;
    height: 38px;
  }

  .modulo-item__badge {
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 84px;
    padding-right: 8px;
  }

  .modulo-item__header {
    padding: 8px 0;
    gap: 8px;
  }

  .curso-saibamais__content {
    min-width: inherit;
  }

  .modulo-item__numero {
    width: auto;
    font-size: 12px;
  }

  .modulo-item__left {
    gap: 16px;
  }

  .curso-bar__features {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .modulo-item__numero {
    width: auto;
  }

  .curso-bar__professor {
    margin-top: 0;
    width: 100%;
    justify-content: center;
  }

  .modulo-item__titulo {
    white-space: normal;
  }

  .modulo-item__content {
    padding-left: 0;
  }

  .curso-professor__container {
    flex-direction: column;
    gap: 32px;
  }

  .curso-professor__image,
  .curso-professor__info {
    width: 100%;
  }

  /* ── Floating CTA ────────────────────────────────────────── */

  .curso-cta-float {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    bottom: 24px;
    left: clamp(1rem, 4.17vw, 5rem);
    right: clamp(1rem, 4.17vw, 5rem);
    background-color: var(--white);
    border-radius: 32px;
    padding: 4px 4px 4px 12px;
    z-index: 200;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .curso-cta-float.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .curso-cta-float__name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--grey-10);
  }

  .curso-cta-float__price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .curso-cta-float__price-currency {
    color: var(--grey-10);
    line-height: 1.5;
    margin-bottom: 0;
  }

  .curso-cta-float__price-amount {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.07px;
    color: var(--grey-10);
  }

  .curso-cta-float__btn {
    padding: 8px 16px;
    font-size: 14px;
    letter-spacing: 0.07px;
    flex-shrink: 0;
  }

  .curso-saibamais__form-title {
    display: none;
  }
}