/* --------------- GLOBALS --------------- */
:root {
	--primary-gradient: linear-gradient(271.43deg, rgba(217, 134, 236, 0.27) 21.62%, rgba(240, 213, 249, 0.05) 49.36%);
	--button-gradient: linear-gradient(0deg, #AB38C1 0%, #C557DE 100%);
	--primary-title-color: #4F3352;
	--secondary-title-color: #AB38C1;
	--light-bg: #FFF9FF;
	--secondary-light-bg: #FCF5FE;
	--darker-tag: #512757;
	--dark-tag: #762582;
	--medium-tag: #CC84D6;
	--light-tag: #F4AFFF;
	--secondary-light-tag: #F8C7FF;
	--lighter-tag: #FADAFF;
	--light-warning-bg: #AB1AA2;
	--dark-warning-bg: #42034E;
	--cta-gradient: linear-gradient(0deg, rgba(66, 3, 78, 0.91) 0%, #42034E 100%);
	--green-cta: #44AD3A;
	--pink-light: #F0D5F9;
	--text-hover: #AB38C1;
	--wpp-bg: #03C100;
	--wpp-hover: #03A100;
	--blue-text: #243352;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 350px;
    background: #fff;
}

header > a > img {
    width: 104px;
    height: 56.84px;
    max-width: 104px;
}

header > a {
    width: 100%;
    max-width: 150px;
}

header > a > button {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    color: #344054;
    text-align: center;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    width: 100%;
    padding: 9px 17px;
}

a {
	text-decoration: none;
}

.main-bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.main-section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 80px 350px;
	gap: 64px;
	position: relative;
	background: var(--primary-gradient);
}

.main-text {
	margin: auto 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.main-text > h1 {
	width: 557px;
	color: var(--secondary-title-color);
	font-family: "Lato", sans-serif;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 62.5px; /* 125% */
	letter-spacing: -0.8px;
}

.main-text > h1 > span {
	color: var(--primary-title-color);
}

.main-text > p {
	color: var(--primary-title-color);
	font-family: "Lato", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 150% */
	letter-spacing: -0.5px;
}

.main-text > p > span {
	color: var(--primary-title-color);
	font-family: "Lato", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: -0.5px;
}

.vip-link {
    width: 100%;
    max-width: 268px;
    display: flex;
}

.vip-button {
	border: none;
	text-decoration: none;
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: flex-start;
	align-self: stretch;
	border-radius: 8px;
	background: var(--button-gradient);
	color: #FFF;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 16px; /* 100% */
	letter-spacing: 0.4px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(171, 56, 193, 0.3);
    width: 100%;
}

.vip-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(171, 56, 193, 0.4);
	background: linear-gradient(0deg, #C557DE 0%, #D165E8 100%);
}

.vip-button:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(171, 56, 193, 0.3);
}

.vip-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.vip-button:hover::before {
	left: 100%;
}

.main-content {
	display: flex;
	gap: 50px;
}

.main-banner {
	position: relative;
}

.main-banner img {
	width: 624.78px;
	height: 580.28px;
	max-width: 624.78px;
}

.topics {
	display: flex;
	gap: 64px;
	align-items: center;
	justify-content: center;
}

.topic {
	width: 375px;
}

.topic > p {
	color: var(--primary-title-color);
	font-family: "Lato";
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 30.8px; /* 140% */
	letter-spacing: -0.66px;
}

.topic > span {
	color: var(--blue-text);
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

.tag {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.tag img {
    height: 36px;
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Variações de delay para criar movimento mais natural */
.tag#tag-1 {
    top: 256px; 
    left: 85px;
    animation-delay: 0s;
}

.tag#tag-1 img {
    width: 205px;
    max-width: 205px;
}

.tag#tag-2 {
    top: 256px; 
    left: 401px;
    animation-delay: 0.5s;
}

.tag#tag-2 img {
    width: 209px;
    max-width: 209px;
}

.tag#tag-3 {
    width: 217px;
    top: 360px; 
    left: 0;
    max-width: 217px;
    animation-delay: 1s;
}

.tag#tag-3 img {
    width: 217px;
    max-width: 217px;
}

.tag#tag-4 {
    width: 201px;
    top: 351px; 
    left: 314px;
    max-width: 201px;
    animation-delay: 1.5s;
}

.tag#tag-4 img {
    width: 201px;
    max-width: 201px;
}

.tag#tag-5 {
    width: 174px;
    top: 487px; 
    left: 0;
    max-width: 174px;
    animation-delay: 2s;
}

.tag#tag-5 img {
    width: 174px;
    max-width: 174px;
}

.tag#tag-6 {
    width: 225px;
    top: 465px;
    left: 336px;
    max-width: 225px;
    animation-delay: 2.5s;
}

.tag#tag-6 img {
    width: 225px;
    max-width: 225px;
}


/* OUR COURSES SECTION */
.our-courses {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 120px 350px;
	gap: 64px;
}

.courses-text-content > h2 {
	width: 447px;
	color: #400C46;
	font-family: "Lato";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 52px; /* 130% */
	letter-spacing: -0.32px;
}

.courses-text-content > p {
	width: 447px;
	color: #475467;
	font-family: "Lato";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px; /* 150% */
	margin-bottom: 32px;
}

/* Estilos para o carrossel */
.courses-carousel {
    width: 100%;
    max-width: 550px;
}

.courses-carousel .item {
    background: var(--light-bg);
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
	width: 246.5px;
	height: 394.39px;
	max-width: 246.5px;
}

.courses-carousel .item:hover {
    transform: translateY(-5px);
}

.courses-carousel .item p {
    width: 100%;
	height: 100%;
}

/* Customização dos dots do Owl Carousel */
.courses-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.courses-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.courses-carousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    opacity: 0.2;
	background: #000;
    border-radius: 50%;
    display: block;
    transition: background 0.3s ease;
	margin: 0;
}

.courses-carousel .owl-dots .owl-dot.active span,
.courses-carousel .owl-dot:hover span {
    background: #000;
	opacity: 1;
}

/* MAIN PUBLIC VIP SECTION */

.public-vip {
	display: flex;
	justify-content: start;
	align-items: center;
	padding: 120px 350px;
	gap: 64px;
	background: var(--light-bg);
	background-image: url('https://www.enfermagemadistancia.com.br/assets/img/ead-pro/bg-vip-public.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.public-text-content > h2 {
	color: var(--primary-title-color);
	font-family: "Lato";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 62px; /* 155% */
	letter-spacing: -0.8px;
	margin-bottom: 50px;
}

.public-text-content {
	max-width: 680px;
}

.reasons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 68px;
	row-gap: 60px;
}

.reasons .item {
	max-width: 306px;
}

.reasons .item > p {
	color: #121517;
	font-family: "Lato";
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px; /* 140% */
	letter-spacing: -0.6px;
}

.reasons .item > span {
	color: #333;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

/* DOUBTS SECTION */

.doubts {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	padding: 80px 0;
}

.doubts > div {
	display: flex;
	flex-direction: column;
	align-items: start;

}

.doubts > div > h2 {
	color: #400C46;
	font-family: "Lato";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px; /* 125% */
	letter-spacing: -0.8px;
	margin-bottom: 16px;
}

.doubts > div > span {
	color: #333;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	margin-bottom: 30px;
	max-width: 534px;
}

.cta-button {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	background: #44AD3A;
	padding: 16px;
	border: none;
	color: #FFF;
	text-align: center;
	font-family: "Lato";
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 14px; /* 100% */
	letter-spacing: 0.4px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(68, 173, 58, 0.3);
}

.cta-button:hover {
	background: #3a9933;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(68, 173, 58, 0.4);
}

.cta-button:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(68, 173, 58, 0.3);
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.cta-button:hover::before {
	left: 100%;
}

/* Pulse animation for CTA */
@keyframes pulse {
	0% {
		box-shadow: 0 4px 15px rgba(68, 173, 58, 0.3);
	}
	50% {
		box-shadow: 0 4px 25px rgba(68, 173, 58, 0.5);
	}
	100% {
		box-shadow: 0 4px 15px rgba(68, 173, 58, 0.3);
	}
}

.cta-button {
	animation: pulse 2s infinite;
}

/* DISCOVER SECTION  */

.discover-vip {
	display: flex;
	flex-direction: column;
	gap: 50px;
	justify-content: center;
	align-items: center;
	padding: 120px 0;
}

.discover-vip > h2 {
	color: #400C46;
	font-family: "Lato";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 62px; /* 155% */
	letter-spacing: -0.8px;
}

.discover-vip > .topics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	column-gap: 60px;
	row-gap: 60px;
}

.discover-vip .topic {
	display: inline-flex;
	align-items: flex-start;
	max-width: 578px;
	width: 100%;
	gap: 24px;
}

.topic-img-container {
	display: flex;
	width: 64px;
	min-height: 64px;
	padding: 16px 10px 9px 10px;
	flex-direction: column;
	align-items: center;
	border-radius: 8px;
	background: #FFF;
	box-shadow: 0 1px 2px 1px rgba(16, 24, 40, 0.18);
}

.topic-img-container img {
	width: 32px;
	height: 32px;
}

.discover-vip .topic > text-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex: 1 0 0;
}

.topic > text-container > h3 {
	color: #121517;
	font-family: "Lato";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 33.6px; /* 140% */
	letter-spacing: -0.72px;
}

.discover-vip .topic > text-container > p {
	color: #323232;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25.6px; /* 160% */
	letter-spacing: -0.16px;
}

/* CERTIFICATION SECTION */

.certification {
	display: flex;
	gap: 40px;
	padding: 120px 0;
	justify-content: center;
	align-items: center;
}

.certificate-img > img {
	width: 765px;
	height: 594.98px;
	max-width: 765px;
}

.certification > .text-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	max-width: 486.39px;
	width: 100%;
}

.certification > .text-container > h2 {
	color: #400C46;
	font-family: "Lato";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 62px; /* 155% */
	letter-spacing: -0.8px;
}

.certification .text-container > .paragraphs {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.certification > .text-container > .paragraphs > p {
	color: #333;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

.certification > .text-container > span {
	color: #400C46;
	font-family: "Lato";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px; /* 100% */
}

.certificate-tags {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.certificate-tag {
	text-align: center;
	font-family: "Lato";
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 14px; /* 100% */
	display: flex;
	padding: 12px 24px;
	align-items: flex-start;
	border-radius: 999px;
	text-align: center;
	width: fit-content;
}

/* VIP BENEFITS SECTION */
.vipBenefits {
	display: flex;
	gap: 60px;
	justify-content: center;
	align-items: center;
	padding: 120px 0;
}

.vip-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	max-width: 600px;
}

.vip-text-content > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 24px;
}

.vip-text-content > ul li {
	display: flex;
	gap: 11px;
	justify-content: start;
	list-style: none;
}

.vip-text-content > ul li > svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.vip-text-content > ul li > span {
	color: #400C46;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 150% */
	letter-spacing: -0.128px;
}

.vip-card {
	width: fit-content;
	flex-shrink: 0;
	border-radius: 8px;
	background: linear-gradient(0deg, #AB38C1 0%, #C557DE 100%);
	padding: 32px;
	display: flex;
	flex-direction: column;
	align-items: start;
}

.vip-card .discount {
	margin-bottom: 20px;
	position: relative;
}

.vip-card .discount > svg {
	position: absolute;
    top: -10px;
    right: -10.253px;
    width: 106.263px;
    height: 44px;
}

.vip-card .discount span{
	color: #F8EAFD;
	font-family: "Lato";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 120% */
	letter-spacing: 0.5px;
}

.vip-card h3 {
	color: #FFF;
	font-family: "Lato";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px; /* 125% */
	letter-spacing: -0.192px;
	margin-bottom: 40px;
	max-width: 362px;
}

.vip-card .promotion {
	margin-bottom: 48px;
}

.vip-card .promotion span{
	color: #F8EAFD;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 100% */
	letter-spacing: -0.16px;
}

.vip-card .promotion p {
	display: flex;
	justify-content: start;
	align-items: end;
	margin-top: 29px;
	margin-bottom: 25px;
	gap: 3px;
}

.vip-card .promotion p span {
	padding-bottom: 5px;
}

.vip-card .promotion p .highlight {
	color: #FCF5FE;
	font-family: "Lato";
	font-size: 64px;
	font-style: normal;
	font-weight: 900;
	line-height: 64px; /* 100% */
	letter-spacing: -0.448px;
	padding-bottom: 0;
	margin-bottom: 0;
}
.vip-card > a {
	width: 100%;
	max-width: 362px;
}
.card-button {
	width: 100%;
	border-radius: 8px;
	background: linear-gradient(0deg, rgba(66, 3, 78, 0.91) 0%, #42034E 100%);
	padding: 16px;
	color: #FFF;
	text-align: center;
	font-family: "Lato";
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 16px; /* 100% */
	letter-spacing: 0.4px;
	margin: 0 auto 16px auto;
	border: none;
}

.payment-info {
	color: #FFF;
	text-align: center;
	font-family: "Lato";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px; /* 150% */
	margin: 0 auto 18px auto;
}

.offer-ending-soon {
	color: #F8EAFD;
	text-align: center;
	font-family: "Lato";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
	margin: 0 auto 10px auto;
}

.stopwatch {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 362px;
	height: 100px;
}

.stopwatch .hours,
.stopwatch .minutes {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 2px solid #C557DE;
	background: #F0D5F9;
	color: #400C46;
	text-align: center;
	font-family: "Lato";
	font-size: 24px;
	font-style: normal;
	font-weight: 900;
	line-height: 28px; /* 116.667% */
	padding: 22px 0;
}

.thinner {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

/* FAQ SECTION */

.faq {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 100px 0;
    justify-content: center;
    align-items: center;
}

.faq h2 {
    color: #400C46;
    text-align: center;
    font-family: "Lato";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    letter-spacing: -0.8px;
}

.faq .accordion {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq .accordion-item {
    width: 100%;
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.faq .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(171, 56, 193, 0.15);
    border-color: #AB38C1;
}

.faq .accordion-header {
    margin: 0;
    padding: 0;
    width: 100%;
}

.faq .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    padding: 24px 80px 24px 32px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-title-color);
    font-family: "Lato", sans-serif;
    line-height: 1.4;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow-anchor: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--secondary-title-color);
    background: linear-gradient(271.43deg, rgba(217, 134, 236, 0.1) 21.62%, rgba(240, 213, 249, 0.05) 49.36%);
}

.faq .accordion-button:hover {
    color: var(--secondary-title-color);
    background: linear-gradient(271.43deg, rgba(217, 134, 236, 0.15) 21.62%, rgba(240, 213, 249, 0.08) 49.36%);
}

.faq .accordion-button:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--secondary-title-color);
}

.faq .accordion-button::after {
    content: '+';
	background-image: none;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary-title-color);
    transition: all 0.3s ease;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq .accordion-collapse {
    width: 100%;
    transition: height 0.35s ease;
}

.faq .accordion-body {
    width: 100%;
    padding: 0 32px 32px 32px;
    color: #475467;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    border-top: 1px solid #F3F4F6;
    margin-top: 8px;
    padding-top: 24px;
    box-sizing: border-box;
}

.faq .accordion-body span {
    display: block;
    color: inherit;
    width: 100%;
}

/* Animation for smooth opening/closing */
.faq .accordion-collapse.collapsing {
    transition: height 0.35s ease;
}

.faq .accordion-collapse.show {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq .accordion {
        padding: 0 16px;
    }
    
    .faq .accordion-button {
        padding: 20px 60px 20px 24px;
        font-size: 16px;
        min-height: 70px;
    }
    
    .faq .accordion-button::after {
        right: 24px;
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .faq .accordion-body {
        padding: 0 24px 24px 24px;
        font-size: 15px;
    }
}

/* SATISFACTION GUARANTEE SECTION  */

.guarantee {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 80px 0;
}

.guarantee img {
	width: 243px;
	height: 243px;
}

.guarantee h2 {
	color: #400C46;
	text-align: center;
	font-family: "Lato";
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 62px; /* 155% */
	letter-spacing: -0.8px;
	margin-bottom: 16px;
}

.guarantee p {
	color: #475467;
	text-align: center;
	font-family: "Lato";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 133.333% */
	max-width: 640px;
}

/* OFFER TAPES */
.offer-tapes {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    height: auto;
    margin: 40px 0;
}

.tape {
    padding: 16px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin: 8px 0;
}

.tape-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: ticker 70s linear infinite;
}

.tape span {
    margin: 0 30px;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.tape span::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #AB1AA2;
    border-radius: 50%;
}

.purple-tape {
    background-color: #42034E;
    transform: rotate(-4deg);
    z-index: 2;
    margin-bottom: -8px;
	position: absolute;
	top: 50%;
}

.purple-tape .tape-content {
    animation: ticker-left 70s linear infinite;
}

.purple-tape span::after {
    background: #AB1AA2;
}

.pink-tape {
    background: #AB1AA2;
    transform: rotate(4deg);
    z-index: 1;
    margin-top: -8px;
	position: absolute;
	top: 50%;
	filter: blur(1px);
}

.pink-tape .tape-content {
    animation: ticker-right 70s linear infinite;
}

.pink-tape span::after {
    background: #42034E;
}

/* Animações do ticker */
@keyframes ticker-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

@keyframes ticker-right {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .tape span {
        font-size: 18px;
        margin: 0 40px;
    }
    
    .purple-tape .tape-content {
        animation: ticker-left 70s linear infinite;
    }
    
    .pink-tape .tape-content {
        animation: ticker-right 70s linear infinite;
    }
}

footer {
    width: 100%;
    padding: 0 350px;
    background: linear-gradient(0deg, #AB38C1 0%, #C557DE 100%);
}

.footer-content {
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 64px 0 125px 0;
}

.footer-content .images {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 32px;
    margin-right: 269.453px;
}

.images > img {
    width: 137px;
    height: 73px;
    max-width: 400px;
}

.e-mec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 8px;
    background: #FFF;
}

.e-mec > p {
    color: #7A7A7A;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.16px;
    width: 125px;
    height: 158px;
    max-width: 125px;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    padding: .5rem;
    border-radius: 8px;
    border: 1px solid #C3D8ED;
    background: #FFF;
}

.logo-mec {
    width: 74px;
}

.qr-code-img {
    width: 107px;
    height: 107px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.forYou {
    max-width: 195px;
    margin-right: 24px;
}

.contact {
    max-width: 300px;
}

.footer-list li {
    color: #FFF;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 16px;
    justify-content: start;
    align-items: center;
}

.footer-list .item-link {
    cursor: pointer;
}

.footer-list li svg {
    width: 17.5px;
    height: 17.5px;
}

.list-title {
    margin-bottom: 20px;
}

.copyright {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28.7px 0 43.21px 0;
}

/* RESPONSIVIDADE MAIN SECTION */

/* Até 1200px */
@media (max-width: 1200px) {
    /* HEADER 1200px */
    header {
        padding: 12px 100px;
    }
    
    header > img {
        width: 90px;
        height: auto;
        max-width: 90px;
    }
    
    header > a {
        max-width: 140px;
    }
    
    header > a > button {
        font-size: 15px;
        padding: 8px 16px;
    }
    
    .main-section {
        padding: 60px 100px;
    }
    
    .main-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .main-text > h1 {
        width: 100%;
        max-width: 500px;
        font-size: 45px;
        line-height: 55px;
    }
    
    .main-banner img {
        width: 550px;
        height: auto;
        max-width: 100%;
    }
    
    .topics {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    /* OUR COURSES 1200px */
    .our-courses {
        padding: 100px 100px;
        flex-wrap: wrap;
    }
    
    .courses-text-content > h2,
    .courses-text-content > p {
        width: 100%;
        max-width: 400px;
    }
    
    .courses-carousel {
        max-width: 500px;
    }
    
    /* CERTIFICATION 1200px */
    .certification {
        flex-wrap: wrap;
        justify-content: center;
        padding: 100px 50px;
        gap: 60px;
    }
    
    .certificate-img > img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }
    
    .certification > .text-container {
        max-width: 100%;
    }
    
    /* PUBLIC VIP 1200px */
    .public-vip {
        padding: 100px 100px;
    }
    
    .public-text-content {
        max-width: 100%;
    }
    
    .reasons {
        column-gap: 40px;
        row-gap: 40px;
    }
    
    /* DISCOVER VIP 1200px */
    .discover-vip {
        padding: 100px 50px;
    }
    
    .discover-vip > .topics {
        column-gap: 40px;
        row-gap: 40px;
        max-width: 1000px;
    }
    
    .discover-vip .topic {
        max-width: 100%;
    }
    
    /* DOUBTS 1200px */
    .doubts {
        padding: 80px 50px;
    }
    
    .doubts > div > span {
        max-width: 100%;
    }
    
    /* GUARANTEE 1200px */
    .guarantee {
        padding: 80px 50px;
    }
    
    .guarantee img {
        width: 200px;
        height: 200px;
    }
    
    .guarantee p {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* VIP BENEFITS 1200px */
    .vipBenefits {
        flex-wrap: wrap;
        padding: 100px 50px;
        gap: 40px;
        justify-content: center;
    }
    
    .vip-text-content {
        max-width: 100%;
    }
    
    .vip-card {
        max-width: 400px;
    }
    
    /* FOOTER 1200px */
    footer {
        padding: 0 100px;
    }
    
    .footer-content {
        padding: 50px 0 100px 0;
    }
    
    .footer-content .images {
        margin-right: 200px;
    }
    
    .images > img {
        width: 120px;
        height: auto;
    }
    
    .e-mec {
        padding: 20px;
        gap: 20px;
    }
    
    .e-mec > p {
        width: 110px;
        height: auto;
        font-size: 15px;
        line-height: 22px;
    }
    
    .logo-mec {
        width: 65px;
    }
    
    .qr-code-img {
        width: 90px;
        height: 90px;
    }
    
    .footer-list li {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Até 992px */
@media (max-width: 992px) {
    /* HEADER 992px */
    header {
        padding: 12px 50px;
    }
    
    header > img {
        width: 80px;
        height: auto;
        max-width: 80px;
    }
    
    header > a {
        max-width: 130px;
    }
    
    header > a > button {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .main-section {
        padding: 50px 50px;
    }

	.main-banner .tag {
		display: none;
	}
    
    .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .main-text {
        align-items: center;
    }
    
    .main-text > h1 {
        font-size: 40px;
        line-height: 50px;
        text-align: center;
    }
    
    .main-banner {
        order: -1;
    }
    
    .main-banner img {
        width: 450px;
    }
    
    .topics {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .topic {
        width: 100%;
        max-width: 400px;
    }
    
    /* OUR COURSES 992px */
    .our-courses {
        flex-direction: column;
        padding: 80px 50px;
        text-align: center;
        align-items: center;
    }
    
    .courses-text-content {
        margin-bottom: 40px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .owl-stage .owl-item {
        width: fit-content;
    }
    
    .courses-text-content > h2 {
        font-size: 36px;
        line-height: 46px;
    }
    
    .courses-carousel {
        max-width: 100%;
        width: 100%;
    }

	/* VIP PUBLIC SECTION */
	.vip-public {
		padding: 120px 0 120px 50px;
	}
    
	/* PUBLIC VIP 992px */
	.public-vip {
		padding: 80px 50px;
		text-align: center;
	}

	.public-text-content {
		margin: 0 auto;
	}
    
    .public-text-content > h2 {
        font-size: 36px;
        line-height: 50px;
    }
    
    .reasons {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }
    
    .reasons .item {
        max-width: 400px;
        text-align: center;
    }
    
    /* DISCOVER VIP 992px */
    .discover-vip {
        padding: 80px 50px;
        text-align: center;
    }
    
    .discover-vip > h2 {
        font-size: 36px;
        line-height: 50px;
    }
    
    .discover-vip > .topics {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .discover-vip .topic {
        max-width: 100%;
        justify-content: start;
        text-align: left;
    }
    
    /* CERTIFICATION 992px */
    .certification {
        flex-direction: column;
        text-align: center;
        padding: 80px 50px;
    }
    
    .certificate-img {
        order: -1;
    }
    
    .certificate-tags {
        justify-items: center;
    }

	.certification > .text-container {
		align-items: center;
	}
    
    .certificate-tag {
        justify-content: center;
    }
    
    .certification > .text-container > h2 {
        font-size: 36px;
        line-height: 46px;
    }
    
    /* DOUBTS 992px */
    .doubts {
        padding: 60px 50px;
    }
    
    .doubts > div {
        align-items: center;
        text-align: center;
    }
    
    .doubts > div > h2 {
        font-size: 36px;
        line-height: 46px;
    }
    
    .doubts > div > span {
        font-size: 16px;
        text-align: center;
    }
    
    /* GUARANTEE 992px */
    .guarantee {
        padding: 60px 50px;
    }
    
    .guarantee img {
        width: 180px;
        height: 180px;
    }
    
    .guarantee h2 {
        font-size: 36px;
        line-height: 50px;
    }
    
    .guarantee p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    /* VIP BENEFITS 992px */
    .vipBenefits {
        flex-direction: column;
        text-align: center;
        padding: 80px 50px;
    }
    
    .vip-text-content {
        align-items: center;
    }
    
    .vip-text-content > h2 {
        font-size: 36px;
        line-height: 46px;
    }
    
    .vip-text-content > ul {
        align-items: center;
    }
    
    .vip-card {
        width: 100%;
        max-width: 400px;
        align-items: center;
        text-align: center;
    }
    
    /* FOOTER 992px */
    footer {
        padding: 0 50px;
    }
    
    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        padding: 40px 0 80px 0;
        gap: 40px;
    }
    
    .footer-content .images {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .images > img {
        width: 100px;
        height: auto;
    }
    
    .e-mec {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .e-mec > p {
        width: auto;
        max-width: 200px;
        height: auto;
        font-size: 14px;
        line-height: 20px;
    }
    
    .logo-mec {
        width: 60px;
    }
    
    .qr-code-img {
        width: 80px;
        height: 80px;
    }
    
    .footer-list {
        text-align: center;
    }
    
    .footer-list li {
        font-size: 14px;
        line-height: 20px;
        justify-content: center;
    }
    
    .forYou, .contact {
        max-width: 100%;
        margin-right: 0;
    }
}

/* Até 568px */
@media (max-width: 568px) {
    /* HEADER 568px */
    header {
        padding: 10px 20px;
    }
    
    header > img {
        width: 70px;
        height: auto;
        max-width: 70px;
    }
    
    header > a {
        max-width: 120px;
    }
    
    header > a > button {
        font-size: 13px;
        padding: 6px 12px;
        line-height: 20px;
    }
    
    .main-section {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .main-text > h1 {
        font-size: 32px;
        line-height: 40px;
        width: 100%;
    }
    
    .main-banner img {
        width: 100%;
        max-width: 350px;
    }
    
    .tag img {
        height: 24px;
    }
    
    /* OUR COURSES 568px */
    .our-courses {
        padding: 60px 20px;
    }
    
    .courses-text-content > h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .courses-text-content > p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .courses-carousel .item {
        width: 200px;
        height: 320px;
        max-width: 200px;
        margin: 0 5px;
    }
    
    /* PUBLIC VIP 568px */
    .public-vip {
        padding: 60px 20px;
    }
    
    .public-text-content > h2 {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 30px;
    }
    
    .reasons {
        gap: 20px;
    }
    
    .reasons .item > p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .reasons .item > span {
        font-size: 15px;
        line-height: 22px;
    }
    
    /* DISCOVER VIP 568px */
    .discover-vip {
        padding: 60px 20px;
    }
    
    .discover-vip > h2 {
        font-size: 32px;
        line-height: 44px;
    }
    
    .discover-vip > .topics {
        gap: 30px;
        max-width: 100%;
    }
    
    .discover-vip .topic {
        gap: 16px;
    }
    
    .topic-img-container {
        width: 56px;
        min-height: 56px;
        padding: 12px 8px 8px 8px;
    }
    
    .topic-img-container img {
        width: 28px;
        height: 28px;
    }
    
    .topic > text-container > h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .discover-vip .topic > text-container > p {
        font-size: 15px;
        line-height: 22px;
    }
    
    /* CERTIFICATION 568px */
    .certification {
        padding: 60px 20px;
    }
    
    .certification > .text-container > h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .certification > .text-container > .paragraphs > p {
        font-size: 15px;
        line-height: 22px;
    }
    
    .certification > .text-container > span {
        font-size: 16px;
        line-height: 16px;
    }
    
    /* DOUBTS 568px */
    .doubts {
        padding: 50px 20px;
    }
    
    .doubts > div > h2 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .doubts > div > span {
        font-size: 15px;
        line-height: 22px;
    }
    
    .cta-button {
        font-size: 13px;
        padding: 14px;
    }
    
    /* GUARANTEE 568px */
    .guarantee {
        padding: 50px 20px;
    }
    
    .guarantee img {
        width: 150px;
        height: 150px;
    }
    
    .guarantee h2 {
        font-size: 32px;
        line-height: 44px;
    }
    
    .guarantee p {
        font-size: 16px;
        line-height: 22px;
        padding: 0 10px;
    }
    
    /* VIP BENEFITS 568px */
    .vipBenefits {
        padding: 60px 20px;
    }
    
    .vip-text-content > h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .vip-card {
        padding: 24px;
        max-width: 350px;
    }
    
    .vip-card h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    
    .vip-card .promotion p .highlight {
        font-size: 48px;
        line-height: 48px;
    }
    
    .stopwatch {
        height: 80px;
    }
    
    .stopwatch .hours,
    .stopwatch .minutes {
        padding: 16px 0;
        font-size: 20px;
    }
    
    .thinner {
        font-size: 14px;
    }
    
    /* FOOTER 568px */
    footer {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 30px 0 60px 0;
        gap: 30px;
    }
    
    .footer-content .images {
        align-items: center;
        margin-bottom: 0;
    }
    
    .images > img {
        width: 90px;
        height: auto;
    }
    
    .e-mec {
        padding: 12px;
        gap: 12px;
        max-width: 300px;
    }
    
    .e-mec > p {
        font-size: 13px;
        line-height: 18px;
        max-width: 150px;
    }
    
    .logo-mec {
        width: 50px;
    }
    
    .qr-code-img {
        width: 70px;
        height: 70px;
    }
    
    .footer-list li {
        font-size: 13px;
        line-height: 18px;
    }
    
    .copyright {
        font-size: 14px;
        line-height: 20px;
        padding: 20px 0 30px 0;
    }
}

/* Até 330px */
@media (max-width: 330px) {
    /* HEADER 330px */
    header {
        padding: 8px 15px;
    }
    
    header > img {
        width: 60px;
        height: auto;
        max-width: 60px;
    }
    
    header > a {
        max-width: 100px;
    }
    
    header > a > button {
        font-size: 12px;
        padding: 6px 10px;
        line-height: 18px;
    }
    
    .main-section {
        padding: 30px 15px;
        gap: 30px;
    }
    
    .main-text > h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .main-banner img {
        max-width: 280px;
    }
    
    /* OUR COURSES 330px */
    .our-courses {
        padding: 50px 15px;
    }
    
    .courses-text-content > h2 {
        font-size: 26px;
        line-height: 34px;
    }
    
    .courses-text-content > p {
        font-size: 14px;
        line-height: 21px;
    }
    
    .courses-carousel .item {
        width: 180px;
        height: 290px;
        max-width: 180px;
        margin: 0 3px;
    }
    
    .courses-carousel .owl-dots {
        margin-top: 15px;
    }
    
    /* PUBLIC VIP 330px */
    .public-vip {
        padding: 50px 15px;
    }
    
    .public-text-content > h2 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 25px;
    }
    
    .reasons {
        gap: 15px;
    }
    
    .reasons .item {
        max-width: 100%;
    }
    
    .reasons .item > p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .reasons .item > span {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* DISCOVER VIP 330px */
    .discover-vip {
        padding: 50px 15px;
    }
    
    .discover-vip > h2 {
        font-size: 26px;
        line-height: 36px;
    }
    
    .discover-vip > .topics {
        gap: 25px;
    }
    
    .discover-vip .topic {
        gap: 12px;
    }
    
    .topic-img-container {
        width: 48px;
        min-height: 48px;
        padding: 10px 6px 6px 6px;
    }
    
    .topic-img-container img {
        width: 24px;
        height: 24px;
    }
    
    .topic > text-container > h3 {
        font-size: 18px;
        line-height: 26px;
    }
    
    .discover-vip .topic > text-container > p {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* CERTIFICATION 330px */
    .certification {
        padding: 50px 15px;
    }
    
    .certification > .text-container > h2 {
        font-size: 26px;
        line-height: 34px;
    }
    
    .certification > .text-container > .paragraphs > p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .certification > .text-container > span {
        font-size: 15px;
        line-height: 15px;
    }
    
    .certificate-tags {
        gap: 12px;
    }
    
    .certificate-tag {
        font-size: 12px;
        line-height: 12px;
        padding: 10px 20px;
    }
    
    /* DOUBTS 330px */
    .doubts {
        padding: 40px 15px;
    }
    
    .doubts > div > h2 {
        font-size: 26px;
        line-height: 36px;
    }
    
    .doubts > div > span {
        font-size: 14px;
        line-height: 20px;
    }
    
    .cta-button {
        font-size: 12px;
        padding: 12px;
        line-height: 12px;
    }
    
    /* GUARANTEE 330px */
    .guarantee {
        padding: 40px 15px;
    }
    
    .guarantee img {
        width: 120px;
        height: 120px;
    }
    
    .guarantee h2 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 12px;
    }
    
    .guarantee p {
        font-size: 14px;
        line-height: 20px;
        padding: 0 5px;
    }
    
    /* VIP BENEFITS 330px */
    .vipBenefits {
        padding: 50px 15px;
    }
    
    .vip-text-content > h2 {
        font-size: 26px;
        line-height: 34px;
    }
    
    .vip-card {
        padding: 20px;
        max-width: 300px;
    }
    
    .vip-card h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    
    .vip-card .promotion p .highlight {
        font-size: 40px;
        line-height: 40px;
    }
    
    .stopwatch {
        height: 70px;
    }
    
    .stopwatch .hours,
    .stopwatch .minutes {
        padding: 12px 0;
        font-size: 18px;
    }
    
    .thinner {
        font-size: 12px;
    }
    
    .vip-text-content > ul li > span {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* FOOTER 330px */
    footer {
        padding: 0 15px;
    }
    
    .footer-content {
        padding: 25px 0 50px 0;
        gap: 25px;
    }
    
    .footer-content .images {
        gap: 20px;
    }
    
    .images > img {
        width: 80px;
        height: auto;
    }
    
    .e-mec {
        padding: 10px;
        gap: 10px;
        max-width: 250px;
    }
    
    .e-mec > p {
        font-size: 12px;
        line-height: 16px;
        max-width: 120px;
    }
    
    .logo-mec {
        width: 45px;
    }
    
    .qr-code-img {
        width: 60px;
        height: 60px;
    }
    
    .footer-list li {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 12px;
    }
    
    .footer-list li svg {
        width: 15px;
        height: 15px;
    }
    
    .copyright {
        font-size: 12px;
        line-height: 18px;
        padding: 15px 0 25px 0;
    }
}

/* =============================================== */
/* MODAL DE CADASTRO */
/* =============================================== */

/* Modal customizado */
.modal-content {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modal-body {
  padding: 2rem;
}

/* Título roxo */
.text-purple {
  color: var(--secondary-title-color) !important;
}

/* Barra de progresso customizada */
.bg-purple {
  background-color: var(--secondary-title-color) !important;
}

.progress-bar {
  position: relative;
  width: 0% !important; /* Inicia com 0% */
  transition: width 1.5s ease-out; /* Animação de 3 segundos */
}

.progress-bar.animate {
  width: 85% !important; /* Anima até 85% */
}

.progress-text {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.progress-text.show {
  opacity: 1;
}

/* Inputs customizados */
.custom-input {
  border-radius: 12px;
  border: 1px solid #e1e5e9;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.custom-input:focus {
  border-color: var(--secondary-title-color);
  box-shadow: 0 0 0 0.2rem rgba(171, 56, 193, 0.25);
}

/* Labels obrigatórios com asterisco vermelho */
.form-label.required::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

/* Botão customizado */
.custom-btn {
  background-color: var(--secondary-title-color);
  border-color: var(--secondary-title-color);
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  color: #fff;
}

.custom-btn:hover {
  background-color: #9632B3;
  border-color: #9632B3;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(171, 56, 193, 0.3);
}

.custom-btn:active {
  background-color: #822A9A;
  border-color: #822A9A;
  transform: translateY(0);
}

/* Botão de fechar customizado */
.btn-close {
  padding: 1rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

/* Responsividade do modal */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .custom-input {
    font-size: 16px; /* Evita zoom no iOS */
  }
}

