@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
:root {
	--main-color: #d3ad7f;
	--orange: #F26724;
	--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: center;
	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;
}

.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(--iag-color);
	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;
	min-height: 90vh;
	background: url(../images/imagem-hotsite\ 1.png) no-repeat center center;
	background-position: center;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	background-size: 100% 100%;
}

.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 {
	background: var(--iag-color);
}

.about .row {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	flex-wrap: wrap;
}

.about .row .image {
	flex: 1 1 20rem;
}

.about .row .image img {
	margin-top: -190px;
}

.about .row .content {
	flex: 1 60rem;
	padding-left: 10rem;
}

.about .row .content h3 {
	font-size: 36px;
	line-height: 44px;
	color: #fff;
	padding-right: 10px;
	padding-bottom: 20px;
}

.about .row .content p {
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	padding-right: 10rem;
}

.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 {
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;
	color: var(--iag-color);
	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(--gray);
}

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

.para .row .image {
	flex: 1;
	margin-top: -190px;
	display: flex;
	justify-content: center;
}

.para .row .image img {
	width: 70%;
	margin-top: 53px;
}

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

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

.para .row .content lu {
	font-size: 20px;
	color: #fff;
	padding: 1rem 0;
}

.para .row .content lu span {
	font-size: 20px;
	color: #fff;
	padding: 1rem 0;
	font-weight: 800;
}

.para .row .content lu li {
	margin-bottom: 20px;
}

.para-text {
	display: flex;
	justify-content: center;
	padding: 50px
}

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

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

.puc {
	min-height: 100vh;
	padding: 6rem 10rem;
	display: flex;
	align-items: center;
	background: url(../images/puc-img.png) no-repeat;
	background-size: cover;
	background-position: center;
	justify-content: center;
}

.puc .content {
	align-items: center;
	font-weight: 400;
	line-height: 1.8;
	font-size: 2rem;
	padding: 7rem 55px;
	color: #000;
	background-color: #DADCDEC9;
}

.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: 800;
}

.puc-mobile {
	display: none;
}

.contact {
	margin-top: 36px;
	padding: 6rem 10rem;
}

.contact .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	width: 80%;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	background-color: var(--iag-color);
	border-radius: 40px;
	padding: 1rem 3rem;
}

.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;
	    -ms-flex: 1 1 45rem;
	        flex: 1 1 45rem;
	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(--iag-second-color);
	text-align: center;
}

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

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

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

.footer-content {
	display: flex;
	padding: 4rem 10rem;
}

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

.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: 650px;
	width: 100%;
	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: 200px;
	width: 200px;
	border-radius: 50%;
	padding: 3px;
	background: #009BAE;
  }
  
  .roxo .card .image img{
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 50%;
	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: 20px;
	font-weight: 600;
  }
  
  .name-profession .profession{
	font-size:15px;
	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: 1300px) {
	.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: 1200px) {
	.about .row .image{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.about .row .image img {
		margin-top: 20px;
	}

	.about .row .content {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0 10rem;
		padding-top: 2rem;
	}
}

@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 {
		background: url(../images/imagem-landing-mobile-tamanho-3-VERSAO-3.jpg) no-repeat center center;
		margin-top: 95px;
		min-height: 90vh;
		background-position: center;
		-webkit-background-size: 100% 100%;
		-moz-background-size: 100% 100%;
		-o-background-size: 100% 100%;
		background-size: 100% 100%;
	}

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

	.about .row .content h3 {
		font-size: 28px;
		text-align: center;
	}

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

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

	.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;
	}

	.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;
	  }
	
	.roxo{
		margin: 70px auto 0;
	}

	.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: 28px;
		line-height: 30px;
		color: var(--iag-color);
		text-align: center;
	}

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

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

	.para {
		margin-top: 150px;
	}

	.para .row .content {
		padding: 2rem 4rem;
		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 h3 {
		margin-bottom: 0px;
		text-align: center;
	}

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

	.para-text {
		display: none;
	}

	.puc {
		display: none;
	}

	.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;
	}

	.contact{
		padding: 0;
	}

	.contact .row {
		padding: 0;
	}

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

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

	.footer-content {
		flex-direction: column;
	}
}

@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{
		display: none;
	}
}
/* ELemento hidden mobile*/
@media screen  and (max-width: 640px){
	.menu-imagem{
		display: none;
	}

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

}