/*-----------*/
/*-- Header--*/
/*-----------*/
header {
  width: 100%;
  position: relative;
  z-index: 1000;
  margin-bottom: -95px;
}
header .b-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75113796) 1%, rgba(0, 0, 0, 0.4009979) 50%, rgba(0, 0, 0, 0) 100%);
}
header .line_one {
  position: relative;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  /*-- Menumobile --*/
}
header .line_one .logo {
  width: auto;
  height: 42px;
}
header .line_one .logo a {
  width: 100%;
  height: 100%;
}
header .line_one .logo img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
header .line_one .right-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .line_one ul.navbar-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0 15px;
  margin-right: 35px;
}
header .line_one ul.navbar-menu li.nav-item {
  position: relative;
  padding: 5px 10px;
}
header .line_one ul.navbar-menu li.nav-item a {
  text-decoration: none;
  position: relative;
}
header .line_one ul.navbar-menu li.nav-item span {
  font-size: 18px;
  line-height: 1.2em;
  color: #ffffff;
  transition: 0.3s;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
header .line_one ul.navbar-menu li.nav-item::before {
  content: '';
  width: 100%;
  height: 0;
  background: #ffffff;
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}
header .line_one ul.navbar-menu li.nav-item:hover::before {
  height: 100%;
}
header .line_one ul.navbar-menu li.nav-item:hover span {
  color: #345e84;
}
header .line_one ul.social-media-bar {
  display: flex;
  flex-direction: row;
  gap: 0 5px;
}
header .line_one ul.social-media-bar li {
  padding: 10px;
  transition: 0.3s;
  position: relative;
}
header .line_one ul.social-media-bar li a {
  position: relative;
}
header .line_one ul.social-media-bar li a i {
  font-size: 25px;
  color: #ffffff;
  transition: 0.3s;
}
header .line_one ul.social-media-bar li a img {
  width: auto;
  height: 25px;
  object-fit: contain;
  margin-top: -2px;
}
header .line_one ul.social-media-bar li::before {
  content: '';
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: #ffffff;
  transition: 0.3s;
}
header .line_one ul.social-media-bar li:hover::before {
  height: 100%;
}
header .line_one ul.social-media-bar li:hover a i {
  color: #345e84;
}
header .line_one ul.social-media-bar li:nth-last-of-type(1)::before {
  display: none;
}
header .line_one .container-botao-menu {
  position: relative;
  z-index: 10;
  display: none;
  height: 32px;
}
header .line_one .container-botao-menu #checkbox {
  display: none;
}
header .line_one .container-botao-menu .toggle {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  transition-duration: 0.5s;
}
header .line_one .container-botao-menu .bars {
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
}
header .line_one .container-botao-menu #bar2 {
  transition-duration: 0.8s;
}
header .line_one .container-botao-menu #bar1 {
  width: 50%;
}
header .line_one .container-botao-menu #bar2 {
  width: 75%;
}
header .line_one .container-botao-menu #checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
  background: #ffffff;
}
header .line_one .container-botao-menu #checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.1s;
}
header .line_one .container-botao-menu #checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}
header .line_one .container-botao-menu #checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}
header .line_one .container-botao-menu #checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
header .line_one .menumobile {
  position: fixed;
  width: 40%;
  height: 100vh;
  background: #345e84;
  right: -100%;
  top: 0;
  transition: 0.5s;
  padding: 100px 50px 50px 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
header .line_one .menumobile.menu-aberto {
  right: 0;
}
header .line_one .menumobile ul.navbar-menumobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 0;
  margin-bottom: 30px;
}
header .line_one .menumobile ul.navbar-menumobile li.nav-item {
  padding: 5px 10px;
}
header .line_one .menumobile ul.navbar-menumobile li.nav-item a {
  text-decoration: none;
  position: relative;
}
header .line_one .menumobile ul.navbar-menumobile li.nav-item span {
  font-size: 18px;
  line-height: 1.2em;
  color: #ffffff;
  transition: 0.3s;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
header .line_one .menumobile ul.social-media-bar-mobile {
  display: flex;
  flex-direction: row;
  gap: 0 15px;
}
header .line_one .menumobile ul.social-media-bar-mobile li a i {
  font-size: 25px;
  color: #ffffff;
}
header .line_one .menumobile ul.social-media-bar-mobile li a img {
  width: auto;
  height: 25px;
  object-fit: contain;
  margin-top: -2px;
}
@media screen and (max-width: 1199px) {
  /*-- Header --*/
  header .line_one ul.navbar-menu,
  header .line_one ul.social-media-bar {
    display: none;
  }
  header .line_one .container-botao-menu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .line_one .logo {
    height: 38px;
  }
  header .line_one .container-botao-menu {
    height: 28px;
  }
  header .line_one .container-botao-menu .toggle {
    width: 28px;
    height: 28px;
  }
  header .line_one .menumobile {
    width: 310px;
  }
}
@media screen and (max-width: 575px) {
  header .line_one .logo {
    height: 34px;
  }
  header .line_one .menumobile {
    width: 270px;
  }
}
.fonte-light {
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.fonte-regular {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fonte-medium {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.fonte-semibold {
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.fonte-bold {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
  font-family: "Urbanist", sans-serif;
}
.w-container {
  margin: 0 auto;
  display: block;
}
.w1440 {
  max-width: 1440px;
}
.botao-padrao {
  margin-top: 12px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  text-decoration: none;
  padding: 11px 45px;
  border: 2px solid #345e84;
  background: #345e84;
  color: #ffffff;
  transition: 0.3s;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.botao-padrao:hover {
  background: transparent;
  color: #345e84;
}
/*------------*/
/*-- Footer --*/
/*------------*/
.footer .container-footer {
  padding: 50px 20px 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .container-footer .logo-footer {
  margin-bottom: 10px;
}
.footer .container-footer .logo-footer img {
  width: 250px;
  height: auto;
  object-fit: scale-down;
}
.footer .container-footer ul.navbar-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  margin-bottom: 20px;
}
.footer .container-footer ul.navbar-footer li.nav-item {
  padding: 5px 10px;
  position: relative;
}
.footer .container-footer ul.navbar-footer li.nav-item a {
  position: relative;
  text-decoration: none;
}
.footer .container-footer ul.navbar-footer li.nav-item a span {
  font-size: 18px;
  line-height: 1.2em;
  color: #333;
  transition: 0.3s;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.footer .container-footer ul.navbar-footer li.nav-item::before {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #345e84;
  transition: 0.3s;
}
.footer .container-footer ul.navbar-footer li.nav-item:hover::before {
  height: 100%;
}
.footer .container-footer ul.navbar-footer li.nav-item:hover a span {
  color: #ffffff;
}
.footer .container-footer ul.social-media-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  padding: 10px 0px;
}
.footer .container-footer ul.social-media-footer li.sm-item {
  padding: 5px 7px;
  position: relative;
}
.footer .container-footer ul.social-media-footer li.sm-item a {
  position: relative;
}
.footer .container-footer ul.social-media-footer li.sm-item a i {
  font-size: 25px;
  line-height: 1.2em;
  color: #345e84;
  transition: 0.3s;
}
.footer .container-footer ul.social-media-footer li.sm-item::before {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #345e84;
  transition: 0.3s;
}
.footer .container-footer ul.social-media-footer li.sm-item:hover a i {
  color: #ffffff;
}
.footer .container-footer ul.social-media-footer li.sm-item:hover::before {
  height: 100%;
}
.footer .line-rights-reserved {
  padding: 8px 20px;
  background: #345e84;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer .line-rights-reserved p {
  font-size: 17px;
  line-height: 1.2em;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  /*-- Footer --*/
  .footer .container-footer {
    padding: 30px 20px 15px 20px;
  }
  .footer .container-footer .logo-footer img {
    width: 220px;
  }
  .footer .container-footer ul.navbar-footer {
    margin-bottom: 10px;
  }
  .footer .container-footer ul.social-media-footer {
    padding: 0px;
  }
}
@media screen and (max-width: 470px) {
  /*-- Footer --*/
  .footer .container-footer {
    padding: 20px 20px 15px 20px;
  }
  .footer .container-footer ul.navbar-footer {
    gap: 0 12px;
  }
  .footer .container-footer ul.navbar-footer li.nav-item {
    padding: 5px 8px;
  }
}
/*---------------*/
/*-- Banner Top--*/
/*---------------*/
section.banner-top {
  width: 100%;
  height: auto;
  position: relative;
}
section.banner-top img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.banner-top .bg-layer {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
section.banner-top .container-banner-top {
  position: relative;
  height: 310px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
}
section.banner-top .container-banner-top h1 {
  font-size: 44px;
  line-height: 1.2em;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 991px) {
  /*-- Banner Top--*/
  section.banner-top .container-banner-top {
    height: 295px;
  }
  section.banner-top .container-banner-top h1 {
    font-size: 41px;
  }
}
@media screen and (max-width: 767px) {
  /*-- Banner Top--*/
  section.banner-top .container-banner-top {
    height: 275px;
  }
  section.banner-top .container-banner-top h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 575px) {
  /*-- Banner Top--*/
  section.banner-top .container-banner-top {
    height: 260px;
  }
  section.banner-top .container-banner-top h1 {
    font-size: 35px;
  }
}
/*----------------------------------*/
/*-- Texto apresentação Metallyne --*/
/*----------------------------------*/
section.metallyne-apresentation {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
section.metallyne-apresentation .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  gap: 0 12px;
}
section.metallyne-apresentation .title .bar {
  width: 25px;
  height: 2px;
  background: #345e84;
}
section.metallyne-apresentation .title h2 {
  font-size: 30px;
  line-height: 1.2em;
  color: #345e84;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-style: normal;
}
section.metallyne-apresentation .text {
  max-width: 800px;
}
section.metallyne-apresentation .text p {
  font-size: 19px;
  line-height: 1.5em;
  color: #333;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*------------------------*/
/*-- Artigos em Zig Zag --*/
/*------------------------*/
section.zig-zag-articles .container-zz-articles__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #345e84;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='p' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath id='a' data-color='fill' fill='%233D6B95' d='M50 100L0 50V0l50 50 50-50h0v50l-50 50z'%3E%3C/path%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23p)' width='100%25' height='100%25'%3E%3C/rect%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.zig-zag-articles .container-zz-articles__item .image {
  width: 50%;
  height: 380px;
}
section.zig-zag-articles .container-zz-articles__item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.zig-zag-articles .container-zz-articles__item .caption {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
}
section.zig-zag-articles .container-zz-articles__item .caption .title {
  margin-bottom: 18px;
}
section.zig-zag-articles .container-zz-articles__item .caption .title h3 {
  font-size: 32px;
  line-height: 1.2em;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: normal;
}
section.zig-zag-articles .container-zz-articles__item .caption .text p {
  font-size: 18px;
  line-height: 1.4em;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
section.zig-zag-articles .container-zz-articles__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
/*------------------------------*/
/*-- Contadores de Informação --*/
/*------------------------------*/
/*------------------------------*/
/*-- Contadores de Informação --*/
/*------------------------------*/
.data-numbers {
  margin-top: 80px;
  background: #345e84;
  padding: 35px 20px;
}
.data-numbers__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0 60px;
}
.data-numbers__container .number-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
}
.data-numbers__container .number-box .number span.count {
  font-size: 68px;
  line-height: 1em;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.data-numbers__container .number-box span.caption {
  font-size: 18px;
  line-height: 1.2em;
  color: #ffffff;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 991px) {
  /*-- Contadores de Informação --*/
  .data-numbers__container {
    gap: 0 50px;
  }
  .data-numbers__container .number-box {
    gap: 10px 0;
  }
  .data-numbers__container .number-box .number span.count {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  /*-- Contadores de Informação --*/
  .data-numbers {
    margin-top: 70px;
    padding: 30px 20px;
  }
  .data-numbers__container {
    gap: 0 35px;
  }
  .data-numbers__container .number-box {
    gap: 8px 0;
  }
  .data-numbers__container .number-box .number span.count {
    font-size: 55px;
  }
}
@media screen and (max-width: 575px) {
  /*-- Contadores de Informação --*/
  .data-numbers {
    margin-top: 60px;
    padding: 30px 50px;
  }
  .data-numbers__container {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .data-numbers__container .number-box {
    width: 45%;
  }
}
@media screen and (max-width: 470px) {
  /*-- Contadores de Informação --*/
  .data-numbers {
    margin-top: 50px;
    padding: 30px;
  }
}
.data-numbers {
  margin-top: 0px;
  padding-bottom: 70px;
}
/*----------------------------------*/
/*-- Linha de Icones de Informação--*/
/*----------------------------------*/
/*----------------------------------*/
/*-- Linha de Icones de Informação--*/
/*----------------------------------*/
section.info-items {
  background: #345e84;
}
section.info-items .line-icons-data {
  padding: 55px 20px;
  background: #345e84;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 0 30px;
}
section.info-items .line-icons-data__item {
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 290px;
  background: #ffffff;
  height: 260px;
  transition: 0.3s;
}
section.info-items .line-icons-data__item img {
  width: 70px;
  height: auto;
  object-fit: contain;
}
section.info-items .line-icons-data__item h3 {
  font-size: 20px;
  line-height: 1.2em;
  text-align: center;
  margin-top: 13px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: normal;
}
section.info-items .line-icons-data__item p {
  font-size: 16px;
  line-height: 1.4em;
  color: #333;
  margin-top: 10px;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}
section.info-items .line-icons-data__item:hover {
  transition: 0.3s;
  transform: scale(1.05);
}
@media screen and (max-width: 1199px) {
  /*-- Linha de Icones de Informação--*/
  section.info-items .line-icons-data__item {
    padding: 25px 20px 20px 20px;
    max-width: 275px;
    height: 245px;
  }
  section.info-items .line-icons-data__item img {
    width: 66px;
  }
  section.info-items .line-icons-data__item h3 {
    font-size: 19px;
    margin-top: 11px;
  }
  section.info-items .line-icons-data__item p {
    margin-top: 8px;
  }
}
@media screen and (max-width: 991px) {
  /*-- Linha de Icones de Informação--*/
  section.info-items .line-icons-data {
    justify-content: center;
    gap: 25px 30px;
    flex-wrap: wrap;
  }
  section.info-items .line-icons-data__item {
    padding: 22px 17px 17px 17px;
  }
  section.info-items .line-icons-data__item img {
    width: 60px;
  }
  section.info-items .line-icons-data__item p {
    font-size: 16px;
    line-height: 1.3em;
  }
}
@media screen and (max-width: 767px) {
  /*-- Linha de Icones de Informação--*/
  section.info-items .line-icons-data {
    gap: 21px 26px;
  }
  section.info-items .line-icons-data__item {
    padding: 20px 15px 15px 15px;
    max-width: 255px;
    height: 235px;
  }
}
@media screen and (max-width: 1199px) {
  /*-- Artigos em Zig Zag --*/
  section.zig-zag-articles .container-zz-articles__item .caption {
    padding: 32px 30px 20px 30px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .title {
    margin-bottom: 16px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .title h3 {
    font-size: 30px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .text p {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  /*-- Texto apresentação Metallyne --*/
  section.metallyne-apresentation {
    margin-top: 32px;
    margin-bottom: 45px;
    padding: 0px 20px;
  }
  section.metallyne-apresentation .title .bar {
    width: 22px;
  }
  section.metallyne-apresentation .title h2 {
    font-size: 28px;
  }
  section.metallyne-apresentation .text {
    max-width: 700px;
  }
  section.metallyne-apresentation .text p {
    font-size: 18px;
    line-height: 1.4em;
  }
  /*-- Artigos em Zig Zag --*/
  section.zig-zag-articles .container-zz-articles__item .image {
    width: 45%;
  }
  section.zig-zag-articles .container-zz-articles__item .caption {
    width: 55%;
    padding: 25px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .title {
    margin-bottom: 12px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .title h3 {
    font-size: 28px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .text p {
    font-size: 17px;
    line-height: 1.3em;
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 767px) {
  /*-- Texto apresentação Metallyne --*/
  section.metallyne-apresentation .title {
    margin-bottom: 14px;
  }
  section.metallyne-apresentation .title h2 {
    font-size: 26px;
  }
  section.metallyne-apresentation .text p {
    font-size: 17px;
  }
  /*-- Artigos em Zig Zag --*/
  section.zig-zag-articles .container-zz-articles__item {
    flex-direction: column;
    padding-bottom: 40px;
  }
  section.zig-zag-articles .container-zz-articles__item .image {
    width: 100%;
    height: 300px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption {
    width: 100%;
  }
  section.zig-zag-articles .container-zz-articles__item:nth-of-type(2n) {
    flex-direction: column;
  }
  /*-- Contadores de Informação --*/
  .data-numbers {
    margin-top: 40px;
  }
}
@media screen and (max-width: 575px) {
  /*-- Texto apresentação Metallyne --*/
  section.metallyne-apresentation {
    margin-top: 25px;
    margin-bottom: 38px;
  }
  section.metallyne-apresentation .title {
    margin-bottom: 10px;
    gap: 0 8px;
  }
  section.metallyne-apresentation .title h2 {
    font-size: 24px;
  }
  section.metallyne-apresentation .text {
    max-width: 100%;
  }
  section.metallyne-apresentation .text p {
    font-size: 16px;
    text-align: justify;
  }
  /*-- Artigos em Zig Zag --*/
  section.zig-zag-articles .container-zz-articles__item {
    padding-bottom: 28px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .title h3 {
    font-size: 26px;
  }
  section.zig-zag-articles .container-zz-articles__item .caption .text p {
    font-size: 16px;
  }
  /*-- Contadores de Informação --*/
  .data-numbers {
    margin-top: 32px;
  }
}
