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

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

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

html::-webkit-scrollbar {
	width: 1rem;
}

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: 120vh;
	background: url(../images/principal.png) no-repeat center center;
	background-position: center;
	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 18rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.about {
	background: var(--iag-color);
}

.about .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.about .row .image {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 20rem;
	        flex: 1 1 20rem;
}

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

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

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

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

.menu {
	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: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.menu img {
	width: 100%;
}

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

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

.review {
	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: start;
	    -ms-flex-align: start;
	        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: 51px;
	margin-bottom: 20px;
}

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

.review .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: 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: #009BAE;
	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 .stars i {
	font-size: 1.5rem;
	color: var(--main-color);
}

.products {
	padding: 2rem 2rem;
	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;
}

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

.products .texto {
	font-weight: 700;
	font-size: 48px;
	line-height: 65px;
	color: var(--iag-color);
	text-align: center;

	margin-bottom: 5rem;
}

.products .texto .texto1 {
	color: #61605F;
}

.products .box-container {
	display: -ms-grid;
	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: 80%;
	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;
	-webkit-transition: 0.6s ease;
	-o-transition: 0.6s ease;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        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;
	-webkit-transition: background-color 0.6s ease;
	-o-transition: background-color 0.6s ease;
	transition: background-color 0.6s ease;
}

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

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

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

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

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

.list .list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	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%;
	border-radius: 50%;
}

.list .list-item__content {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        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(--orange);
}

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

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

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

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

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

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

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

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

.para-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: url(../images/puc-img.png) no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.puc .content {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: lighter;
	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;
}

.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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 30px;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}

.blogs .box-container {
	display: -ms-grid;
	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%;
	-o-object-fit: cover;
	   object-fit: cover;
	width: 100%;
}

.blogs .box-container .box:hover .image img {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 80%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 4rem 10rem;
}

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

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

.footer-content .logo {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.footer .links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    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);
}

/* -------Novo Slide------- */


.container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 80%;
	text-align: center;
	margin-bottom: 200px;
	}
	
	.item{
	margin: 5px;
	padding: 10px;
	border-radius: 40px;
	background-color: #61605F;
	color: white;
	}
/* -------Fim do novo Slide------- */

/*-----INICIO SLIDER-----*/
.roxo{
	position: relative;  
	height: 450px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 200px 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: 25px;
	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) {
	/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html {
	font-size: 50%;
}

.home {
	background: url(../images/empresarial-1.jpg) no-repeat center center;
	margin-top: 95px;
	min-height: 90vh;
	background-position: center;
	background-size: 100% 100%;
}

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

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

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

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

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

.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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 6rem;
	padding-right: 6rem;
	text-align: center;
}

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

.menu-texto-final p {
	font-size: 20px;
	line-height: 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: -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;
	
	text-align: center;
}

.review-mobile img{
	width: 100%
}

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


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

.roxo{
	margin: 350px auto 0;
}

.products {
	padding: 4rem 5rem;
}

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

.products span {
	font-size: 22px;

}

.products .texto{
	font-size: 25px;
	line-height: 28px;
	margin-bottom: 1rem;
}

.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: 25px;
	position: relative;
	z-index: 100;
  }

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

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

.para {
	margin-top: 5px;
}

.para .row{
	margin-top: 55px;
}

.para .row .content {
	margin-top: 25px;
	padding: 0 4rem;
}

.para .row .content lu span {
	color: #fff;
	font-size: medium;
}
.para .row .image2 img {
	width: 74%;
}
.para .row .image2 {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
	margin-top: -155px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}

.para .row .content h3{
	text-align: center;
	padding-bottom: 3rem;
}

.imagem-oculos{
	margin-left: 110px;
}

.texto-imagem-oculos{
	padding-right: 85px;

}

.para-text {
	display: none;
}

.puc {
	display: none;
}

.puc-mobile {
	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;
	
	text-align: center;
}

.puc-mobile img{
	width: 100%
}

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

.contact{
	padding: 0;
}

.contact .row {
	padding: 0;
}

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

.footer-content {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
}

.footer .share{
	padding: 1rem 12px;	
}

.footer-content .contato {
	text-align: left;
	font-size: 15px;
}
@media only screen and (max-width: 300px) {
	.prev,
	.next,
	.text {
		font-size: 11px
	}
}
}

/* Elemento hidden desktop */

@media screen  and (min-width: 640px){
	.diagrama-imagem2, .competencias-mobile, .image2{
	   display: none;
   }



}
/* ELemento hidden mobile*/
@media screen  and (max-width: 640px){
	.diagrama-imagem, .box .competencias-desktop{
		display: none;
	}
	.para .row .image{
		display: none;
	}

}