:root {
	--font-family: "Montserrat", system-ui, Arial, sans-serif;

	--clr-100: #73bfeb;
	--clr-200: #36b8ea;
	--clr-300: #3892c7;
	--clr-400: #3f4f9d;
	--clr-500: #393673;
	--clr-600: #1f2657;
	--clr-700: #232053;
	--clr-800: #9786be;

	--txt-dark: #080808;
	--txt-light: #ffffff;
	--background: #ffffff;
	--nav-footer: #fafafa;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	word-wrap: normal;
}

body,
html {
	background-color: var(--background);
	font-family: var(--font-family);
	color: var(--txt);
	font-display: optional;
	size-adjust: 150%;
	scroll-behavior: smooth;
	scroll-padding: 20px;
}

.sr-only {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

img {
	max-width: 100%;
	height: auto;
}
section:not(.hero) {
	padding: 5rem 2rem;
}

@media screen and (min-width: 576px) {
	section:not(.hero) {
		padding: 5rem;
	}
}

@media screen and (min-width: 1440px) {
	section:not(.hero) {
		padding: 5rem 10%;
	}
}

h1 {
	font-size: xx-large;
	font-weight: 700;
}
h3 {
	font-weight: 700;
}

.space {
	margin: 4rem;
}

/* NAVBAR */
nav,
footer {
	background-color: var(--nav-footer);
}
.navbar {
	padding: 0.3rem 2rem;
	font-weight: 500;

	a {
		color: var(--txt);
	}

	li {
		border-bottom: 3px solid transparent;
	}
	li:hover {
		border-color: var(--clr-400);

		a {
			color: var(--clr-400);
		}
	}
}
.logo {
	max-height: 70px;
}
.nav-item {
	padding: 0 1rem;
}
.dropdown-item:active {
	background-color: var(--nav-footer);
	color: var(--clr-400);
}
.dropdown-menu.show {
	background-color: var(--nav-footer);
	border: none;
	border-radius: 0;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
@media screen and (min-width: 769px) {
	.dropdown-menu.show {
		background-color: var(--nav-footer);
		border: none;
		border-radius: 0;
		display: flex;
		gap: 1rem;
		padding: 10px;

		li {
			width: fit-content;
		}
	}
}

/* FOOTER */
footer {
	img {
		width: 300px;
		margin: 2rem auto;
	}

	a {
		color: var(--txt-dark);
		text-decoration: none;
	}
	a:hover {
		text-decoration: underline;
	}
}

.footerUnidades {
	padding: 2rem;

	strong {
		color: var(--clr-500);
		font-size: 14pt;
	}

	ul {
		border-left: 5px solid var(--clr-500);
		list-style: none;
		padding: 0 1rem;
		font-size: 12pt;
	}
	li {
		margin: 0.5rem 0;
	}
}

.creditos {
	font-size: small;
	text-align: center;
	padding: 0.5rem 2rem;
}

@media screen and (min-width: 576px) {
	footer {
		padding: 2rem 5rem 0;
	}
}

/* Float Wpp */
.guara-wpp, .lorena-wpp{
    background-color: #2DB742;
    position: fixed;
    right: 30px;
    padding: 5px 10px;
    border-radius: 150px;
    box-shadow: 4px 3px 10px 0px rgb(0 0 0 / 10%);
    z-index:3;
    display: flex;
    gap: 1rem;
    align-items: center;
    
    img{
        width: 20px;
    }
}

.guara-wpp a, .guara-wpp a:hover, .lorena-wpp a, .lorena-wpp a:hover {
    padding: 5px;
    font-size: 15px;
     color: #FFFFFF;
    text-decoration: none;
}
    
.guara-wpp{
    bottom: 20px;}

.lorena-wpp{
    bottom: 70px;}

/* HOME */

/* hero */
.hero {
	.carousel {
		background: #3892C7;
	}
	.carousel-item {
		text-align: center;
		padding: 2rem;

		a {
			padding: 0.5rem 1rem;
			text-decoration: none;
			display: block;
			width: fit-content;
			margin: 2rem auto 0;
		}

		img {
			height: 150px;
			width: auto;
			object-fit: contain;
			margin: auto;
		}
	}

	.carousel-indicators {
		list-style: none;
	}

	.carousel-control-prev {
		left: 10px;
	}
	.carousel-control-next {
		right: 10px;
	}

	.carousel-control-prev,
	.carousel-control-next {
		width: fit-content;
	}

	.carousel-indicators .active {
		background-color: var(--clr-200);
	}
}

.carrosselRow {
	height: 100%;
	margin: 0;
}
.carrosselCol {
	padding: 3rem;
	height: 100%;
}

@media screen and (min-width: 769px) {
	.hero {
		.carousel-item {
			img {
				height: 250px;
			}
		}
	}
}
@media screen and (min-width: 1200px) {
	.hero {
		.carousel-item {
			img {
				height: 300px;
			}
		}
	}
}

.homeSobre {
	background: var(--clr-300);
	color: var(--txt-light);

	.homeSobre-texto {
		margin-top: 2rem;
	}
}
.homeSobre .videoContainer,
.shortsVideo {
	position: relative;
	height: 0;
	overflow: hidden;
}
.homeSobre .videoContainer {
	padding-bottom: 56.25%;
}
.shortsVideo {
	aspect-ratio: 9 / 16; /* shorts proporção vertical*/
	height: 100%;
	max-height: 600px;
}
@media screen and (min-width: 768px) {
	.homeSobre {
		.homeSobre-texto {
			margin-top: 0;
			padding: 2rem;
		}
	}
	.homeSobre .videoContainer {
		padding-bottom: 33.33%;
	}
}

.shortsVideo iframe,
.homeSobre .videoContainer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.homeVideo {
	background: #9786be;
	background: url("../img/background-video.webp"), linear-gradient(290deg, rgba(151, 134, 190, 1) 0%, rgba(63, 79, 157, 1) 50%, rgba(57, 54, 115, 1) 100%);
	background-repeat: no-repeat, no-repeat;
	background-size: 100% auto, cover;
	background-position: top left, center center;

	color: var(--txt-light);
}
.homeVideo-conteudo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
	p {
		margin: 0;
		font-size: 14pt;
	}
	aluno {
		font-size: 16pt;
	}
	colocacao,
	colegio {
		font-size: 20pt;
	}
	colocacao {
		font-weight: 700;
	}
	.aluno {
		margin-bottom: 3rem;
	}
}
.shortsVideo-home {
	margin-top: 5rem;
}
.homeVideo-link a {
	color: var(--txt-light);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.homeVideo-link a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.shortsVideo-home {
		margin-top: 0;
	}
}

.homeAprovados {
	background-color: var(--clr-700);
	color: var(--txt-light);
}

/* diferenciais */
.diferenciais {
	background-color: var(--clr-500);
	color: var(--txt-light);

	h1 {
		text-align: center;
		margin-bottom: 3rem;
	}
}
.diferenciaisBox {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	text-align: center;
	padding: 0.5rem;
	justify-content: space-around;

	img {
		height: 80px;
		margin: auto;
		margin-bottom: 0.5rem;
	}
	svg{
	    margin: auto;
	}

	p {
		font-size: small;
	}
	span {
		font-weight: 600;
	}
}

/* cursos */
.homeCursos {
	background-color: var(--clr-700);
	color: var(--txt-light);

	h1 {
		text-align: center;
	}
}

.homeCursos-box {
	position: relative;
	background-color: var(--nav-footer);
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	margin: 5rem auto 1rem;

	.data {
		color: var(--txt-light);
		width: 130px;
		box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
			rgba(0, 0, 0, 0.09) 0px 32px 16px;

		position: absolute;
		top: -10px;
		right: -10px;
		padding: 10px;
		display: flex;
		gap: 5px;
		justify-content: center;

		img {
			height: 25px;
		}
	}

	.titulo {
		padding: 1rem 1.3rem;
		border-radius: 5px 5px 0 0;

		h2 {
			font-weight: 700;
			margin: 0;
			margin-right: 110px;
			overflow-wrap: break-word;
			hyphens: auto;
		}
	}

	.conteudo {
		padding: 2rem 1rem 1rem;
		color: var(--txt-dark);

		a {
			color: var(--txt-light);
			border-radius: 5px;
			margin-top: 1rem;
		}
	}
}
.ext {
	.data {
		background: var(--clr-800);
	}
	.titulo {
		background-color: var(--clr-200);
	}
	.conteudo {
		a {
			background-color: var(--clr-200);
		}
		a:hover {
			background-color: var(--clr-800);
		}
	}
	li.dest:before {
		content: url(../img/icones/icn-check-azul.svg);
	}
}

.semiext {
	.data {
		background: var(--clr-200);
	}
	.titulo {
		background-color: var(--clr-800);
	}
	.conteudo {
		a {
			background-color: var(--clr-800);
		}
		a:hover {
			background-color: var(--clr-200);
		}
	}
	li.dest:before {
		content: url(../img/icones/icn-check-roxo.svg);
	}
}

@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
	.homeCursos-box {
		max-width: 90%;
	}
}
@media screen and (min-width: 1400px) {
	.homeCursos-box {
		max-width: 80%;
	}
}

/* Aprovados */
.homeAprovados {
	h1 {
		text-align: center;
		margin-bottom: 3rem;
	}
}

.homeAprovadosCarrossel,
.carrosselAprovadosPagina {
	margin-top: 3rem;

	img {
		width: 420px;
	}
}
.homeAprovadosCarrossel .item,
.carrosselAprovadosPagina .item {
	img {
		background: #232053;
		background: linear-gradient(0deg, rgba(35, 32, 83, 1) 40%, rgba(63, 79, 157, 1) 80%, rgba(115, 191, 235, 1) 100%);
		border-radius: 30px 30px 0 0;
	}
}
.carrosselAprovadosPagina .item {
	img {
		border-radius: 30px;
	}
}

.owl-nav {
	text-align: center;
}
.owl-carousel {
	.owl-next,
	.owl-prev {
		background-color: var(--clr-700) !important;
		width: 30px;
		height: 30px;
		margin: 10px;
	}
}
/* PÁGINAS */
.heroPaginas {
	background-color: var(--clr-400);
	color: var(--txt-light);
	text-align: center;

	h1 {
		font-weight: 600;
	}
	h2 {
		font-size: x-large;
		font-weight: 300;
	}
}

/* SOBRE */
.carrosselSobre {
	margin: 4rem auto 2rem;
	text-align: center;

	.carousel-indicators {
		list-style: none;
	}

	.carousel-control-prev,
	.carousel-control-next {
		opacity: 1;
		width: 10%;
	}
	.carousel-control-prev {
		background: #000000;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
	}
	.carousel-control-next {
		background: #000000;
		background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
	}

	/* .carousel-control-prev-icon,
	.carousel-control-next-icon {
		background-color: var(--clr-200);
		border-radius: 10px;
	} */

	.carousel-indicators .active {
		background-color: var(--clr-200);
	}
}
.introducao {
	h3 {
		margin-top: 2rem;
		color: var(--clr-600);
	}
	li {
		margin: 0.5rem;
	}
}
.missaoVisaoValores {
	background-color: var(--clr-700);
	color: var(--txt-light);
}

.unidades {
	background-color: var(--clr-400);
	color: var(--txt-light);

	a {
		text-decoration: none;
		color: var(--txt-light);
	}

	ul {
		list-style: none;
		margin: 1rem 0;
		padding: 0;
	}
	li {
		margin: 0.5rem 0;
		display: flex;
		gap: 1rem;
		align-items: center;
	}
	.unidade {
		margin: 2rem 0;
	}
}
.contatoUnidades {
	background-color: var(--clr-600);

	h3 {
		font-weight: 600;
	}
}
@media screen and (min-width: 992px) {
	.unidades .unidade {
		margin: 5rem 0;
	}
}
.sociais {
	a {
		background-color: var(--clr-600);
		border-radius: 50%;
		text-align: center;
	}
	img {
		padding: 0.5rem;
		width: 40px;
		height: 40px;
	}
	a:hover {
		background-color: var(--clr-200);
	}
	ul {
		display: flex;
		gap: 1rem;
	}
}
.infosUnidade a:hover {
	text-decoration: underline;
}

/* Contato */
.contato_section {
	background-color: var(--clr-400);
	background-image: url(../img/background-contato.webp);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 50%;

	color: var(--txt-light);

	h1 {
		text-align: center;
	}
	form {
		margin: 2rem auto;
	}

	div {
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
		margin: 0.8rem 0;
	}
	input,
	textarea,
	select {
		padding: 0.5rem 0.3rem;
		border-radius: 5px;
		background-color: #fafafa;
		color: var(--txt-dark);
		border-width: 1px;
		border-style: solid;
		border-color: #888888;
	}
	input:focus,
	textarea:focus,
	select:focus {
		outline: none;
		border-width: 0 1px 2px 1px;
		border-color: var(--clr-600);
	}

	button {
		background-color: var(--clr-300);
		border: none;
		color: var(--txt-light);
		padding: 0.5rem 2rem;
		cursor: pointer;
		float: inline-end;
		margin-top: 1rem;
	}
	button:hover {
		background-color: var(--clr-700);
	}
}
@media screen and (min-width: 769px) {
	.contato_section {
		background-size: 25%;

		form {
			width: 80%;
		}
	}
}

.notificacao {
	width: 100%;
	text-align: center;
	padding: 10px;
	font-size: small;
}
.notificacao .sucesso {
	background-color: #8ab72d;
	color: var(--txt-light);
	padding: 0.3rem;
	display: none;
	justify-self: center;
}
.notificacao .falha {
	background-color: #b20000;
	padding: 0.3rem;
	color: var(--txt-light);
	display: none;
}

.contatoUnidades {
	ul {
		list-style: none;
	}
	.sociais {
		display: flex;
		gap: 1rem;

		a {
			color: var(--txt-light);
			text-decoration: none;
		}
	}
}

/* Cursos */
.card01 {
	background-color: var(--clr-800);

	a:hover {
		background-color: var(--clr-200);
	}
}
.card02 {
	background-color: var(--clr-200);

	a:hover {
		background-color: var(--clr-500);
	}
}
.card03 {
	background-color: var(--clr-500);

	a:hover {
		background-color: var(--clr-200);
	}
}

.cursoCard {
	background-image: url("../img/cursosCard-background3.webp");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	color: var(--txt-light);
	padding: 2rem;
	margin: 2rem 0;
	display: flex;
	flex-direction: column;

	h3 {
		margin-top: 1rem;
	}
	h4 {
		font-size: larger;
	}

	span {
		padding: 0.2rem 0.4rem;
		width: fit-content;
	}

	a {
		background-color: var(--txt-light);
		color: var(--txt-dark);
		padding: 0.2rem 1.3rem;
		align-self: flex-end;
		width: fit-content;
		text-decoration: none;
	}
	a:hover {
		color: var(--txt-light);
	}
	.botoes {
		display: flex;
		gap: 1rem;
		justify-content: flex-end;
		flex-wrap: wrap;
		margin-top: 2rem;
	}
	li.dest:before {
		content: url(../img/icones/icn-check-branco.svg);
	}
}

/* check mark cursos box - home e cursos */
.conteudo,
.cursoCard {
	ul {
		list-style: none;
		margin: 0.8rem 0;
		padding: 0;
	}
	li {
		margin: 0.5rem 0;
		display: flex;
		align-items: center;
		gap: 5px;
	}
	li:not(.dest) {
		margin-left: 25px;
	}
	li.dest:before {
		height: 20px;
	}
}

.cursoCard:first-of-type {
	margin-top: 0;
}

@media screen and (min-width: 768px) {
	.cursoCard {
		padding: 2rem 2.5rem;
	}
}

/* Aprovações */
.titulo {
	h3 {
		background-color: var(--clr-800);
		color: var(--txt-light);
		width: fit-content;
		padding: 0.3rem 0 0.3rem 0.5rem;
	}
	span {
		background-color: var(--clr-400);
		line-height: normal;
		padding: 0.3rem;
	}

	.escolas {
		margin: 1rem 0 5rem;
	}
}

@media screen and (min-width: 768px) {
	.escolas {
		img {
			width: 60%;
		}
	}
}

/* CTA */
.cta {
	background: var(--clr-200);
	background-image: url("../img/background-cta.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	text-align: center;

	img {
		width: 300px;
		margin: 1rem auto;
	}

	p {
		padding: 0;
		margin-bottom: -0.4rem;
		font-size: large;
		font-weight: 500;
	}

	h4 {
		color: var(--clr-500);
		font-weight: 700;
		font-size: xx-large;
		margin: 0;
	}

	a {
		background-color: var(--clr-500);
		color: var(--txt-light);
		padding: 0.5rem 1.5rem;
		margin-top: 1rem;
		display: inline-block;
		text-decoration: none;
	}
	a:hover {
		background-color: var(--clr-300);
	}
}

@media screen and (min-width: 768px) {
	.cta {
		flex-wrap: nowrap;
		text-align: left;
		img {
			margin: 1rem 0;
		}
		.imagem {
			text-align: right;
			padding: 1rem 3rem;
		}
	}
}

/* vestibulinhos */
.vestibulinhosCard {
	display: flex;
	flex-direction: column;

	p {
		margin-top: 1.5rem;
	}

	.conteudo {
		padding: 1rem 2rem;

		img {
			display: block;
			height: 50px;
			margin: 1rem 0 0.5rem;
		}
	}
	a {
		display: flex;
		padding: 0.5rem 1rem;
		text-align: center;
		justify-content: center;
		text-decoration: none;
	}
	a.saibamais {
		width: fit-content;
		margin: auto;
	}
}

.cotec {
	background-color: var(--clr-100);

	a {
		background-color: var(--clr-400);
		color: var(--txt-light);
	}
	a:hover {
		background-color: var(--clr-700);
	}
}

.cotel {
	background-color: var(--clr-700);
	color: var(--txt-light);

	a {
		background-color: var(--clr-100);
		color: var(--txt-light);
	}
	a:hover {
		background-color: var(--clr-300);
	}
}

.etec {
	background-color: var(--clr-400);
	color: var(--txt-light);

	a {
		background-color: var(--clr-700);
		color: var(--txt-light);
	}
	a:hover {
		background-color: var(--clr-200);
	}
}
.introVestibulinhos h3 {
	font-size: x-large;
	color: var(--clr-600);
}
.motivos {
	background-color: var(--clr-400);
	color: var(--txt-light);

	img {
		width: 400px;
		margin: auto;
		padding: 1rem;
	}

	li {
		margin: 0.5rem 0;
		display: flex;
		align-items: center;
		gap: 15px;
	}

	ul {
		list-style: none;
		padding: 0;
		margin-top: 2rem;
	}

	li:before {
		content: url(../img/icones/icn-check-azul.svg);
		height: 20px;
	}

	div:nth-of-type(2) {
		padding: 2rem 2rem;
	}
}

@media screen and (min-width: 768px) {
}

.comoFunciona {
	h3 {
		margin: 0;
	}

	ul {
		list-style: circle;
	}
	li {
		display: list-item;
	}

	img {
		height: 50px;
	}

	.tituloCF {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		margin-bottom: 2rem;
	}
	.conteudo {
		width: fit-content;
		margin: 3rem auto 1rem;
	}

	div:first-of-type {
		display: flex;
		align-items: center;
		gap: 2rem;
		justify-content: center;
		margin: 2rem 0;
	}
}