@charset "UTF-8";
/* Components */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::after, *::before {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-weight: 400;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.content {
  flex: 1;
}

a,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

@font-face {
  font-family: Poppins-Regular;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: gilroy-black;
  src: url("../fonts/gilroy-black.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: gilroy-regular;
  src: url("../fonts/gilroy-regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Gilroy-Medium;
  src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-display: swap;
}
.button-primary-1 {
  padding: 14px 2rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1C2833;
  color: #FFFFFF;
  font-size: 14px;
  font-family: "gilroy-black", sans-serif;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: 0.3s all;
  letter-spacing: 1px;
}
.button-primary-1:hover {
  border: 1px solid #9AB5CD;
  color: #9AB5CD;
}

/* Nav Bar
  --------------------------------------------- */
.navbar {
  background-color: transparent;
  padding: 1rem 0;
  border: none;
  z-index: 999;
  z-index: 999;
  display: flex;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.4s all;
}
.navbar .navbar-toggler {
  border: 0;
  padding: 3px 6px 2px 6px;
  background-color: #1C2833;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}
.navbar .navbar-toggler .ph-list {
  font-size: 1.85rem;
  color: #FFFFFF;
}
.navbar .navbar-toggler-icon {
  border: 0;
}

.navbar-scrolled {
  background-color: #1A1A1A;
  padding: 1rem 0 1rem 0;
}

.navbar-nav {
  gap: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding-right: 3rem;
}
.navbar-nav .nav-link {
  font-size: 1rem;
  color: #FFFFFF;
  font-family: "Gilroy-Medium", sans-serif;
}
.navbar-nav .nav-link:hover {
  font-family: "gilroy-black", sans-serif;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0;
}

.active .nav-link {
  color: #FFFFFF;
  font-family: "gilroy-black", sans-serif;
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .navbar-nav {
    gap: 1rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar-nav {
    gap: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .button-primary-1 {
    display: none;
  }
}
.modal-content {
  background-color: #1C2833;
  padding: 10px 1rem 1rem 1rem;
  border-radius: 15px;
}
.modal-content .wpcf7-not-valid-tip {
  color: #dc3232 !important;
  font-size: 14px !important;
  font-family: "gilroy-regular", sans-serif;
}
.modal-content .wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0 0;
  padding: 0;
  border: 0;
}
.modal-content .wpcf7 form.invalid,
.modal-content .wpcf7 form.sent,
.modal-content .wpcf7 form.unaccepted,
.modal-content .wpcf7 form.failed,
.modal-content .wpcf7 form.payment-required,
.modal-content .wpcf7 form.aborted,
.modal-content .wpcf7 form.spam {
  font-family: "gilroy-regular", sans-serif;
  font-size: 1rem;
}
.modal-content .wpcf7 form.invalid,
.modal-content .wpcf7 form.failed {
  color: #de3333;
}
.modal-content .wpcf7 form.sent {
  color: #389d18;
}
.modal-content .modal-header {
  font-size: 1.125rem;
  color: #FFFFFF;
  font-family: "gilroy-black", sans-serif;
  border: 0;
}
.modal-content .modal-header .btn-close {
  background-color: #FFFFFF;
}
.modal-content .modal-body {
  display: grid;
  gap: 1rem;
}
.modal-content .modal-body .form-label {
  font-size: 1rem;
  color: #FFFFFF;
  font-family: "Gilroy-Medium", sans-serif;
}
.modal-content .modal-body .form-control {
  font-size: 1rem;
  color: #1A1A1A;
  font-family: "Gilroy-Medium", sans-serif;
}
.modal-content .modal-body #form-area {
  resize: none;
}
.modal-content .modal-body-2 {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 2rem;
  margin: 2rem 0;
}
.modal-content .modal-body-2 a {
  font-size: 14px;
  color: #1C2833;
  font-family: "gilroy-black", sans-serif;
  background-color: #5A5B5D;
  width: 18rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.3s all;
}
.modal-content .modal-body-2 a:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
  transform: scale(1.05);
}
.modal-content .modal-footer {
  justify-content: center;
  border: 0;
}
.modal-content .modal-footer .button {
  font-size: 14px;
  color: #1C2833;
  font-family: "gilroy-black", sans-serif;
  background-color: #9AB5CD;
  width: 7.4rem;
  height: 2.114rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.3s all;
  border: 0;
}
.modal-content .modal-footer .button:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.offcanvas.offcanvas-end {
  width: 250px;
}

.offcanvas-header {
  background-color: #1C2833;
}
.offcanvas-header .offcanvas-logo img {
  width: 100%;
  height: 28px;
}
.offcanvas-header .btn-close {
  border: 0;
  box-shadow: 0 0 0 0;
  background-color: #FFFFFF;
}

.offcanvas-body {
  padding: 12px 1rem 0 1rem;
}
.offcanvas-body ul {
  padding-left: 5px;
}
.offcanvas-body .active .nav-link {
  color: #1C2833;
  font-family: "gilroy-black", sans-serif;
}
.offcanvas-body .nav-offcanvas {
  list-style: none;
  float: left;
}
.offcanvas-body .nav-offcanvas li {
  padding: 10px 0;
}
.offcanvas-body .nav-offcanvas li a {
  font-size: 14px;
  color: #1A1A1A;
  font-family: "Gilroy-Medium", sans-serif;
}

.page {
  background-color: #1A1A1A;
  height: 6rem;
}

.pagina-nao-encontrada {
  display: flex;
  align-items: center;
  padding: 8rem 0;
}
.pagina-nao-encontrada h1 {
  font-size: 3rem;
  color: #1A1A1A;
  font-family: "gilroy-black", sans-serif;
}
.pagina-nao-encontrada p {
  font-size: 1rem;
  color: #1A1A1A;
  font-family: "Gilroy-Medium", sans-serif;
}

/* Footer
  --------------------------------------------- */
.footer {
  background-color: #1A1A1A;
  width: 100%;
  height: auto;
  padding: 4rem 0 1rem 0;
  display: flex;
  align-items: center;
  position: relative;
}
.footer .box-text p {
  font-size: 1rem;
  color: #5A5B5D;
  font-family: "Poppins-Regular", sans-serif;
  white-space: pre-line;
  line-height: 180%;
  margin-top: -4px;
}
.footer .box-address-contact {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #5A5B5D;
  font-family: "Poppins-Regular", sans-serif;
}
.footer .box-address-contact h1 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-family: "Poppins-SemiBold", sans-serif;
}
.footer .box-address-contact a {
  line-height: 180%;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  color: #5A5B5D;
  transition: 0.3s all;
}
.footer .box-address-contact a:hover {
  color: #9AB5CD;
}
.footer .copyright {
  font-size: 1rem;
  color: #5A5B5D;
  font-family: "Poppins-Regular", sans-serif;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #5A5B5D;
  width: 98%;
  margin: 2rem auto;
  padding: 3rem 0 0 0;
}
.footer .copyright a {
  color: #5A5B5D;
  transition: 0.3s all;
}
.footer .copyright a:hover {
  color: #9AB5CD;
}
.footer .button-flutuante {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 20px;
  right: 10px;
  filter: drop-shadow(0 0px 2px rgba(0, 0, 0, 0.4));
  z-index: 99999999;
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .footer .box-text p {
    font-size: 14.5px;
  }
  .footer .box-address-contact,
  .footer .copyright {
    font-size: 14.5px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .box-address-contact {
    margin-top: 1.5rem;
  }
  .footer .copyright {
    display: grid;
    gap: 1rem;
    width: 95%;
  }
}
@media only screen and (max-width: 575px) {
  .footer .box-text p {
    font-size: 15px;
    white-space: unset;
    margin-top: 14px;
  }
  .footer .box-address-contact {
    font-size: 15px;
  }
  .footer .copyright {
    white-space: pre-line;
    margin-top: 2rem;
    padding-top: 1rem;
    line-height: 150%;
    gap: 2.5rem;
  }
  .footer .copyright a {
    white-space: initial;
    font-size: 15px;
  }
}
/* Home */
.header {
  width: 100%;
  height: 100vh;
  background: url(https://grupoviaforte.com.br/wp-content/uploads/2024/09/bg-header.jpg) no-repeat center;
  background-size: cover;
  background-position: 50% 0%;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .header {
    background-position: 0%;
  }
}
@media only screen and (max-width: 425px) {
  .header {
    background-position: 25%;
  }
}
.hero {
  width: 100%;
  height: auto;
  z-index: 9;
  display: flex;
  align-items: center;
  height: 85%;
}
.hero .box-text h1 {
  font-size: 3.6rem;
  font-family: "gilroy-black", sans-serif;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .hero {
    height: 100%;
  }
  .hero .box-text h1 {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero .box-text h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero .box-text h1 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 425px) {
  .hero .box-text h1 {
    font-size: 10.5vw;
  }
}
/* Info
  --------------------------------------------- */
.cards-info-1 {
  width: 100%;
  height: auto;
  position: relative;
  padding: 3rem 0;
  z-index: 9;
}
.cards-info-1 .box-text {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
.cards-info-1 .box-text .box-card {
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  padding: 5rem 2rem 3rem 3rem;
  box-shadow: 0 0 31px 0 rgba(0, 0, 0, 0.05);
  transition: 0.5s all;
}
.cards-info-1 .box-text .box-card:hover {
  background-color: #9AB5CD;
}
.cards-info-1 .box-text .box-card:hover p {
  color: #FFFFFF;
}
.cards-info-1 .box-text .box-card h1 {
  font-size: 1.5rem;
  white-space: pre-line;
  margin-top: -2rem;
  font-family: "gilroy-black", sans-serif;
  color: #1C2833;
}
.cards-info-1 .box-text .box-card p {
  font-size: 1.125rem;
  white-space: pre-line;
  margin-top: -1.5rem;
  font-family: "gilroy-regular", sans-serif;
  color: #AFB1B5;
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .cards-info-1 .box-text {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .cards-info-1 .box-text .box-card {
    height: 22rem;
  }
  .cards-info-1 .box-text .box-card p {
    white-space: unset;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .cards-info-1 .box-text {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .cards-info-1 .box-text .box-card {
    height: 22.5rem;
    padding: 4rem 2rem 2rem 2rem;
  }
  .cards-info-1 .box-text .box-card h1 {
    font-size: 1.5rem;
  }
  .cards-info-1 .box-text .box-card p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 991px) {
  .cards-info-1 .box-text {
    row-gap: 3rem;
    flex-wrap: wrap;
  }
  .cards-info-1 .box-text .box-card {
    padding: 5rem 3rem 2rem 3rem;
    height: auto;
  }
  .cards-info-1 .box-text .box-card h1 {
    font-size: 1.5rem;
  }
  .cards-info-1 .box-text .box-card p {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 425px) {
  .cards-info-1 .box-text .box-card {
    padding: 4rem 1.5rem 2rem 2rem;
  }
  .cards-info-1 .box-text .box-card h1 {
    font-size: 1.5rem;
  }
}
/* Localização
  --------------------------------------------- */
.onde-estamos {
  width: 100%;
  height: auto;
  position: relative;
  padding: 7rem 0;
  z-index: 9;
  background-color: #1C2833;
}
.onde-estamos .box-text h1 {
  font-size: 3rem;
  font-family: "gilroy-black", sans-serif;
  color: #9AB5CD;
  text-align: center;
  margin-bottom: 2rem;
}
.onde-estamos .box-text .map {
  width: 100%;
  height: 663px;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .onde-estamos .box-text h1 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 568px) {
  .onde-estamos {
    padding: 5rem 0 7rem 0;
  }
  .onde-estamos .box-text h1 {
    font-size: 2.5rem;
  }
  .onde-estamos .box-text .map {
    width: 100%;
    height: 600px;
  }
}
@media only screen and (max-width: 425px) {
  .onde-estamos .box-text h1 {
    font-size: 2.5rem;
  }
  .onde-estamos .box-text .map {
    width: 100%;
    height: 480px;
  }
}
/* Contato
  --------------------------------------------- */
.entre-contato {
  width: 100%;
  height: auto;
  position: relative;
  padding: 6rem 0;
  z-index: 9;
  background-color: #FFFFFF;
}
.entre-contato .box-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.entre-contato .box-text h1 {
  font-size: 4rem;
  font-family: "gilroy-black", sans-serif;
  color: #1C2833;
  white-space: pre-line;
  margin: -4rem 0 1rem 0;
}
.entre-contato .box-text a {
  width: 17.875rem;
  height: 7rem;
  padding: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1C2833;
  color: #FFFFFF;
  font-size: 1.875rem;
  font-family: "gilroy-black", sans-serif;
  border-radius: 15px;
  transition: 0.3s all;
  line-height: 120%;
}
.entre-contato .box-text a:hover {
  color: #9AB5CD;
  transform: scale(1.05);
}

/* Responsive */
@media only screen and (max-width: 1199px) {
  .entre-contato .box-text {
    gap: 3rem;
  }
  .entre-contato .box-text h1 {
    font-size: 3.5rem;
  }
  .entre-contato .box-text a {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 991px) {
  .entre-contato .box-text {
    display: grid;
    gap: 3rem;
    justify-items: center;
  }
}
@media only screen and (max-width: 568px) {
  .entre-contato .box-text {
    gap: 2.5rem;
  }
  .entre-contato .box-text h1 {
    font-size: 2.8rem;
  }
  .entre-contato .box-text a {
    width: 17rem;
    font-size: 1.5rem;
    line-height: normal;
  }
}
@media only screen and (max-width: 425px) {
  .entre-contato .box-text h1 {
    font-size: 2.5rem;
  }
  .entre-contato .box-text a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 375px) {
  .entre-contato .box-text h1 {
    font-size: 2.5rem;
  }
  .entre-contato .box-text a {
    width: 100%;
    font-size: 1.4rem;
    justify-content: flex-start;
  }
}
/* Nossas Empresas
  --------------------------------------------- */
.nossas-empresas {
  width: 100%;
  height: auto;
  position: relative;
  padding: 6rem 0 11rem 0;
  z-index: 9;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
.nossas-empresas .box-text h1 {
  font-size: 9.5rem;
  font-family: "gilroy-black", sans-serif;
  color: #9AB5CD;
  text-align: center;
  margin-bottom: 3rem;
}
.nossas-empresas .swiper-container .swiper-slide img {
  border-radius: 24px;
  width: 35rem;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.nossas-empresas .swiper-container .swiper-slide .image-container {
  position: relative;
}
.nossas-empresas .swiper-container .swiper-slide .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.nossas-empresas .swiper-container .swiper-slide .image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.nossas-empresas .swiper-container .swiper-slide .box-conteudo {
  position: absolute;
  top: 0;
  z-index: 9;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 1rem 12px 2rem 2rem;
}
.nossas-empresas .swiper-container .swiper-slide .box-conteudo h2 {
  font-size: 2.8rem;
  color: #FFFFFF;
  font-family: "gilroy-black", sans-serif;
  position: relative;
  top: 1rem;
}
.nossas-empresas .swiper-container .swiper-slide .box-conteudo p {
  font-size: 1.12rem;
  color: #FFFFFF;
  line-height: 140%;
  font-family: "gilroy-regular", sans-serif;
  padding-right: 5rem;
  flex: 0.4;
  position: relative;
  top: 1rem;
}
.nossas-empresas .swiper-container .swiper-slide .box-conteudo .button {
  font-size: 14px;
  color: #1C2833;
  font-family: "gilroy-black", sans-serif;
  background-color: #9AB5CD;
  width: 7.4rem;
  height: 2.114rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.5s all;
}
.nossas-empresas .swiper-container .swiper-slide .box-conteudo .button:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .nossas-empresas .box-text h1 {
    font-size: 8.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .nossas-empresas .box-text h1 {
    font-size: 8rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2.5rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 991px) {
  .nossas-empresas .box-text h1 {
    font-size: 7rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .nossas-empresas .box-text h1 {
    font-size: 6rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo p {
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .nossas-empresas {
    padding: 7.5rem 0 9rem 0;
  }
  .nossas-empresas .box-text h1 {
    font-size: 5rem;
  }
  .nossas-empresas .swiper-container {
    width: 100%;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2.2rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo p {
    padding: 0 2rem 0 0;
    margin: 0 0 5rem 0;
    flex: 0;
  }
}
@media only screen and (max-width: 425px) {
  .nossas-empresas {
    padding: 6rem 0 8rem 0;
  }
  .nossas-empresas .box-text h1 {
    font-size: 4rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2rem;
  }
  .nossas-empresas .swiper-container .swiper-slide .box-conteudo p {
    font-size: 1rem;
    margin: 0 0 10vw 0;
  }
}
/* Notícias
  --------------------------------------------- */
.noticias {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0 0 11rem 0;
  z-index: 9;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
.noticias .box-text h1 {
  font-size: 9.5rem;
  font-family: "gilroy-black", sans-serif;
  color: #9AB5CD;
  text-align: center;
  margin-bottom: 3rem;
}
.noticias .swiper-container .swiper-slide img {
  border-radius: 24px;
  width: 35rem;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.noticias .swiper-container .swiper-slide .image-container {
  position: relative;
  transition: 0.5s all;
}
.noticias .swiper-container .swiper-slide .image-container:hover {
  transform: scale(1.05);
}
.noticias .swiper-container .swiper-slide .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.noticias .swiper-container .swiper-slide .image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.noticias .swiper-container .swiper-slide .box-conteudo {
  position: absolute;
  top: 0;
  z-index: 9;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 1rem 2.5rem;
}
.noticias .swiper-container .swiper-slide .box-conteudo h2 {
  font-size: 2.8rem;
  color: #FFFFFF;
  font-family: "gilroy-black", sans-serif;
  position: relative;
  top: -3.5rem;
}
.noticias .swiper-container .swiper-slide .box-conteudo p {
  font-size: 1.125rem;
  color: #FFFFFF;
  line-height: 150%;
  font-family: "gilroy-regular", sans-serif;
  padding-right: 2rem;
  position: relative;
  top: -3.5rem;
}

/* Responsive */
@media only screen and (max-width: 1399px) {
  .noticias .box-text h1 {
    font-size: 8.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .noticias .box-text h1 {
    font-size: 8rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2.5rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 991px) {
  .noticias .box-text h1 {
    font-size: 7rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .noticias .box-text h1 {
    font-size: 6rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo p {
    padding-right: 2vw;
  }
}
@media only screen and (max-width: 575px) {
  .noticias {
    padding: 0 0 9rem 0;
  }
  .noticias .box-text h1 {
    font-size: 5rem;
  }
  .noticias .swiper-container {
    width: 100%;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo h2 {
    top: -2.5rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo p {
    top: -2.5rem;
    padding: 0;
    margin: 0;
  }
}
@media only screen and (max-width: 425px) {
  .noticias .box-text h1 {
    font-size: 4rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo {
    padding: 1rem 1rem 1rem 2rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo h2 {
    font-size: 2rem;
    top: -2rem;
  }
  .noticias .swiper-container .swiper-slide .box-conteudo p {
    font-size: 1rem;
    top: -2rem;
  }
}/*# sourceMappingURL=style.css.map */