@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
:root {
	--main-color: #d3ad7f;
	--orange: #F26724;
	--orange2: #E95549;
	--gray: #61605F;
	--iag-color: #009BAE;
	--iag-second-color: #61605F;
	--black: #13131a;
	--bg: #fff;
	--border: .1rem solid rgba(255, 255, 255, .3);
}

* {
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	transition: .2s linear;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-padding-top: 9rem;
	scroll-behavior: smooth;
}

html::-webkit-scrollbar {
	width: .8rem;
}

html::-webkit-scrollbar-track {
	background: black;
}

html::-webkit-scrollbar-thumb {
	background: #fff;
	border-radius: 5rem;
}

body {
	background: var(--bg);
}

.section-100 {
	max-width: 100%;
}

.heading {
	text-align: center;
	color: #000;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 4rem;
}

.heading-h1 {
	text-align: left;
	color: var(--iag-color);
	padding-bottom: 3.5rem;
	font-size: 4rem;
}

.heading-h1 span {
	color: var(--iag-second-color);
}

.heading span {
	color: var(--iag-second-color);
	text-transform: uppercase;
}

.video{
	text-align: center;
	margin: 5rem 20rem;
}

.btn {
	margin-top: 1rem;
	display: inline-block;
	padding: .9rem 3rem;
	font-size: 1.7rem;
	color: #fff;
	background: var(--orange);
	cursor: pointer;
}

.btn:hover {
	letter-spacing: .2rem;
}

.paragrafo-black {
	text-align: center;
	color: #000;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 2.5rem;
}

.paragrafo-pq-black {
	margin-top: 40px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 2.5rem;
}

.paragrafo {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 2.5rem;
}

.paragrafo-pq {
	margin-top: 40px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 2.5rem;
}

.paragrafo-pq-black {
	margin-top: 40px;
	text-align: center;
	color: #000;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 2.5rem;
}

.header {
	background: var(--black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 1.5rem 7%;
	border-bottom: var(--border);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header .logo img {
	height: 6rem;
}

.header .navbar a {
	margin: 0 1rem;
	font-size: 1.6rem;
	color: #fff;
}

.header .navbar a:hover {
	color: var(--main-color);
	border-bottom: .1rem solid var(--main-color);
	padding-bottom: .5rem;
}

.header .icons div {
	color: #fff;
	cursor: pointer;
	font-size: 2.5rem;
	margin-left: 2rem;
}

.header .icons div:hover {
	color: var(--main-color);
}

#menu-btn {
	display: none;
}

.header .search-form {
	position: absolute;
	top: 115%;
	right: 7%;
	background: #fff;
	width: 50rem;
	height: 5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
	-webkit-transform-origin: top;
	    -ms-transform-origin: top;
	        transform-origin: top;
}

.header .search-form.active {
	-webkit-transform: scaleY(1);
	    -ms-transform: scaleY(1);
	        transform: scaleY(1);
}

.header .search-form input {
	height: 100%;
	width: 100%;
	font-size: 1.6rem;
	color: var(--black);
	padding: 1rem;
	text-transform: none;
}

.header .search-form label {
	cursor: pointer;
	font-size: 2.2rem;
	margin-right: 1.5rem;
	color: var(--black);
}

.header .search-form label:hover {
	color: var(--main-color);
}

.header .cart-items-container {
	position: absolute;
	top: 100%;
	right: -100%;
	height: calc(100vh - 9.5rem);
	width: 35rem;
	background: #fff;
	padding: 0 1.5rem;
}

.header .cart-items-container.active {
	right: 0;
}

.header .cart-items-container .cart-item {
	position: relative;
	margin: 2rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1.5rem;
}

.header .cart-items-container .cart-item .fa-times {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	cursor: pointer;
	color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover {
	color: var(--main-color);
}

.header .cart-items-container .cart-item img {
	height: 7rem;
}

.header .cart-items-container .cart-item .content h3 {
	font-size: 2rem;
	color: var(--black);
	padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content .price {
	font-size: 1.5rem;
	color: var(--main-color);
}

.header .cart-items-container .btn {
	width: 100%;
	text-align: center;
}

.home {
	margin-top: 92px;
	margin-bottom: 10rem;
	text-align: justify;
}
.home .img-ig{
	margin: 6rem 20rem;
}

.home .curso-formacao{
	margin: -25rem 0 0;
}

.home .img-top{
	margin: -48px 0 0;
	width: 100%;
}

.home .heading-h1{
	margin: 1rem 70rem 1rem 20rem;
	font-size: 4rem;
	font-weight: 700;
	color: var(--orange);

}
.home .heading-formacao{
	margin: 1rem 20rem 1rem;
	font-size: 2rem;
	font-weight: 400;
	color: #000;
	
}
.home .heading-h2{
	margin: 1rem 20rem 1rem;
	font-size: 2.50rem;
	font-weight: 400;
	color: #000;
	
}

.home .heading-h3{
	margin: 1rem 20rem 5rem;
	font-size: 2.8rem;
	font-weight: 400;
	color: #000;

}

.home .content {
	max-width: 60rem;
}

.home .content h3 {
	font-size: 6rem;
	text-transform: uppercase;
	color: #fff;
}

.home .content p {
	font-size: 2rem;
	font-weight: lighter;
	line-height: 1.8;
	padding: 1rem 0;
	color: #eee;
}

.titulo {
	margin-top: 6rem;
	margin-bottom: 15rem;
	padding: 0 26rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about {
	text-align: center;
	padding: 5rem;
	background: var(--black);
}

.about .row {
	align-items: center;
}

.about .row .content h3 {
	padding: 1rem 15rem 3rem;
	font-size: 3rem;
	color: #fff;
}

.about .row .content span{
	color: var(--orange);
}

.about .row .content .p-visao {
	font-size: 3rem;
	color: #fff;
	padding: 1rem 10rem;
}

.experiencia-mercado{
	max-width: 100%;
	padding: 5rem;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
}

.shrink-1-basis {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 150px;
}

.shrink-2-basis {
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 150px;
}

.experiencia-mercado img{
	padding: 0.5rem;
}

.mercado{
	font-size: 2rem;
	color: var(--bg);
	padding: 0.5rem;	
}

.box .experiencia-mercado .box{
	flex: 1 1 4rem;
	
}

.menu {
	align-items: center;
}

.menu-texto-inicial{
	padding-top: 5rem;
	padding-left: 10rem;
}

.menu h1 {
	font-size: 48px;
	line-height: 59px;
	margin-bottom: 30px;
	font-weight: 700;
}

.menu p {
	font-size: 30px;
	font-weight: 600;
	line-height: 45px;
}

.menu-imagem {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.menu img {
	width: 50%;
}

.menu-texto-final{
	padding-left: 10rem;
	padding-right: 10rem;
}

.menu-texto-final p {
	font-size: 24px;
	line-height: 29px;
}

.review {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.review-texto-inicial {
	padding-top: 8rem;
	padding-left: 10rem;
	padding-right: 8rem;
}

.review h1 {
	font-weight: 700;
	font-size: 48px;
	line-height: 59px;
}

.review-mobile {
	display: none;
}

.review-texto-final {
	padding-top: 5rem;
	padding-left: 10rem;
	padding-right: 8rem;
}

.review p {
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	margin-top: 10px;
	margin-bottom: 20px;
}

.review-texto-inicial b {
	font-size: 28px;
}

.review .box {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.review .box-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1200px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;	
}

.review .box-container .box {
	border: var(--border);
	text-align: center;
	padding: 3rem 2rem;
	border-radius: 40px;
	background-color: #FF530D;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 300px;
	        flex: 1 1 300px;
	margin: 5px;
}

.review .box-container .box p {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	padding: 2rem 0;
}

.review .box-container .box .user {
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.review .box-container .box h3 {
	padding: 1rem 0;
	font-size: 2rem;
	color: #fff;
}

.review .box-container .box img {
	width: 40%;
}

.review .box-container .box .stars i {
	font-size: 1.5rem;
	color: var(--main-color);
}

.products {
	padding: 6rem 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.products h2 {
	font-weight: 700;
	font-size: 48px;
	line-height: 50px;
	margin-bottom: 30px;
}

.products .corpo-docente {
	padding-bottom: 3rem;
	font-weight: 700;
	font-size: 4rem;
	line-height: 50px;
	text-align: center;
}

.products .corpo-docente1 {
	padding: 0 10rem;
	font-size: 2.5rem;
	text-align: center;
}

.products span b {
	color: #61605F;
}

.products .box-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 1.5rem;
}

.products .box-container .box {
	border-radius: 40px;
	text-align: left;
	border: var(--border);
	padding: 2rem;
}

.products .box-container .box .icons a {
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	border: var(--border);
	color: #fff;
	margin: .3rem;
}

.products .box-container .box .icons a:hover {
	background: var(--main-color);
}

.products .box-container .box .image {
	padding: 2.5rem 0;
}

.products .box-container .box .image img {
	height: 25rem;
}

.products .box-container .box .content h3 {
	color: #fff;
	font-size: 2.5rem;
}

.products .box-container .box .content .stars {
	padding: 1.5rem;
}

.products .box-container .box .content .stars i {
	font-size: 1.7rem;
	color: var(--main-color);
}

.products .box-container .box .content .price {
	color: #fff;
	font-size: 2.5rem;
}

.products .box-container .box .content .price span {
	text-decoration: line-through;
	font-weight: lighter;
	font-size: 1.5rem;
}

/* Slideshow container */

.slideshow-container {
	max-width: 100%;
	position: relative;
	margin: auto;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active,
.dot:hover {
	background-color: #717171;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
		opacity: .4
	}
	to {
		opacity: 1
	}
}

.list {
	background-color: var(--iag-color);
	list-style: none;
	margin: 0;
	padding: 102px 117px;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.list .list-item {
	display: flex;
	padding: 10px 5px;
}

.list .list-item:not(:last-child) {
	border-bottom: 1px solid #EEE;
}

.list .list-item__image {
	min-height: 100%;
	min-width: 200px;
}

.list .list-item__image img {
	width: 100%;
	height: 100%;
}

.list .list-item__content {
	flex-grow: 1;
	padding: 0 20px;
}

.list .list-item__content h4 {
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	color: #fff;
	margin-bottom: 20px;
}

.list .list-item__content p {
	margin-top: 5px;
	color: #fff;
	font-style: normal;
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 17px;
}

/* Slideshow ends */

.para {
	background: var(--black);
}

.para .row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 100px;
}

.para .row .content {
	flex: 1.2;
	margin-right: 30px;
}

.para .row .content h3 {
	font-size: 4rem;
	color: #fff;
	margin-bottom: 20px;
}

.para .row .content {
	text-align: center;
	font-size: 2rem;
	color: #fff;
	padding: 6rem 0;
}

.para .row .content ul li {
	display: inline-block;
	list-style-type: none;
	padding: 0.5rem 3rem;
	margin: 0.6rem 30%;
	border-radius: 75px 75px 75px 75px;
	-webkit-border-radius: 75px 75px 75px 75px;
	-moz-border-radius: 75px 75px 75px 75px;
	border: 2px solid var(--orange2);
}

.para-text {
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-evenly;
	padding: 4rem 20rem
}

.para-text .publico3{
	padding: 0 0 2rem;
	text-align: end;
	font-weight: 700;
	font-size: 4rem;
}
.para-text .publico4{
	padding: 0 0 2rem;
	text-align: initial;
	font-weight: 700;
	font-size: 4rem;
}

.para-text .publico1 .icone{
	padding-right: 1rem;
}

.para-text .publico1 {
    text-align: initial;
    margin: .5rem;
    font-size: 2.5rem;
}
.para-text .publico2 {
    text-align: initial;
	padding-left: 3rem;
    margin: .5rem;
    font-size: 2rem;
}

.para h1 {
	font-weight: 700;
	font-size: 4rem;
	line-height: 59px;
}

.puc {
	background-color: var(--black);
	padding: 2rem 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.puc .content {
	text-align: center;
	font-weight: 400;
	font-size: 2.5rem;
	padding: 1rem 15rem;
	color: var(--bg);
}
.puc .whatsapp{
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}

.puc .p-whatsapp{
	padding-bottom: 3rem;
}

.puc .p-whatsapp .cor{
	color: #4CAF50;
	padding: 0;
}

.puc2 {
	background-color: var(--bg);
	padding: 2rem 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.puc2 .content {
	align-items: center;
	font-weight: 400;
	font-size: 2.5rem;
	padding: 1rem 15rem;
	color: var(--black);
}
.puc2 .inscreva-se{
	background-color: var(--orange);
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}

.puc2 .p-inscreva-se{
	padding-bottom: 3rem;
}

.depoimentos {
	text-align: center;
	background-color: var(--black);
	padding: 3rem 18rem 5rem;
	font-size: 2.5rem;
	color: white;
}

.img-aspas1{
	margin: 0 0 0 -65rem;
}

.img-aspas2{
	margin: 0 0 0 60rem;
}

.img-aspas3{
	margin: 0 0 0 -65rem;
}

.img-aspas4{
	margin: 0 0 0 70rem;
}

.depoimento .img-aspas2{
	text-align: end;
	width: 25%;
}

.depoimento-h1{
	font-size: 4rem;
	font-weight: 700;
	padding: 2rem 0 3rem;
}

.depoimento .inscreva-se{
	background-color: var(--orange);
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}
.feedback{
	display: flex;
	justify-content: center;
}


.para-text .publico{
	text-align: end;
	font-size: 2.5rem;
}

.para-text .bloco-publico{
	width: 47%;
}

.puc .content h2 {
	color: var(--iag-color);
}

.puc .content h3 {
	font-size: 6rem;
	text-transform: uppercase;
	color: #fff;
}

.puc .content span {
	padding: 0 20px;
	font-weight: 400;
}

.puc2 .content {
	text-align: center;
	padding: 0 20px;
	font-weight: 400;
}

.puc2 .content span {
	padding: 0 20px;
	font-weight: 400;
}

.puc-mobile {
	display: none;
}

.contact {

}
.contato-p{
	font-size: 2.5rem;
}

.informacoes{
	font-size: 1.7rem;
}
.contact .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--iag-color);
    padding: 3rem 30rem;
    justify-content: center;
    flex-direction: row;
    align-content: space-between;
}

.contact .row .map {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 45rem;
	        flex: 1 1 45rem;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.contact .row form {
	-webkit-box-flex: 1;
	padding: 2rem 2rem;
	text-align: center;
}

.contact .row form h3 {
	font-size: 3.5rem;
	color: #fff;
}

.contact .row form h2 {
	font-size: 2rem;
	color: #fff;
	padding-bottom: 2rem;
}

.contact .row form .inputBox {
	display: flex;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
	background: var(--bg);
	border: var(--border);
}

.contact .row form .inputBox span {
	font-size: 2rem;
	padding-left: 2rem;
}

.contact .row form .inputBox input {
	width: 100%;
	padding: 2rem;
	font-size: 1.7rem;
	text-transform: none;
	background: none;
}

.contact-wtp {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}

.blogs .box-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 1.5rem;
}

.blogs .box-container .box {
	border: var(--border);
}

.blogs .box-container .box .image {
	height: 25rem;
	overflow: hidden;
	width: 100%;
}

.blogs .box-container .box .image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.blogs .box-container .box:hover .image img {
	transform: scale(1.2);
}

.blogs .box-container .box .content {
	padding: 2rem;
}

.blogs .box-container .box .content .title {
	font-size: 2.5rem;
	line-height: 1.5;
	color: #fff;
}

.blogs .box-container .box .content .title:hover {
	color: var(--main-color);
}

.blogs .box-container .box .content span {
	color: var(--main-color);
	display: block;
	padding-top: 1rem;
	font-size: 2rem;
}

.blogs .box-container .box .content p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #ccc;
	padding: 1rem 0;
}

.footer {
	background: var(--bg);
	text-align: center;
}

.footer .share {
	margin: 0 10rem;
	padding: 1rem 0;
	border-bottom: 1px solid black;
	display: flex;
	width: 80%;
	justify-content: flex-end;
}

.footer .share a {
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	color: black;
	border: var(--border);
	margin: .3rem;
	border-radius: 50%;
}

.footer .share a:hover {
	background-color: var(--main-color);
}

.footer-content {
	display: flex;
    padding: 4rem 10rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}

.footer-content .contato {
	display: flex;
	flex-direction: column;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 22px;
	color: black;
	align-items: flex-start;
}

.footer-content .contato a:visited {
	color: #000;
}

.footer-content .contato a:link {
	color: #000;
}

.footer-content .contato a:hover {
	color: black;
}

.footer-content .contato i {
	padding: 10px 0px;
}

.footer-content .logo {
	width: 50%;
	display: flex;
	justify-content: flex-end;
}

.footer .links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 2rem 0;
	gap: 1rem;
}

.footer .links a {
	padding: .7rem 2rem;
	color: #fff;
	border: var(--border);
	font-size: 2rem;
}

.footer .links a:hover {
	background: var(--main-color);
}

.footer .credit {
	font-size: 2rem;
	color: #fff;
	font-weight: lighter;
	padding: 1.5rem;
}

.footer .credit span {
	color: var(--main-color);
}

/*-----INICIO SLIDER-----*/
.roxo{
	position: relative;  
	height: 60rem;
	width: 75%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 50px auto;
  }
  
  .swiper{
	width: 90%;
  }
  
  .card{
	position: relative;
	background: #fff;
	border-radius: 20px;
	margin: 20px 0;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .card .card-content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 15px;
	position: relative;
	z-index: 100;
  }
  
  .roxo .card .image{
	height: 400px;
	width: 400px;
	padding: 1px;
  }
  
  .roxo .card .image img{
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	border: 3px solid #fff;
  }
  
  .card .media-icons{
	position: absolute;
	top: 10px;
	right: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  }
  
  .card .media-icons i{
	color: #fff;
	opacity: 0.6;
	margin-top: 10px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
  }
  
  .card .media-icons i:hover{
	opacity: 1;
  }
  
  .card .name-profession{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 10px;
	color:#333 ;
  } 
  
  .name-profession .name{
	font-size: 2rem;
	font-weight: 600;
  }
  
  .name-profession .profession{
	font-size:1.5rem;
	font-weight: 500;
  }
   
  .swiper-pagination{
	position: absolute;
  }
  
  .swiper-pagination-bullet{
	height: 7px;
	width: 26px;
	border-radius: 25px;
	background: #009BAE;
  }
  
  .swiper-button-next, .swiper-button-prev{
	opacity: 0.7;
	color: #009BAE;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .swiper-button-next:hover, .swiper-button-prev:hover{
	opacity: 1;
	color: #009BAE;
  }

/*-----FIM SLIDER-----*/

/* media queries  */

@media (max-width: 1440px) {
	#menu-btn {
		display: inline-block;

	}

	.header .navbar {
		position: absolute;
		top: 100%;
		right: -100%;
		background: #fff;
		width: 30rem;
		height: calc(100vh - 9.5rem);
	}
		
	.header .navbar.active {
		right: 0;
	}
	
	.header .navbar a {
		color: var(--black);
		display: block;
		margin: 1.5rem;
		padding: .5rem;
		font-size: 2rem;
	}
	
	.home .img-top {
		margin: 5px 0 0;
		width: 100%;
	}

	.home .heading-formacao {
		margin: 10rem 20rem 1rem;
		font-size: 2rem;
		font-weight: 400;
		color: #000;
	}

	.home .heading-h1 {
		margin: 0 50rem 0 20rem;
		text-align: left;
	}

	.home .curso-formacao {
		margin: -25rem 0 0;
	}

	.about .row .content h3 {
		font-size: 32px;
	}

	.about .row .content p {
		font-size: 20px;
	}

	.products span {
		line-height: normal;
	}

	.para .row {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin-top: 1rem;
	}

	.para .row .content h3 {
		font-size: 32px;
	}

	.para .row .content lu {
		font-size: 15px;
	}

	.roxo{
		width: 100%;
	}

	.roxo .card .image {
		height: 350px;
		width: 350px;
		padding: 1px;
	}

	.roxo .card .image img {
		border-radius: 0%;
	}

	.depoimentos {
		font-size: 2rem;
	}

	.img-aspas1 {
		margin: 0 0 0 -45rem;
	}

	.img-aspas2 {
		margin: 0 0 0 45rem;
	}

	.img-aspas3 {
		margin: 0 0 0 -50rem;
	}

	.img-aspas4 {
		margin: 0 0 0 55rem;
	}

	.footer-content {
		display: flex;
		padding: 2rem 4rem;
		flex-direction: row;
		flex-wrap: nowrap;
		align-content: space-around;
		justify-content: space-between;
		align-items: stretch;
	}

	.footer .share {
		margin: 0 10rem;
		padding: 1rem 0;
		border-bottom: 1px solid black;
		display: flex;
		/* width: 80%; */
		justify-content: flex-end;
	}
	
}

@media (max-width: 1750px) {
	
	.home .img-top {
		margin: -5px 0 0;
		width: 100%;
	}

	.home .heading-formacao {
		margin: 10rem 20rem 1rem;
		font-size: 2rem;
		font-weight: 400;
		color: #000;
	}

	.home .heading-h1 {
		margin: 0 50rem 0 20rem;
		text-align: left;
	}

	.home .curso-formacao {
		margin: -25rem 0 0;
	}

	.about .row .content h3 {
		font-size: 32px;
	}

	.about .row .content p {
		font-size: 20px;
	}

	.products span {
		line-height: normal;
	}

	.para .row {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin-top: 1rem;
	}

	.para .row .content h3 {
		font-size: 32px;
	}

	.para .row .content lu {
		font-size: 15px;
	}

	.roxo{
		width: 100%;
	}

	.roxo .card .image {
		height: 350px;
		width: 350px;
		padding: 1px;
	}

	.roxo .card .image img {
		border-radius: 0%;
	}

	.depoimentos {
		font-size: 2rem;
	}

	.img-aspas1 {
		margin: 0 0 0 -45rem;
	}

	.img-aspas2 {
		margin: 0 0 0 45rem;
	}

	.img-aspas3 {
		margin: 0 0 0 -50rem;
	}

	.img-aspas4 {
		margin: 0 0 0 55rem;
	}

	.footer-content {
		display: flex;
		padding: 2rem 4rem;
		flex-direction: row;
		flex-wrap: nowrap;
		align-content: space-around;
		justify-content: space-between;
		align-items: stretch;
	}

	.footer .share {
		margin: 0 10rem;
		padding: 1rem 0;
		border-bottom: 1px solid black;
		display: flex;
		/* width: 80%; */
		justify-content: flex-end;
	}
	
}

@media (max-width: 1024px) {
	
	.home .img-top {
		margin: 1rem 0 0;
		width: 100%;
	}

	.video{
		text-align: center;
		width: 600px;
		height: 350px;
	}

	.home .heading-formacao {
		margin: 2rem 5rem 1rem;
		font-size: 2rem;
		font-weight: 400;
		color: #000;
	}

	.home .img-top {
		width: 100%;
	}

	.para-text {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		align-content: center;
	}

	.para-text .publico {
		text-align: center;
	}

	.para-text .publico1 {
		text-align: center;
	}

	.para-text .publico2 {
		text-align: center;
	}

	.para-text .publico3 {
		text-align: center;
	}

	.para-text .publico4 {
		text-align: center;
	}

	.about .row .content h3 {
		font-size: 32px;
	}

	.about .row .content p {
		font-size: 20px;
	}

	.products span {
		line-height: normal;
	}

	.para .row .content h3 {
		font-size: 32px;
	}

	.para .row .content lu {
		font-size: 15px;
	}
}

@media (max-width:991px) {
	html {
		font-size: 55%;
	}
	.header {
		padding: 1.5rem 2rem;
	}

	
	.list .list-item {
		flex-direction: column;
	}

	
	.para .row {
		flex-direction: column;
	}
}

@media (max-width:768px) {
	#menu-btn {
		display: inline-block;

	}
	.header .navbar {
		position: absolute;
		top: 100%;
		right: -100%;
		background: #fff;
		width: 30rem;
		height: calc(100vh - 9.5rem);
	}
	
	.header .navbar.active {
		right: 0;
	}
	.header .navbar a {
		color: var(--black);
		display: block;
		margin: 1.5rem;
		padding: .5rem;
		font-size: 2rem;
	}
	.header .search-form {
		width: 90%;
		right: 2rem;
	}
	.home {
		background-position: left;
		justify-content: center;
		text-align: center;
	}
	.home .content h3 {
		font-size: 4.5rem;
	}
	.home .content p {
		font-size: 1.5rem;
	}
}

@media (max-width: 600px) {
	html {
		font-size: 50%;
	}
	
	.home {
		margin-bottom: 5rem;
	}
	.home img{
		max-width: 100%;
		height: auto;
	}

	.home .img-ig{
		margin: 6rem 0 2rem;
	}

	.home .heading-h2 {
		margin: 1rem 3rem 1rem;
		font-size: 2.50rem;
		font-weight: 400;
		color: #000;
	}

	.home .heading-h1 {
		text-align: center;
		margin: 1rem 3rem 1rem;
		font-size: 4rem;
		font-weight: 700;
		color: var(--orange);
	}

	.home .heading-h3 {
		margin: 1rem 3rem 5rem;
		font-size: 4rem;
		font-weight: 400;
		color: #000;
	}

	.video {
		margin: 5rem 3rem;
		text-align: center;
		width: 350px;
		height: 200px;
	}

	.video iframe{
		max-width: 100%;
		width: 400px;
		height: 200px;
	}

	.home .curso-formacao {
		margin: 4rem 0 0;
	}

	.roxo {
		position: relative;
		height: 60rem;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 50px auto;
	}
	.home .img-top-mobile {
		margin: 15px 0 0;
		width: 100%;
	}

	.about {
		text-align: center;
		padding: 3rem;
		background: var(--black);
	}

	.about .row .content {
		padding: 5rem 1rem 0 1rem;
	}

	.about .row .content h3 {
		padding: 1rem 2rem 3rem;
		font-size: 2.5rem;
		text-align: center;
	}

	.about .row .content p {
		font-size: 16px;
		text-align: center;
		padding: 5px;
	}

	.about .row .image img {
		width: 80%;
	}

	.about .row .content .p-visao-mobile {
		font-size: 2.5rem;
		color: #fff;
		padding: 1rem 2.5rem;
	}

	.menu-texto-inicial{
		padding-left: 2rem;
	}

	.menu img {
		width: 100%;
	}
	
	.menu h1 {
		font-size: 30px;
		line-height: 30px;
		text-align: center;
	}
	
	.menu p {
		font-size: 20px;
	}

	.menu-imagem img{
		width: 400px;
	}
	.para-text {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 3rem 5rem;
		flex-wrap: wrap;
		align-content: stretch;
	}

	.puc .p-whatsapp-mobile{
		padding-bottom: 3rem;
	}

	.puc .p-whatsapp-mobile .cor{
		color: #4CAF50;
	}

	.para-text .bloco-publico {
		margin: 1rem 0 1rem;
    	width: 100%;
	}

	.para-text .publico {
		text-align: center;
		font-size: 2.5rem;
	}
	.para-text .publico-mobile {
		text-align: center;
		font-size: 2.5rem;
	}

	.para-text .publico2 {
		text-align: initial;
		padding-left: 3rem;
		margin: 0.5rem 0.5rem 1rem;
		font-size: 2rem;
	}

	.para-text .publico3 {
		padding: 0 0 2rem;
		text-align: center;
		font-weight: 700;
		font-size: 4rem;
	}
	.para-text .publico4 {
		padding: 0 0 2rem;
		text-align: center;
		font-weight: 700;
		font-size: 4rem;
	}


	.menu-texto-final{
		display: flex;
		padding-left: 6rem;
		padding-right: 6rem;
		text-align: center;
		flex-direction: column;
	}

	.menu-texto-final b {
		color: var(--iag-color);
		font-size: 30px;
	}

	.menu-texto-final p {
		font-size: 20px;
		line-height: 30px;
	}

	.menu-imagem-mobile{
		margin-bottom: 30px;
	}

	.titulo {
		display: none;
	}

	.review-texto-inicial {
		padding-top: 0rem;
		padding-left: 2rem;
		padding-right: 0rem;
	}
	
	.review h1 {
		font-weight: 700;
		font-size: 30px;
		line-height: 30px;
		text-align: center;
	}

	.review-texto-final {
		display: none;
	}

	.review-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		
		text-align: center;
	}

	.review-mobile img{
		width: 100%
	}
	
	.review p {
		font-weight: 600;
		font-size: 24px;
		line-height: 29px;
		margin-top: 35px;
		margin-bottom: 10px;
		text-align: center;
	}
	
	.review .box img{
		width: 30%;
	}

	.review .box-container .box {
		border: var(--border);
		text-align: center;
		padding: 5px;
		border-radius: 40px;
		background-color: white;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
			-ms-flex-direction: column;
				flex-direction: column;
	}
	
	.review .box-container .box p{
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
		color: #fff;
		padding: 1rem 0;
	}

	.review .competencias-mobile .box img {
		width: 100%;
	}

	.negocios{
		font-size: 20px;
		line-height: 10px;
		width: 90%;
		border-radius: 40px;
		padding: 10px;
		margin: 5px;
		color: white;
		font-size: 15px;
		line-height: 5px;
	  }
	  
	  .blue{
		background-color: #009BAE;
	  }
	  
	  .orange{
		background-color: #FF530D;
	  }
	  
	  .black{
		background-color: #2B3A42;
	  }
	  
	  .gray{
	   background-color:  #3F5765;
	  }
	  
	  .texto{
		padding: 15px;
		text-align: left;
	  }
	  
	  .texto h3{
		line-height: 25px;
		font-weight: 800;
	  }
	  
	  .texto p{
		font-size: 15px;
		line-height: 30px;
		font-weight: 400;
	  }
	  
	  .numero{
		text-align: right;
	  }

	.products {
		padding: 4rem 2rem;
	}

	.products h2 {
		font-size: 30px;
		line-height: 30px;
	}

	.products span {
		font-size: 22px;
	}

	.products .corpo-docente {
		font-weight: 700;
		font-size: 4rem;
		line-height: 30px;
		color: var(--iag-color);
		text-align: center;
	}
	.products .corpo-docente1 {
		font-weight: 400;
		padding: 2.5rem;
		font-size: 2.5rem;
		text-align: center;
	}

	.list{
		background-color: var(--iag-color);
		padding: 2rem;
	}

	.list .list-item__content h4 {
		text-align: center;
	}

	.para {
		margin-top: -10rem;
	}

	.para .row .content {
		padding: 3rem 2.5rem;
		margin-right: 0px;
	}

	.para .row{
		flex-direction: column-reverse;
	}

	.para .row .image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-top: -50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	}

	.para .row .content ul li {
		display: inline-block;
		list-style-type: none;
		padding: 0.5rem 1rem;
		margin: 0.6rem 1rem;
		border-radius: 75px 75px 75px 75px;
		-webkit-border-radius: 75px 75px 75px 75px;
		-moz-border-radius: 75px 75px 75px 75px;
		border: 2px solid var(--orange2);
	}

	.para .row .content h3 {
		margin-bottom: 2rem;
		text-align: center;
	}

	.para .row .content lu span {
		color: #fff;
		font-size: medium;
	}

	.puc .content {
		text-align: center;
		font-size: 2.5rem;
		padding: 1rem 2rem;
		color: var(--bg);
	}

	.puc-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		
		text-align: center;
	}

	.puc-mobile img{
		width: 100%
	}

	.puc-mobile p {
		padding: 2rem 1rem;
		font-size: 20px;
	}

	.p-inscreva-se-mobile{
		margin-bottom: 3rem;
	}

	.depoimentos {
		text-align: center;
		background-color: var(--black);
		padding: 3rem 5rem 5rem;
		font-size: 2.5rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: white;
	}

	.feedback {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	
	.img-aspas1{
		margin: 2rem 0 2rem -30rem;
	}

	.img-aspas2{
		margin: 2rem 0 2rem 30rem;
	}

	.img-aspas3{
		margin: 2rem 0 2rem -30rem;
	}

	.img-aspas4{
		margin: 2rem 0 2rem 35rem;
	}

	.experiencia-mercado{
		padding: 5rem 5rem 2rem;
	}
	.mercado{
		margin-bottom: 3rem;
	}

	.contact{
		padding: 0;
	}

	.contact .row {
		padding: 2rem;
	}

	.contact-wtp{
		text-align: center;
	}

	.contact .row form h3 {
		font-size: 20px;
	}

	.footer-content {
		flex-direction: column;
	}
	.footer-content .contato {
		display: flex;
		flex-direction: column;
		font-family: 'Montserrat';
		font-style: normal;
		font-weight: 700;
		font-size: 1.5rem;
		line-height: 22px;
		color: black;
		align-items: center;
		align-content: center;
		justify-content: center;
	}
	.footer-content .logo {
		width: 90%;
		margin-top: 3rem;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		flex-wrap: wrap;
		flex-direction: row;
	}
}

@media only screen and (max-width: 300px) {
	.prev,
	.next,
	.text {
		font-size: 11px
	}
}

/* Elemento hidden desktop */

@media screen  and (min-width: 640px){
	.menu-imagem-mobile, .competencias-mobile, .img-top-mobile, .p-whatsapp-mobile, .p-visao-mobile, .publico-mobile, .p-inscreva-se-mobile, .feedback-mobile, .logo-mobile{
		display: none;
	}
}
/* ELemento hidden mobile*/
@media screen  and (max-width: 640px){
	.menu-imagem, .img-top, .p-whatsapp, .p-visao, .publico, .p-inscreva-se, .logo-desktop{
		display: none;
	}

	.box .competencias-desktop{
		display: none;
	}

}