/* PAGE DEFAULT */

:root {
	--font-family-sans-serif: "Lato", sans-serif, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

	--black: #0b0b0b;
	--white: #fff;
	--off-white: #f5f5f7;
	--dark-grey: #343a40;

	--primary: #242424;
	--secondary: #047ff9;

	--light: #fdfdfd;
	--dark: #101010;
}

html {
	font-size: 18px;
}

body {
	background-color: var(--white);
	font-family: var(--font-family-sans-serif);
	margin: 0 !important;
	line-height: 1.5;
}

section {
	max-width: 1200px;
	padding: 40px;
	margin: auto;
}

/* TÍTULOS DA SESSÃO */

.section-title {
	margin-top: 40px;
	margin-bottom: 40px;
}

.section-title h2 {
	text-align: center;
	margin: auto;
	font-size: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.8rem;
}

.section-title h2 span {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: normal;
}

/* PATTERNS */

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.flex-4 {
	flex: 4;
}

.flex-5 {
	flex: 5;
}

/* ELEMENTS */

/* BUTTONS */

button {
	cursor: pointer;

	margin-top: 30px;
	margin-bottom: 30px;
	width: 100%;
	padding: 15px;
	border-radius: 100px;
	border: none;

	color: var(--off-white);
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: capitalize;

	background: rgb(84, 64, 115);
	background: linear-gradient(0deg, rgba(84, 64, 115, 1) 0%, rgba(84, 64, 115, 1) 15%, rgba(37, 37, 37, 1) 91%);

	transition: all 0.5s ease;
}

button:hover,
button:active {
	transition: all 0.5s ease;

	transform: translateY(2px);
	filter: saturate(1.3);
}

/* IMAGES */

img {
	max-width: 100%;
}

/* HERO */

#hero {
	background: var(--off-white);
	background-image: url(images/hero-background-2.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#hero-content {
	display: flex;
	flex-direction: row;

	padding-bottom: 0% !important;

	align-content: center;
	justify-content: center;
	text-align: center;
	margin: auto;
}

.hero-title {
	margin-bottom: -3px;
	margin-top: 70px;
}

@media screen and (max-width: 900px) {
	#hero-content {
		flex-direction: column-reverse;
	}
	.hero-logo {
		overflow: hidden;
	}
}

/* ABOUT */

#about {
	background-color: var(--dark);
	font-size: 1.3rem;
	font-weight: 300;
	color: var(--off-white);
	padding-top: 5%;
	padding-bottom: 5%;
	text-align: center;
	z-index: 2;
}

/* MENTORS */

#mentors {
	background-color: var(--black);
	color: var(--off-white);
}

.card-container {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 15px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;

	background: var(--off-white);
	background-image: url(images/card-container-bg-clean.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	font-size: 1.3rem;
}

#mentors .card-container p {
	padding: 5%;
}

#mentors img {
	padding: 5%;
	max-width: 90%;
}

/* 

#card-marluz {
	background-image: url(images/card-container-bg-marluz.webp);
}

*/

.card-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.card-content img {
}

.card-text {
	color: black;
	font-weight: 300;
}

.card-video {
	aspect-ratio: 56.6%;
	width: 100%;
}

/* EXPLORE */

#explore {
	background-color: var(--black);
	color: var(--off-white);
}

/*SCHEDULE */

#schedule-content .card-text {
	margin-left: 5%;
}

#schedule-content h3 {
	margin: 0;
	font-size: 2rem;
	font-weight: 300;
}

#schedule-content h4 {
	margin: 0;
	font-size: 2rem;
}

#schedule-content p {
	font-size: 1.2rem;
}

#schedule img {
	filter: invert();
	width: 50%;
}

#schedule .card-img {
	text-align: center;
}

#schedule .card-container {
	background-size: contain;
	background-position: left;
}

.bg-marluz {
	background-image: url(images/card-container-bg-marluz.webp);
}

.bg-andrea {
	background-image: url(images/card-container-bg-andrea.webp);
}

.bg-meire-j {
	background-image: url(images/card-container-bg-meire-j.webp);
}

.bg-meire-y {
	background-image: url(images/card-container-bg-meire-y.webp);
}

.bg-nair {
	background-image: url(images/card-container-bg-nair.webp);
}

.bg-suzi {
	background-image: url(images/card-container-bg-suzi.webp);
}

.bg-todos {
	background-image: url(images/card-container-bg-todos.webp);
}

#who {
	background-color: #0b0b0b;
	color: white;
}

#price {
}

/* FAQ */

#faq {
	color: var(--white);
	background-color: var(--black);
}

.faq-container {
	width: 100%;
}

.faq-box {
	background-color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2%;
	border-radius: 15px;
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	color: var(--black);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	color: var(--black);
	transition: max-height 1s ease-out; /* Ajuste a duração conforme necessário */
	padding-left: 20px;
	padding-right: 20px;
}

.faq-answer p {
	margin-top: 0px;
}

/* Estilo quando a pergunta está ativa */
.active .faq-answer {
	max-height: 50vh; /* Defina um valor máximo que seja suficiente para cobrir o conteúdo mais longo */
}

.active span {
	font-weight: 900;
	transition: font-weight 0.5s ease;
}

.active {
	transition: font-weight 0.5s ease;
}

.faq-question span {
	transition: font-weight 0.5s ease;
}

.arrow {
	float: right;
}

/* Estilo quando a pergunta está ativa */
.active .arrow {
	transform: rotate(-180deg);
}

.faq-bold,
.faq-freq {
	font-size: 6.2vw;
	margin: 0px;
	margin-top: 2%;
}

.faq-bold:hover {
	color: var(--yellow);
	transition: color 0.5s ease;
}

.faq-thin {
	font-size: 4vw;
	margin-bottom: -4%;
}

/* COUNTDOWN */

#timer {
	text-align: center;
	display: flex;
	align-items: center;
	margin: auto;
	justify-content: center;
	font-size: 2rem;
	flex-direction: row;
	gap: 20px;
}

#timer div {
	margin-right: 5px;
}

#timer p {
	margin-right: 10px;
}

.timer-card {
	filter: drop-shadow(0 0 0.75rem rgb(216, 216, 216));
}

li {
	font-size: 1rem;
}

table {
	width: 80%;
	margin: 20px auto;
	border-collapse: collapse;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
th,
td {
	padding: 12px;
	border-bottom: 1px solid #ddd;
}
th {
	background: #ffa500;
	color: white;
	text-transform: uppercase;
}
td {
	color: #333;
}
tr:hover {
	background: #f1f1f1;
}

.mentor {
	display: flex;
	align-items: center;
}
.mentor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 10px;
}
.month-divider {
	background: #ddd;
	font-weight: bold;
	text-align: center;
	padding: 10px;
	font-size: 1.2em;
	border-top: 2px solid #aaa;
}

@media (max-width: 600px) {
	table {
		width: 100%;
	}
}

@media (max-width: 1200px) {
	.faq-bold {
		font-size: 16.2vw;
	}
	.faq-thin {
		font-size: 7vw;
		margin-bottom: -4%;
	}
	.faq-freq {
		font-size: 11vw;
	}
}

/* RESPONSIVE */

@media screen and (max-width: 900px) {
	:root {
		font-size: 14px;
	}

	.responsive {
		flex-direction: column;
		text-align: center;
	}

	.card-container {
		padding: 0;
	}

	.card-text {
		padding: 25px;
	}

	#schedule .card-container {
		background-size: cover;
	}
}

@media screen and (max-width: 720px) {
	:root {
		font-size: 10px;
	}

	p {
		font-size: 2.5rem;
	}

	li {
		font-size: 2rem;
	}

	.card-text {
		padding: 15px;
	}

	#schedule-content p {
		font-size: 2rem;
	}

	button {
		font-size: 2.5rem;
	}
	.faq-question {
		font-size: 2.5rem;
	}

	#mentors img {
		padding: 0;
	}

	.section-title h2 span {
		font-size: 3.4rem;
	}

	#timer {
		flex-direction: column;
	}

	#mentors .card-container p {
		padding: 0;
		margin-top: -5px;
	}
	#whats-text {
		font-size: 1rem !important;
	}
}

@media screen and (max-width: 400px) {
	:root {
		font-size: 8px;
	}

	p {
		font-size: 2.5rem;
	}

	.card-text {
		padding: 15px;
	}

	#schedule-content p {
		font-size: 2.5rem;
	}

	button {
		font-size: 2.5rem;
	}

	.faq-question {
		font-size: 2.5rem;
	}
}
