.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}



.bg-eee7d5 {
    background-color: #eee7d5;
    margin: 30px 0;
    padding: 50px 0;
}



.bg-d37a7a {
	background-color: #d37a7a;
	margin: 30px 0;
	padding: 50px 0;
}

.bg-241212 {
	background-color: #241212;
	margin: 30px 0;
	padding: 50px 0;
}


.bg-decfac {
	background-color: #decfac;
	margin: 30px 0;
	padding: 50px 0;
}

.bg-ed7b7b{
    background-color: #ed7b7b;    
}


.transforme .marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.transforme .marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: marquee 320s linear infinite; /* aumentar para deixar mais lento */
}

.transforme .marquee-content span {
  display: inline-flex;
  align-items: center;
}

/* animação percorrendo toda largura do track */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%); /* percorre metade do conteúdo duplicado */
  }
}




.transforme .top-border-shadow {
    /*border-top: 10px solid #164d75;*/
    box-shadow: 0 8px 15px 6px rgba(22, 77, 117, 0.3);
    background: transparent;
    width: 100%; /* evita ultrapassar a tela */
    margin: 0 auto 0px auto; /* centraliza e mantém espaçamento inferior */
    display: block;
}


.transforme .titulo-curso {
    background-color: transparent;
    color: #d37a7a;
    text-transform: uppercase; 
    font-weight: bold;
    padding: 12px 28px;
    display: inline-block;
    font-size: 20px;
}

.transforme p{
    color: #d37a7a;
}

.transforme .card {
	background-color: #d37a7a;
	
}

.transforme p.title{
    color: #ffffff;
}

.transforme .card .card-body{
    padding: 10px;
}

.transforme .card .card-text{
	color: #ffffff;
    line-height: 1;
}

.transforme .card-body {
  display: flex;
  flex-direction: column; /* força um embaixo do outro */
  align-items: center;    /* centraliza horizontalmente */
  justify-content: center; /* centraliza verticalmente */
  text-align: center;
  height: 100%; /* garante altura cheia dentro do card */
}

.transforme .card-body p {
  width: 100%;  /* cada <p> ocupa 100% da largura */
  margin: 5px 0; /* espaçamento entre eles */
}

.transforme .seta-circulo {
    width: 40px;
    height: 40px;
    background-color: #241212;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: auto 5px;
}

.transforme .conteudo {
    width: 230px; /* tamanho fixo no desktop */
    border-radius: 30px;
}

.conteudo .card{
    border-radius: 20px;
}

/* Centralizar a row no desktop */
.transforme .row {
  justify-content: center;
}

/* Para celular: ocupar 100% */
@media (max-width: 767.98px) {
  .transforme .conteudo {
    width: 100%;
  }
}


.aprender .card-border {
	overflow: hidden;
}

.aprender .card-border:after {
	content: "";
	transition: .2s all ease;
	backface-visibility: hidden;
	position: absolute;
	left: 50%;
	height: 5px;
	width: 100%;
	transform: translateX(-50%);
	background-color: #eee7d5;
}

.aprender .card-border.card-border-top:after {
	top: 0;
}

.aprender .card-border.card-border-bottom:after {
	bottom: 0;
}

.aprender .card-border.card-border-hover:after {
	width: 0;
}

.aprender .card-border.card-border-hover:hover:after {
	width: 100%;
}


.titulo-curso {
    background-color: #241212; /* cor do fundo escuro */
    color: #decfac; /* cor do texto */
    text-transform: uppercase; /* caixa alta */
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 50px; /* cantos arredondados estilo pílula */
    display: inline-block;
    font-size: 20px;
}
.dark-card .card {
	background-color: #241212;
    border-radius: 20px;
}
.dark-card .card .card-text{
	color: #decfac;
	
}

.dark-card .card .card-text strong .font-weight-extrabold{
}

.semi-bold{
	font-weight: 600;
}

.cta-button {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 10px 16px; /* padding reduzido */
    background: #241212;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem; /* fonte maior */
    text-transform: uppercase;
    letter-spacing: 1.5px; /* mais espaço entre letras */
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}


/* Hover: azul neon */
.cta-button:hover {
    background: #d37a7a;  /* tom mais claro e harmonioso */
    color: #ffffff;       /* mantém o contraste */
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.35);
    text-decoration: none; /* garante que não sublinhe */
}


.section-ligth-border .titulo-curso {
    background-color: transparent;
    color: #d37a7a; 
    text-transform: uppercase; 
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 50px;
    border: solid 2px #d37a7a;
    display: inline-block;
    font-size: 20px;
}



.section-ligth-border .light-card .card {
    border-radius: 20px;
	background-color: transparent;
    border: solid 3px #d37a7a;
}

.section-ligth-border .light-card .card .card-body{
    padding: 10px;
}

.section-ligth-border .light-card .card .card-text{
	color: #d37a7a;
    line-height: 1;
}

.section-ligth-border .cta-button {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 10px 16px; 
    background: #d37a7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}


.section-ligth-border .cta-button:hover {
    background: #d37a7a;  
    color: #ffffff;       
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.35);
    text-decoration: none;
}


.jornada .titulo-curso {
    background-color: transparent;
    color: #d37a7a;
    text-transform: uppercase; 
    font-weight: bold;
    padding: 12px 28px;
    display: inline-block;
    font-size: 20px;
}

.jornada .cta-button {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 10px 16px; 
    background: #d37a7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}


.jornada .cta-button:hover {
    background: #d37a7a;  
    color: #ffffff;       
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.35);
    text-decoration: none;
}

.jornada .accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 20px;
}


.jornada .accordion .card:first-of-type, .jornada .accordion .card:not(:first-of-type):not(:last-of-type), .jornada .accordion .card:last-of-type {
    border-radius: 20px;
}
.depoimentos .owl-carousel.carousel-center-active-item-2 .owl-item.active > div {
	background: #ffffff;
}
.depoimentos .owl-carousel.carousel-center-active-item-2 .owl-item.active > div * {
	color: #d37a7a !important;
}
.depoimentos .owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
	background-color: #d37a7a;
	border-color:#d37a7a;
	color: #FFFFFF;
}

.depoimentos .owl-carousel.carousel-center-active-item-2 .owl-item > div {
	border-radius: 20px;
}

.investimento .titulo-curso {
    background-color: transparent;
    color: #d37a7a;
    text-transform: uppercase; 
    font-weight: bold;
    padding: 12px 28px;
    display: inline-block;
    font-size: 20px;
}


.investimento .titulo-curso span {
  position: relative;
  display: inline-block;
}

.investimento .titulo-curso span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 100%;
  height: 10px;
  background: url('../img/linha-investimento.png') no-repeat center;
  background-size: contain;
}

.investimento p{
    color: #d37a7a;
    line-height: 1.2;
    
}

.investimento .valores {
  position: relative;
  color: #d37a7a;
  font-size: 20px;
  line-height: 1.4;
  display: inline-block;
}

.investimento .parcelas {
    text-align: left;
    display: block;
    font-size: 16px;
    line-height: 1;
}

.investimento .valor {
    display: block;
    font-size: 68px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.investimento .valor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; /* tamanho da imagem */
    height: 105px;
    background: url('../img/linha-investimento-circulo.png') no-repeat center/contain;
    z-index: -1;
}

.investimento .juros {
    display: block;
    font-size: 18px;
    margin-top: 0px;
    text-align: right;
    line-height: 1;
}

.investimento .avista {
    display: block;
    font-size: 18px;
    margin-top: 0px;
    line-height: 1;
}

.investimento .titulo-curso {
    background-color: transparent;
    color: #d37a7a;
    text-transform: uppercase; 
    font-weight: bold;
    padding: 12px 28px;
    display: inline-block;
    font-size: 20px;
}

.investimento .cta-button {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 10px 16px; 
    background: #d37a7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}


.investimento .cta-button:hover {
    background: #d37a7a;  
    color: #ffffff;       
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.35);
    text-decoration: none;
}


.apresentacao .cta-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 16px; 
    background: #241212;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}


.apresentacao .cta-button:hover {
    background: #d37a7a; 
    color: #ffffff;  
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.35);
    text-decoration: none; 
}

.apresentacao .dra-monique{
  border-radius: 12px;   
  border: 3px solid #decfac; 
}

.apresentacao p{
    line-height: 1.3;
}

.tp-caption .cta-button-slider {
    display: inline-block;
    text-align: center;
    padding: 10px 16px; /* padding reduzido */
    background: #241212;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.8rem; 
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}


/* Hover: azul neon */
.tp-caption .cta-button-slider:hover {
    background: #d37a7a;  /* tom mais claro e harmonioso */
    color: #ffffff;       /* mantém o contraste */
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.35);
    text-decoration: none; /* garante que não sublinhe */
}




@media (max-width: 576px) {
    .cta-button, .section-ligth-border .cta-button, .jornada .cta-button, .apresentacao .cta-button, .investimento .cta-button, .tp-caption .cta-button-slider{
        width: 80%;              /* ocupa mais da tela no mobile */
        font-size: 1.2rem;       /* fonte menor */
        padding: 8px 12px;       /* menos padding */
        margin: 8px auto;        /* centraliza com margem menor */
        letter-spacing: 1px;     /* menos espaço entre letras */
        border-radius: 40px;     /* leve ajuste no arredondado */
    }
}

