/*FONTS*/
/*GERAL*/
ul {
  padding: 0;
  margin: 0; }

li {
  list-style: none; }

a, a:hover {
  text-decoration: none; }

p {
  margin: 0; }

*:focus, *:hover {
  outline: none; }

body {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased; }

* {
  outline: none;
  font-family: "Open Sans", sans-serif; }

.container {
  max-width: 1200px; }
@media only screen and (max-width: 1360px) {
  .container {
    max-width: 96%; } }
@media only screen and (max-width: 992px) {
  .container {
    max-width: 96%; } }
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%; } }

.container-small {
  max-width: 1100px; }
@media only screen and (max-width: 1360px) {
  .container-small {
    max-width: 90%; } }
@media only screen and (max-width: 992px) {
  .container-small {
    max-width: 95%; } }
@media only screen and (max-width: 575px) {
  .container-small {
    max-width: 100%; } }

.container-big {
  max-width: 1395px; }
@media only screen and (max-width: 1360px) {
  .container-big {
    max-width: 90%; } }
@media only screen and (max-width: 992px) {
  .container-big {
    max-width: 95%; } }
@media only screen and (max-width: 575px) {
  .container-big {
    max-width: 100%; } }

/*TEXTOS*/
.text-small {
  font-size: 14px;
  line-height: 22px;
  color: #00645B; }
@media only screen and (max-width: 992px) {
  .text-small {
    font-size: 12px;
    line-height: 140%; } }

.text-big {
  font-size: 20px;
  font-weight: bold;
  color: #000000; }
@media only screen and (max-width: 1360px) {
  .text-big {
    font-size: 18px; } }

.title {
  font-size: 28px;
  font-weight: 900;
  color: #000000; }
@media only screen and (max-width: 1360px) {
  .title {
    font-size: 26px; } }
@media only screen and (max-width: 767px) {
  .title {
    font-size: 22px; } }

.txt-white {
  color: #fff !important; }

.box-text p {
  font-size: 16px;
  color: #878787;
  margin-bottom: 20px; }
@media only screen and (max-width: 767px) {
  .box-text p {
    font-size: 15px; } }
.box-text p:last-child {
  margin-bottom: 0; }

.box-flex {
  display: flex; }

/*BOTOES*/
.bt-default a {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border: none;
  background: #00645B;
  -webkit-border-radius: 60px;
  border-radius: 60px; }
@media only screen and (max-width: 767px) {
  .bt-default a {
    font-size: 13px; } }
.bt-default a:hover {
  background: #2AC1B3;
  color: #fff; }

/*HEADER*/
header {
  width: 100%;
  height: 100px;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 99;
  -webkit-transition: all linear 100ms;
  transition: all linear 100ms; }
@media only screen and (max-width: 767px) {
  header {
    display: none; } }
header .container {
  height: 100%; }
header .flex-top {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
header .flex-top h1.logo {
  -webkit-transition: all linear 100ms;
  transition: all linear 100ms;
  margin: 0; }
header .flex-top h1.logo a {
  width: 170px;
  display: flex; }
@media only screen and (max-width: 992px) {
  header .flex-top h1.logo a {
    width: 150px; } }
header .flex-top h1.logo a img {
  width: 100%; }
header .flex-top .menu {
  -webkit-transition: all linear 100ms;
  transition: all linear 100ms; }
@media only screen and (max-width: 767px) {
  header .flex-top .menu {
    display: none; } }
header .flex-top .menu li {
  float: left;
  padding: 0 20px; }
@media only screen and (max-width: 1200px) {
  header .flex-top .menu li {
    padding: 0 0px; } }
header .flex-top .menu li a {
  font-size: 17px;
  font-weight: 600;
  color: #838383;
  position: relative;
  -webkit-transition: all linear 150ms;
  -moz-transition: all linear 150ms;
  -ms-transition: all linear 150ms;
  -o-transition: all linear 150ms;
  transition: all linear 150ms; }
@media only screen and (max-width: 992px) {
  header .flex-top .menu li a {
    font-size: 15px;
    padding: 0; } }
header .flex-top .menu li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0%;
  height: 4px;
  background: #3D3951;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all linear 150ms;
  -moz-transition: all linear 150ms;
  -ms-transition: all linear 150ms;
  -o-transition: all linear 150ms;
  transition: all linear 150ms; }
header .flex-top .menu li a:hover {
  text-shadow: 0 0 1px #3D3951;
  color: #3D3951; }
header .flex-top .menu li a:hover:after {
  width: 100%; }
header .flex-top .menu li a.active {
  color: #3D3951;
  text-shadow: 0 0 1px #3D3951; }
header .flex-top .menu li a.active:after {
  width: 100%; }
header.fixedTop {
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); }

.menuMob {
  display: none;
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0px;
  -webkit-transition: all linear 150ms;
  transition: all linear 150ms;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0px 6px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.18); }
@media only screen and (max-width: 767px) {
  .menuMob {
    display: block;
    z-index: 101; } }
.menuMob .drawer--top {
  height: 100%; }
.menuMob .logo-bar-menu {
  height: 100%;
  display: -webkit-box;
  width: 160px;
  margin: 0 5%;
  padding: 0px 0px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center; }
.menuMob .logo-bar-menu svg, .menuMob .logo-bar-menu img {
  width: 100%; }
.menuMob .drawer-hamburger {
  border: 2px solid #111;
  border-radius: 50%;
  right: 10px !important;
  top: 12px;
  padding: 0px 10px 10px;
  width: 20px;
  height: 30px;
  outline: none; }
.menuMob .drawer-nav {
  height: 100vh;
  background: rgba(17, 17, 17, 0.8); }
.menuMob .drawer-nav .bar-menu-mob {
  height: 65px;
  width: 100%;
  background: #fff; }
.menuMob .drawer-nav .bar-menu-mob a {
  width: 160px;
  float: left;
  padding: 10px 0px;
  height: 65px;
  margin-left: 5%; }
.menuMob .drawer-nav .bar-menu-mob a svg, .menuMob .drawer-nav .bar-menu-mob a img {
  width: 100%; }
.menuMob .drawer-nav .drawer-menu {
  margin: 15px auto 50px; }
.menuMob .drawer-nav .drawer-menu li {
  width: 100%;
  padding: 10px 0px;
  text-align: center; }
.menuMob .drawer-nav .drawer-menu li:hover {
  background: rgba(50, 50, 50, 0.7); }
.menuMob .drawer-nav .drawer-menu li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase; }
.menuMob .drawer-nav .drawer-menu li a.active {
  font-weight: 900;
  text-decoration: underline; }
.menuMob .drawer-nav .drawer-menu li a svg {
  width: 35px;
  height: 35px; }

.drawer-open {
  height: 100%; }

.drawer-open .drawer-hamburger-icon {
  background-color: transparent !important; }

.menuMob .drawer-hamburger .drawer-hamburger-icon, .menuMob .drawer-hamburger .drawer-hamburger-icon:before, .menuMob .drawer-hamburger .drawer-hamburger-icon:after {
  background: #111; }

/*FOOTER*/
footer {
  width: 100%;
  background: #161918;
  position: absolute;
  bottom: 0px; }
footer .box-footer {
  width: 100%;
  padding: 60px 0 60px;
  position: relative; }
@media only screen and (max-width: 1360px) {
  footer .box-footer {
    padding: 40px 0 40px; } }
footer .box-footer:before {
  content: "";
  display: block;
  background: url("../img/icon-detail.png") no-repeat center;
  background-size: 374px;
  width: 374px;
  height: 310px;
  position: absolute;
  left: 0px;
  top: 0;
  pointer-events: none; }
@media only screen and (max-width: 767px) {
  footer .box-footer:before {
    background-size: 280px;
    width: 280px;
    height: 230px; } }
@media only screen and (max-width: 575px) {
  footer .box-footer:before {
    background-size: 220px;
    width: 220px;
    height: 175px; } }
footer .box-footer .logo-footer {
  width: 160px;
  margin: 0 auto;
  text-align: center; }
@media only screen and (max-width: 1360px) {
  footer .box-footer .logo-footer {
    width: 120px; } }
@media only screen and (max-width: 767px) {
  footer .box-footer .logo-footer {
    width: 100px; } }
footer .box-footer .logo-footer img {
  width: 100%; }
footer .box-footer .menu-footer {
  margin: 35px auto 0;
  display: flex;
  justify-content: center; }
@media only screen and (max-width: 767px) {
  footer .box-footer .menu-footer ul {
    display: none; } }
footer .box-footer .menu-footer ul li {
  margin-bottom: 5px; }
footer .box-footer .menu-footer ul li:last-child {
  margin-bottom: 0; }
footer .box-footer .menu-footer ul li a {
  color: #000000;
  font-size: 14px; }
@media only screen and (max-width: 992px) {
  footer .box-footer .menu-footer ul li a {
    font-size: 12px; } }
footer .box-footer .menu-footer ul li a:hover {
  color: #900; }
footer .footer-bar {
  float: left;
  width: 100%;
  clear: both;
  background: #000;
  padding: 14px 0; }
footer .footer-bar p {
  color: #FFF; }
@media only screen and (max-width: 1360px) {
  footer .footer-bar p {
    font-size: 12px; } }
@media only screen and (max-width: 767px) {
  footer .footer-bar p span {
    display: block; } }

.banner {
  background: url("../img/img-topo.png") no-repeat center 0;
  -webkit-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%; }
.banner .bg {
  width: 100%;
  height: 100%;
  background: rgba(61, 57, 81, 0.8); }

/*HOME*/
.pg-home {
  position: relative;
  min-height: 100vh;
  padding-bottom: 400px; }
@media only screen and (max-width: 1360px) {
  .pg-home {
    padding-bottom: 300px; } }
@media only screen and (max-width: 767px) {
  .pg-home {
    padding-bottom: 260px; } }
.pg-home .banner {
  margin-top: 100px;
  background-color: #161918;
  padding: 30px 0 0;
  margin-bottom: 100px; }
@media only screen and (max-width: 767px) {
  .pg-home .banner {
    margin-top: 65px;
    margin-bottom: 40px; } }
.pg-home .banner:before {
  content: "";
  display: block;
  background: url("../img/icon-detail.png") no-repeat center;
  background-size: 374px;
  width: 374px;
  height: 310px;
  position: absolute;
  left: 0px;
  top: 0;
  pointer-events: none; }
@media only screen and (max-width: 767px) {
  .pg-home .banner:before {
    background-size: 280px;
    width: 280px;
    height: 230px; } }
@media only screen and (max-width: 575px) {
  .pg-home .banner:before {
    background-size: 220px;
    width: 220px;
    height: 175px; } }
.pg-home .banner .flex-banner {
  display: flex;
  justify-content: space-between;
  position: relative; }
@media only screen and (max-width: 767px) {
  .pg-home .banner .flex-banner {
    flex-direction: column; } }
.pg-home .banner .flex-banner .content-banner {
  width: 50%;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; }
@media only screen and (max-width: 767px) {
  .pg-home .banner .flex-banner .content-banner {
    width: 100%; } }
.pg-home .banner .flex-banner .content-banner .box-banner {
  width: 590px;
  padding-left: 15px; }
@media only screen and (max-width: 1360px) {
  .pg-home .banner .flex-banner .content-banner .box-banner {
    width: 100%; } }
.pg-home .banner .flex-banner .content-banner .txt-banner {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase; }
@media only screen and (max-width: 767px) {
  .pg-home .banner .flex-banner .content-banner .txt-banner {
    text-align: center; } }
.pg-home .banner .flex-banner .content-banner .title-banner {
  max-width: 550px;
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 62px; }
@media only screen and (max-width: 1360px) {
  .pg-home .banner .flex-banner .content-banner .title-banner {
    font-size: 46px;
    line-height: 52px; } }
@media only screen and (max-width: 1200px) {
  .pg-home .banner .flex-banner .content-banner .title-banner {
    font-size: 36px;
    line-height: 42px; } }
@media only screen and (max-width: 767px) {
  .pg-home .banner .flex-banner .content-banner .title-banner {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    margin: 0 auto 10px; } }
@media only screen and (max-width: 575px) {
  .pg-home .banner .flex-banner .content-banner .title-banner {
    font-size: 24px;
    line-height: 30px; } }
.pg-home .banner .flex-banner .content-banner .bt-default {
  max-width: 200px; }
@media only screen and (max-width: 767px) {
  .pg-home .banner .flex-banner .content-banner .bt-default {
    margin: 0 auto; } }
.pg-home .banner .flex-banner .img-banner {
  width: 50%;
  margin-bottom: -60px; }
@media only screen and (max-width: 767px) {
  .pg-home .banner .flex-banner .img-banner {
    width: 100%;
    margin-bottom: 0px; } }
.pg-home .banner .flex-banner .img-banner img {
  width: 100%; }
.pg-home .section-1 {
  padding-bottom: 45px; }
.pg-home .section-1 .benefits {
  display: flex;
  justify-content: space-between; }
@media only screen and (max-width: 767px) {
  .pg-home .section-1 .benefits {
    flex-direction: column;
    justify-content: center;
    align-items: center; } }
.pg-home .section-1 .benefits .box-benefits {
  width: 32%;
  height: 200px;
  background-size: cover !important;
  padding: 25px 20px 15px; }
@media only screen and (max-width: 767px) {
  .pg-home .section-1 .benefits .box-benefits {
    width: 100%;
    margin: 0 auto 30px; }
  .pg-home .section-1 .benefits .box-benefits:last-child {
    margin-bottom: 0; } }
.pg-home .section-1 .benefits .box-benefits .text-head {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase; }
.pg-home .section-1 .benefits .box-benefits h3 {
  max-width: 210px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  line-height: 32px; }
@media only screen and (max-width: 1200px) {
  .pg-home .section-1 .benefits .box-benefits h3 {
    font-size: 22px;
    line-height: 28px; } }
@media only screen and (max-width: 767px) {
  .pg-home .section-1 .benefits .box-benefits h3 {
    font-size: 18px;
    line-height: 25px; } }
.pg-home .section-1 .benefits .box-benefits h3:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100px;
  height: 2px;
  background-color: #2AC1B3; }
.pg-home .section-1 .benefits .box-benefits.benefits-01 {
  background: url("../img/benefits-01.png") no-repeat center; }
.pg-home .section-1 .benefits .box-benefits.benefits-02 {
  background: url("../img/benefits-02.png") no-repeat center; }
.pg-home .section-1 .benefits .box-benefits.benefits-03 {
  background: url("../img/benefits-03.png") no-repeat center; }
.pg-home .section-2 {
  padding-bottom: 80px; }
.pg-home .section-2 .box-flex {
  justify-content: space-between; }
@media only screen and (max-width: 767px) {
  .pg-home .section-2 .box-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center; } }
.pg-home .section-2 .box-flex .box {
  width: 31%;
  background-size: cover !important;
  padding: 0;
  display: flex; }
@media only screen and (max-width: 767px) {
  .pg-home .section-2 .box-flex .box {
    width: 90%;
    max-width: 400px;
    margin: 0 auto 30px; }
  .pg-home .section-2 .box-flex .box:last-child {
    margin-bottom: 0; } }
.pg-home .section-2 .box-flex .box i {
  margin-right: 10px;
  margin-top: 8px; }
.pg-home .section-2 .box-flex .box .text-head {
  font-size: 18px;
  font-weight: 900;
  color: #000000; }
.pg-home .section-2 .box-flex .box .box-text p {
  font-size: 12px; }
.pg-home .section-3 {
  margin-bottom: -100px;
  position: relative;
  z-index: 2; }
.pg-home .section-3 .title {
  text-align: center; }
.pg-home .section-3 .box-text {
  max-width: 550px;
  margin: 0 auto 20px; }
.pg-home .section-3 .box-text p {
  text-align: center; }
.pg-home .section-3 .box-flex {
  justify-content: space-between; }
@media only screen and (max-width: 992px) {
  .pg-home .section-3 .box-flex {
    flex-wrap: wrap; } }
.pg-home .section-3 .box-flex .box-services {
  width: 24%;
  background-size: cover !important;
  padding: 30px 15px;
  border: 1px solid #DBDBDB;
  background: #fff; }
@media only screen and (max-width: 992px) {
  .pg-home .section-3 .box-flex .box-services {
    width: 49%;
    margin-bottom: 30px; } }
@media only screen and (max-width: 420px) {
  .pg-home .section-3 .box-flex .box-services {
    width: 100%; } }
.pg-home .section-3 .box-flex .box-services i {
  width: 100%;
  height: 170px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px; }
@media only screen and (max-width: 992px) {
  .pg-home .section-3 .box-flex .box-services i {
    max-width: 180px;
    height: 200px; } }
.pg-home .section-3 .box-flex .box-services i img {
  width: 100%; }
.pg-home .section-3 .box-flex .box-services .text-head {
  color: #000000;
  font-weight: bold;
  margin-bottom: 5px; }
.pg-home .section-3 .box-flex .box-services .text-small {
  font-size: 11px;
  line-height: 15px;
  color: #000000; }
.pg-home .section-4 {
  padding: 100px 0 0px;
  background-color: #02534B;
  position: relative; }
@media only screen and (max-width: 767px) {
  .pg-home .section-4 {
    padding: 70px 0 30px; } }
.pg-home .section-4:before {
  content: "";
  display: block;
  background: url("../img/icon-detail.png") no-repeat center;
  background-size: 374px;
  width: 374px;
  height: 310px;
  position: absolute;
  left: 0px;
  top: 0;
  pointer-events: none; }
@media only screen and (max-width: 767px) {
  .pg-home .section-4:before {
    background-size: 280px;
    width: 280px;
    height: 230px; } }
@media only screen and (max-width: 575px) {
  .pg-home .section-4:before {
    background-size: 220px;
    width: 220px;
    height: 175px; } }
.pg-home .section-4 .box-confidence {
  display: flex;
  justify-content: space-between; }
@media only screen and (max-width: 767px) {
  .pg-home .section-4 .box-confidence {
    flex-direction: column; } }
.pg-home .section-4 .box-confidence i {
  width: 49%;
  margin-right: 30px;
  position: relative;
  top: 50px; }
@media only screen and (max-width: 767px) {
  .pg-home .section-4 .box-confidence i {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px; } }
.pg-home .section-4 .box-confidence i img {
  width: 100%; }
.pg-home .section-4 .box-confidence .text-confidence {
  width: 49%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center; }
@media only screen and (max-width: 767px) {
  .pg-home .section-4 .box-confidence .text-confidence {
    width: 100%; } }
.pg-home .section-4 .box-confidence .text-confidence .title {
  max-width: 500px;
  line-height: 60px;
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase; }
@media only screen and (max-width: 1360px) {
  .pg-home .section-4 .box-confidence .text-confidence .title {
    font-size: 46px;
    line-height: 52px; } }
@media only screen and (max-width: 1200px) {
  .pg-home .section-4 .box-confidence .text-confidence .title {
    font-size: 36px;
    line-height: 42px; } }
@media only screen and (max-width: 767px) {
  .pg-home .section-4 .box-confidence .text-confidence .title {
    max-width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 38px; } }
.pg-home .section-4 .box-confidence .text-confidence .txt-big {
  font-size: 16px;
  text-transform: uppercase;
  color: #2AC1B3; }
@media only screen and (max-width: 767px) {
  .pg-home .section-4 .box-confidence .text-confidence .txt-big {
    text-align: center; } }
.pg-home .section-5 {
  padding: 100px 0 40px; }
@media only screen and (max-width: 767px) {
  .pg-home .section-5 {
    padding: 40px 0; } }
.pg-home .section-5 .flex-insurance {
  display: flex;
  justify-content: space-between; }
@media only screen and (max-width: 767px) {
  .pg-home .section-5 .flex-insurance {
    flex-direction: column;
    justify-content: center;
    align-items: center; } }
.pg-home .section-5 .flex-insurance .box-insurance {
  width: 48%; }
@media only screen and (max-width: 767px) {
  .pg-home .section-5 .flex-insurance .box-insurance {
    width: 100%;
    margin: 0 auto 30px; }
  .pg-home .section-5 .flex-insurance .box-insurance:last-child {
    margin-bottom: 0; } }
.pg-home .section-5 .flex-insurance .box-insurance .img {
  width: 100%;
  margin-bottom: 8px; }
.pg-home .section-5 .flex-insurance .box-insurance .img img {
  width: 100%; }
.pg-home .section-5 .flex-insurance .box-insurance .text {
  text-align: center;
  font-size: 12px;
  color: #000;
  text-transform: uppercase; }
.pg-home .section-5 .flex-insurance .box-insurance h3 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase; }
@media only screen and (max-width: 767px) {
  .pg-home .section-5 .flex-insurance .box-insurance h3 {
    font-size: 22px; } }
.pg-home .section-5 .flex-insurance .box-insurance .txt-big {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #000; }
.pg-home .section-5 .flex-insurance .box-insurance .value {
  max-width: 180px;
  border-top: 2px solid #53A6D8;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #000;
  margin: 6px auto 0; }
@media only screen and (max-width: 767px) {
  .pg-home .section-5 .flex-insurance .box-insurance .value {
    font-size: 20px; } }
.pg-home .section-6 {
  position: relative;
  z-index: 3; }
.pg-home .section-6 .title {
  text-align: center; }
.pg-home .section-6 .box-text {
  max-width: 530px;
  text-align: center;
  margin: 0 auto 20px; }
.pg-home .section-6 .products {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -60px; }
.pg-home .section-6 .products .box-products {
  width: 24%;
  padding: 20px 15px;
  margin-bottom: 15px;
  background-color: #fff;
  border: 1px solid #DBDBDB; }
@media only screen and (max-width: 767px) {
  .pg-home .section-6 .products .box-products {
    width: 49%; } }
@media only screen and (max-width: 420px) {
  .pg-home .section-6 .products .box-products {
    width: 100%; } }
.pg-home .section-6 .products .box-products i {
  width: 65px;
  margin: 0 auto 15px;
  text-align: center;
  display: flex; }
.pg-home .section-6 .products .box-products i img {
  width: 100%; }
.pg-home .section-6 .products .box-products .txt-head {
  color: #000;
  font-weight: 900;
  margin-bottom: 8px; }
.pg-home .section-6 .products .box-products .text-small {
  color: #000;
  font-size: 12px;
  line-height: 18px; }
.pg-home .section-7 {
  height: 470px;
  background-color: #161918;
  position: relative; }
@media only screen and (max-width: 1200px) {
  .pg-home .section-7 {
    height: 440px; } }
@media only screen and (max-width: 767px) {
  .pg-home .section-7 {
    height: auto;
    padding-bottom: 30px; } }
.pg-home .section-7:before {
  content: "";
  display: block;
  background: url("../img/icon-detail-right.png") no-repeat center;
  background-size: 374px;
  width: 374px;
  height: 310px;
  position: absolute;
  right: 0px;
  top: 0;
  pointer-events: none; }
@media only screen and (max-width: 767px) {
  .pg-home .section-7:before {
    background-size: 280px;
    width: 280px;
    height: 230px; } }
@media only screen and (max-width: 575px) {
  .pg-home .section-7:before {
    background-size: 220px;
    width: 220px;
    height: 175px; } }
.pg-home .section-7 .img {
  width: 100%;
  margin: 100px auto 0;
  display: inline-block; }
@media only screen and (max-width: 1200px) {
  .pg-home .section-7 .img {
    margin: 80px auto 0; } }
.pg-home .section-7 .img img {
  width: 100%; }
.pg-home .section-8 {
  padding: 180px 0 60px; }
@media only screen and (max-width: 1200px) {
  .pg-home .section-8 {
    padding-top: 12%; } }
@media only screen and (max-width: 767px) {
  .pg-home .section-8 {
    padding: 40px 0; } }
.pg-home .section-8 .text-big {
  text-align: center;
  margin-bottom: 8px; }
.pg-home .section-8 .box-text {
  max-width: 680px;
  margin: auto; }
.pg-home .section-8 .box-text p {
  text-align: center; }

/*# sourceMappingURL=estilo.css.map */
