@charset "utf-8";
/* CSS Document */
/******************/
/******************/
/******************/
/******************/
* {
  margin: 0;
  padding: 0;
}
HTML {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 15px;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
  HTML {
    font-size: 13px;
  }
}
BODY {
  width: 100%;
  min-height: 100%;
  font-family: "Poppins", Helvetica, Arial, "sans-serif";
  font-weight: 400;
  color: #000;
  background-color: #fff;
}
a {
  outline: 0;
  color: inherit;
  cursor: pointer;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
:focus {
  outline-color: transparent;
  outline-style: none;
}
BUTTON:hover {
  text-decoration: none;
}
IMG {
  border: none;
}
FIELDSET {
  border: none;
  border-color: transparent;
}
*:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}
INPUT::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  text-transform: uppercase;
}
INPUT::-moz-placeholder { /* Firefox 19+ */
  text-transform: uppercase;
}
INPUT:-ms-input-placeholder { /* IE 10+ */
  text-transform: uppercase;
}
INPUT:-moz-placeholder { /* Firefox 18- */
  text-transform: uppercase;
}
TEXTAREA::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  text-transform: uppercase;
}
TEXTAREA::-moz-placeholder { /* Firefox 19+ */
  text-transform: uppercase;
}
TEXTAREA:-ms-input-placeholder { /* IE 10+ */
  text-transform: uppercase;
}
TEXTAREA:-moz-placeholder { /* Firefox 18- */
  text-transform: uppercase;
}
/******************/
/******************/
/**********************/
@media screen and (max-width: 1200px) {}
/* TABLETS */
@media screen and (max-width: 970px) {}
/* SMARTPHONES */
@media screen and (max-width: 767px) {}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.mobile_only {
  display: none !important;
}
.desk_only {
  display: block !important;
}
.mobile_only-f {
  display: none !important;
}
.desk_only-f {
  display: flex !important;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
  .mobile_only {
    display: block !important;
  }
  .desk_only {
    display: none !important;
  }
  .mobile_only-f {
    display: flex !important;
  }
  .desk_only-f {
    display: none !important;
  }
}
.main {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
}
.img_cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.img_contain {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.img_res {
  width: 100%;
  height: auto;
}
.no_margin {
  margin: 0% !important;
}
/************************/
/************************/
section {
  width: 100%;
  height: auto;
  position: relative;
}
.block {
  width: 100%;
  height: auto;
  position: relative;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.row_table {
  display: flex;
  flex-wrap: nowrap;
}
.block-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.block_90 {
  width: 90%;
  margin-left: 5%;
}
.block_95 {
  width: 95%;
  margin-left: 2.5%;
}
.block_80 {
  width: 80%;
  margin-left: 10%;
}
.full_height {
  min-height: 100vh;
}
.wraper {
  width: calc(100% - 30px);
  max-width: calc(1200px - 30px);
  padding: 0 15px;
  margin: 0 auto;
}
.block_row {
  width: 100%;
  height: auto;
  position: relative;
}
.block_row::after {
  content: "";
  clear: both;
  display: table;
}
.block_col {
  position: relative;
  float: left;
  min-height: 20px;
}
.espaco_80 {
  padding: 40px 0;
}
.block_75 {
  width: 75%;
}
.block_66 {
  width: 66.66%;
}
.block_50 {
  width: 50%;
}
.block_33 {
  width: 33.33%;
}
.block_25 {
  width: 25%;
}
/* TABLETS */
@media screen and (max-width: 970px) {
  .block_75 {
    width: 66.66%;
  }
  .block_66 {
    width: 50%;
  }
  .block_25 {
    width: 33.33%;
  }
  .block_50.breackTablet {
    width: 100%;
  }
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
  .block_80 {
    width: 100%;
    margin-left: 0;
  }
  .block_95 {
    width: 100%;
    margin-left: 0;
  }
  .block_90 {
    width: 100%;
    margin-left: 0;
  }
  .block_75 {
    width: 100%;
  }
  .block_66 {
    width: 100%;
  }
  .block_50 {
    width: 100%;
  }
  .block_33 {
    width: 100%;
  }
  .block_25 {
    width: 50%;
  }
}
/* SMARTPHONES */
@media screen and (max-width: 467px) {
  .block_25 {
    width: 100%;
  }
}
.flex {
  display: flex;
}
/***/
.flex-hl-left {
  justify-content: flex-start;
}
.flex-hl-center {
  justify-content: center;
}
.flex-hl-right {
  justify-content: flex-end;
}
.flex-hl-space {
  justify-content: space-between;
}
.flex-hl-space-eq {
  justify-content: space-evenly;
}
/***/
.flex-vl-top {
  align-items: flex-start;
}
.flex-vl-center {
  align-items: center;
}
.flex-vl-bottom {
  align-items: flex-end;
}
.flex-vl-stretch {
  align-items: stretch;
}
/***/
/***/
.flex-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.flex-grid-eq {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.flex-grid::after {
  content: "";
  flex: auto;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
  .flex {
    flex-wrap: wrap;
  }
}
/***********************/
/***********************/
.ba-mgn-100-tp {
  margin-top: 100px;
}
.ba-mgn-80-tp {
  margin-top: 80px;
}
.ba-mgn-801-tp {
  margin-top: 80px;
}
.ba-mgn-60-tp {
  margin-top: 60px;
}
.ba-mgn-40-tp {
  margin-top: 40px;
}
/*****/
.ba-mgn-100-bt {
  margin-bottom: 100px;
}
.ba-mgn-80-bt {
  margin-bottom: 80px;
}
.ba-mgn-60-bt {
  margin-bottom: 60px;
}
.ba-mgn-40-bt {
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .ba-mgn-100-tp {
    margin-top: 90px;
  }
  .ba-mgn-80-tp {
    margin-top: 70px;
  }
  .ba-mgn-60-tp {
    margin-top: 50px;
  }
  .ba-mgn-40-tp {
    margin-top: 30px;
  }
  /*****/
  .ba-mgn-100-bt {
    margin-bottom: 90px;
  }
  .ba-mgn-80-bt {
    margin-bottom: 70px;
  }
  .ba-mgn-60-bt {
    margin-bottom: 50px;
  }
  .ba-mgn-40-bt {
    margin-bottom: 30px;
  }
}
/* TABLETS */
@media screen and (max-width: 970px) {
  .ba-mgn-100-tp {
    margin-top: 80px;
  }
  .ba-mgn-80-tp {
    margin-top: 60px;
  }
  .ba-mgn-60-tp {
    margin-top: 40px;
  }
  .ba-mgn-40-tp {
    margin-top: 20px;
  }
  /*****/
  .ba-mgn-100-bt {
    margin-bottom: 80px;
  }
  .ba-mgn-80-bt {
    margin-bottom: 60px;
  }
  .ba-mgn-60-bt {
    margin-bottom: 40px;
  }
  .ba-mgn-40-bt {
    margin-bottom: 20px;
  }
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
  .ba-mgn-100-tp {
    margin-top: 60px;
  }
  .ba-mgn-80-tp {
    margin-top: 40px;
  }
  .ba-mgn-801-tp {
    margin-top: 60px;
  }
  .ba-mgn-60-tp {
    margin-top: 25px;
  }
  .ba-mgn-40-tp {
    margin-top: 10px;
  }
  /*****/
  .ba-mgn-100-bt {
    margin-bottom: 60px;
  }
  .ba-mgn-80-bt {
    margin-bottom: 40px;
  }
  .ba-mgn-60-bt {
    margin-bottom: 25px;
  }
  .ba-mgn-40-bt {
    margin-bottom: 10px;
  }
}
/************************/
/************************/
/************************/
header {
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-main {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
/****/
.logo-menu {
  display: flex;
  align-items: center;
}
/****/
.top-logo {
  padding-right: 4rem;
}
.top-logo {
  position: relative;
  width: 116px;
  height: 40px;
  margin-left: 30px;
}
.top-logo h1 a {
  position: relative;
  display: block;
  float: left;
  width: 116px;
  height: 40px;
  overflow: hidden;
  text-indent: -1500px;
  background-image: url("/assets/images/logo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
/****/
.navbar {
  position: relative;
  z-index: 100;
}
.menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu > li {
  position: relative;
}
.menu > li > a {
  color: white;
  padding: 20px 15px;
  display: block;
  text-decoration: none;
  font-size: 1.0rem;
}
.menu > li > a .fa-angle-right {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.menu > li:hover .mega-menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu > li.active > a {
  color: #FECA16;
}
.mega-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.mega-menu .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  min-height: 200px;
}
.column {
  flex: 1;
}
.column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #005aa7;
}
.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.column ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 5px 0;
}
.column ul li a:hover {
  color: #005aa7;
}
.has-mega-menu {
  position: static;
}
.mega-column {
  flex: 1;
  padding: 0 20px;
  border-left: 1px solid #ddd;
}
.mega-column:first-child {
  border-left: none;
  width: 25% !important;
  max-width: 25%;
}
.mega-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #1a4e8a;
  font-weight: bold;
}
.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-column ul li {
  margin-bottom: 6px;
}
.mega-column ul li a {
  color: #333;
  text-decoration: none;
}
.mega-column ul li a:hover {
  text-decoration: underline;
}
/* COLUNA INICIAL */
.mega-column.intro h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.mega-column.intro p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.mega-column.intro a {
  color: #1a4e8a;
  font-weight: bold;
  text-decoration: none;
}
.menu > li:hover > a .fa-angle-right {
  transform: rotate(90deg);
}
/****/
.top-search {
  position: relative;
}
.top-search INPUT {
  width: 250px;
  height: 20px;
  background: none;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 3px 15px 3px 7px;
  font-size: 13px;
  color: #ffffff;
}
.top-search INPUT::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  text-transform: capitalize;
  font-size: 13px;
}
.search-button {
  position: absolute;
  right: 15px;
  top: 3px;
  color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
/****/
.menu-toggle {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 30px;
  color: #ffffff;
  opacity: 0.8;
}
.menu-mobile-main {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100vh - 70px);
  left: 0;
  top: 70px;
  z-index: 1100;
  background-color: rgba(255, 255, 255, 0.9);
}
.menu-mobile-main UL {
  list-style-type: none;
}
.menu-mobile-main UL.menu-mobile {
  padding-left: 30px;
  padding-top: 30px;
}
.menu-mobile-main UL UL {
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.menu-mobile-main UL LI I {
  font-size: 0.9rem;
}
.menu-mobile-main UL LI.open .fa-angle-right {
  transform: rotate(90deg);
}
.menu-mobile-main UL.menu-mobile LI {
  font-size: 1.4rem;
  color: #1a4e8a;
  margin-bottom: 0.5rem;
}
.menu-mobile UL {
  display: none;
}
.menu-mobile UL LI, .menu-mobile UL P {
  font-size: 1.0rem !important;
  margin-bottom: 0.3rem !important;
}
HEADER.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  header {
    background-color: #aaa;
    background-color: rgba(3, 60, 135, 0.2);
  }
}
/************************/
/************************/
footer {}
.footer {
  background-color: #004495;
  color: #ffffff;
  padding: 40px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo-section {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.footer-logo {
  width: 250px;
  margin-bottom: 10px;
}
.footer-contacts {
  width: 100%;
  margin-top: 20px;
}
.contact-block {
  margin-bottom: 20px;
}
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  margin-right: 10px;
  font-size: 22px;
  background-color: #ffffff;
  color: #0b2e6d;
  border-radius: 50%;
  padding: 8px;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.social-icons a:hover {
  background-color: #f6c500;
  color: #0b2e6d;
}
.footer-links-section {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.footer-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  font-style: italic;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.footer-column ul li {
  margin-bottom: 6px;
}
.footer-button {
  margin-top: 30px;
  width: 100%;
}
.footer-button a {
  display: inline-block;
  background-color: #1c1c5d;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 40px;
  text-align: center;
  border-bottom: 5px solid #f6c500;
  text-decoration: none;
  transition: background 0.3s;
}
.footer-button a:hover {
  background-color: #2e2e7d;
}
.footer-bottom {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
}
.footer-bottom p {
  margin: 5px 0;
}
.footer-bottom i {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-logo-section {
    width: 100%;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-links-section {
    width: 100%;
  }
}
/*****************/
/*****************/
/*****************/
.titulo {
  padding: 4rem 0;
  background-color: #f5f5f5;
}
.titulo H2 {
  font-size: 5rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
.titulo H3 {
  font-size: 1.3rem;
  font-weight: 300;
  padding-bottom: 0.8rem;
}
.button-yellow {
    display: inline-block; /* ← alterado */
  padding: 1rem 7rem;
  border-color: transparent;
  border: none;
  color: #023F86;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, #FFB347 0%, #FECA16 100%);
  border-radius: 28px;
  border-top-left-radius: 0;
  font-weight: 600;
  font-size: 1.2rem;
}
.button-yellow::after {
  content: "→";
  margin-left: 5px;
}
.button-yellow.no-icon::after {
    content: "";
    margin-left: 0;
}
@media screen and (max-width: 767px) {
  .titulo H2 {
    font-size: 4rem;
  }
  .button-yellow {
    padding: 1rem 5rem;
    font-size: 1rem;
  }
}
/***********************/
/***********************/
.loading {
  width: 100%;
  height: auto;
  min-height: 250px;
  background-repeat: no-repeat;
  background-image: url(images/loading.gif);
  background-position: center center;
}
/************************/
/************************/
/************************/
/************************/
/************************/
/* HOME */
/***/
.home-title {
  padding-bottom: 3rem;
}
.home-title h3 {
  font-size: 2.1rem;
  text-align: center;
}
/***/
.home-banner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.slider-main {
  width: 100%;
  height: auto;
}
.slider-it {
  width: 100%;
  height: auto;
}
.slider-it-cont {
  width: 100%;
  height: 708px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  display: flex;
  align-items: end;
}
.button-wraper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}
.button-white {
    margin: 0 auto;
    background: linear-gradient(90deg, #ffffff 0%, #efefef 100%);
}
.button-center{
    margin: 0 auto;
}
/****/
.home-second {
  width: 100%;
  height: auto;
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #E7F6FF;
}
@media screen and (max-width: 767px) {
  .home-title h3 {
    font-size: 1.9rem;
  }
  .slider-it-cont {
    height: 480px;
  }
}
/**/
.slider-s-it {
  width: 150px;
  height: 222px;
}
.slider-s-it-cont {
  position: relative;
  width: 150px;
  height: 208px;
  display: flex;
  align-items: flex-end;
    margin: 0 auto;
}
/****/
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 22px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
}

.slick-arrow::before {
    content: '';
    display: block;
    width: 15px; /* Tamanho da seta */
    height: 15px;
    border-top: 4px solid rgba(0, 0, 0, 0.5);
    border-right: 4px solid rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease; /* Transição suave para o hover */
}

.slick-prev {
    left: 0px;
}

.slick-prev::before {
    transform: rotate(-135deg);
}

.slick-next {
    right: 0px;
}

.slick-next::before {
    transform: rotate(45deg);
}

.slick-arrow:hover::before {
    border-color: rgba(0, 0, 0, 1);
}
/****/
.home-prod-it {
  width: 150px;
  height: 148px;
  border-radius: 28px;
  border-top-left-radius: 0;
  background-color: #004495;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.home-prod-it-img {
  position: absolute;
  bottom: 52px;
  right: 0;
  width: 150px;
  height: calc(155px - 38px + 2px);
  border-radius: 28px;
  border-top-left-radius: 0;
  z-index: 90;
    background-color: #D8D8D8;
}
.home-prod-it-img-cont {
  position: absolute;
  width: 150px;
  height: 170px;
  bottom: 0;
  left: 0;
}
.home-prod-it-img-cont IMG {
  width: 150px;
  height: 170px;
}
.home-prod-it-text {
  position: relative;
  width: 150px;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 50px;
}
.home-prod-it-text P {
  font-size: 0.9rem;
  color: #ffffff;
  text-align: center;
  line-height: 14px;
  margin-left: 10px;
  width: calc(100% - 10px);
}
.p-color-1 .home-prod-it-img {
  background-color: #FF6F6F;
}
.p-color-2 .home-prod-it-img {
  background-color: #005FCF;
}
.p-color-3 .home-prod-it-img {
  background-color: #1981AE;
}
.p-color-4 .home-prod-it-img {
  background-color: #A76AB3;
}
.p-color-5 .home-prod-it-img {
  background-color: #3BAEE0;
}
.p-color-6 .home-prod-it-img {
  background-color: #428580;
}
.p-color-7 .home-prod-it-img {
  background-color: #FF6F6F;
}
.p-color-8 .home-prod-it-img {
  background-color: #FF6F6F;
}
/****/
.home-minis {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 6rem 0 6rem 0;
}
.home-mini-main {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
}
.home-mini-it {
  width: auto;
  height: auto;
  display: block;
  position: relative;
  align-self: center;
}
.home-mini-main IMG {
  display: block;
}
@media screen and (max-width: 767px) {
  .home-mini-main {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
  }
}
/***/
.home-banner-2 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 3rem 0 3rem 0;
}
.nossas-linhas{
    position: relative;
    width: 100%;
    height: auto;
}
.home-banner-2-cont {
    width: 100%;
    overflow: hidden;
    height: auto;
    border-radius: 50px;
    border-top-left-radius: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 87/50;
}
.home-banner-2-cont-1{
    background-image: url('/assets/images/home/linhas/hero-1.webp');
}
.home-banner-2-cont-2{
    background-image: url('/assets/images/home/linhas/hero-2.webp');
}
.home-banner-2-cont-3{
    background-image: url('/assets/images/home/linhas/hero-3.webp');
}
.home-banner-2-cont-4{
    background-image: url('/assets/images/home/linhas/hero-4.webp');
}
/*
.home-banner-2 a {
  position: relative;
  z-index: 40;
}
*/
.home-banner-2-layer {
  width: 100%;
  height: 200px;
  position: absolute;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 50;
}
.home-banner-2 H3 {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 2rem;
  left: 0;
  display: block;
  font-size: 2.5rem;
  color: #ffffff;
  z-index: 60;
}
.home-banner-2 A {
  position: absolute;
  left: calc(50% - 150px);
  bottom: 40px;
  z-index: 80;
}

@media screen and (max-width: 767px) {
    .home-banner-2-cont {
        border-radius: 30px;
        border-top-left-radius: 0;
        aspect-ratio: 191/200;
    }
    .home-banner-2 H3 {
        top: 1.5rem;
        font-size: 1.5rem;
    }
    .home-banner-2 A {
        display: none;
    }
    .home-banner-2-cont-1 {
        background-image: url('/assets/images/home/linhas/hero-1-mob.webp');
    }
    .home-banner-2-cont-2 {
        background-image: url('/assets/images/home/linhas/hero-2-mob.webp');
    }
    .home-banner-2-cont-3 {
        background-image: url('/assets/images/home/linhas/hero-3-mob.webp');
    }
    .home-banner-2-cont-4 {
        background-image: url('/assets/images/home/linhas/hero-4-mob.webp');
    }
}
/***/
.home-blog {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 6rem 0 6rem 0;
}
.home-blog-main {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
}
.home-blog-main-slick {
  width: 100%;
  height: auto;
}
.home-blog-it {
  width: 250px;
  padding: 0 0.7rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .home-blog-main {
    grid-template-columns: 1fr 1fr;
  }
}
/***/
.home-about {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 3rem 0 5rem 0;
}
.home-about-main {
  position: relative;
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: 40% 60%;
  column-gap: 80px;
}
.home-about-text {
  padding-top: 4rem;
}
.home-about-text H3 {
  font-size: 3rem;
  padding-bottom: 2rem;
}
.home-about-text P {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
@media screen and (max-width: 767px) {
  .home-about-text {
    padding-top: 0;
  }
  .home-about-main {
    grid-template-columns: 100%;
    row-gap: 80px;
  }
}
/***/
.home-depo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 7rem 0 7rem 0;
}
.home-depo-main {
  position: relative;
  display: grid;
  width: calc(100% - 100px);
  height: auto;
  background-color: #FECA05;
  border-radius: 50px;
  border-top-left-radius: 0;
  padding: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 70px;
}
.home-depo-main-slick {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #FECA05;
  border-radius: 50px;
  border-top-left-radius: 0;
  padding: 50px;
}
.home-depo-it {
  width: 245px;
  height: auto;
  padding: 0 1.5rem;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
  .home-depo {
    padding: 3rem 0 3rem 0;
  }
  .home-depo-main {
    grid-template-columns: 1fr;
  }
}
/************************/
/************************/
/************************/
.ambientes-banner IMG {
  display: block;
    padding-top: 70px;
}
.ambientes-text {
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  background-image: url('/assets//images/ambientes/mask.webp');
  background-color: #004495;
  padding: 5rem 0;
}
.ambientes-text H3 {
  text-align: center;
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2rem;
}
.ambientes-text H3 span {
  color: #FECA05;
}
.ambients-text-contain{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.ambientes-text P {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
    width: 100%;
}
.ambientes-text H6 {
  text-align: center;
  font-size: 1.6rem;
  color: #004495;
  font-weight: 500;
    padding: 0.6rem 1em;
    background-color: #FECA05;
    display: inline-block;
}
/****/
.ambientes-products{
    padding: 4rem 0;
    background-color: #E7F6FF;
}
.ambientes-search h4{
    font-size: 1.5rem;
    color: #1C1B1B;
    text-align: center;
    padding-bottom: 1rem;
}
.ambient-seach-input{
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.ambient-seach-input INPUT{
    width: calc(100% - 4rem);
    border-radius: 30px;
    padding: 1rem 2rem;
    border: none;
    border-color: transparent;
    background-color: #ffffff;

}
.ambient-seach-input INPUT::placeholder {
  color: #00326D;
  opacity: 0.5;
  text-transform: capitalize;
  font-size: 13px;
}
.ambient-seach-input BUTTON{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border: none;
    border-color: transparent;
    background-color: transparent;
  color: #00326D;
}
.ambientes-search{
    padding-bottom: 6rem;
}
.ambientes-list{
    /*width: 800px;*/
    margin: 0 auto;
    position: relative;
    height: auto;
}
.ambientes-list H4{
    font-size: 1.5rem;
    color: #1C1B1B;
    text-align: left;
    padding-bottom: 1rem;
}
.ambientes-list-grid{
    width: 100%;
    display: grid;
    height: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 40px;
}
.ambientes-list-grid .slider-s-it{
    justify-self: center;
}
@media screen and (max-width: 767px) {
.ambientes-list{
    width: 100%;
}
    .ambientes-list-grid{
      grid-template-columns: 1fr 1fr ;
      row-gap: 20px;
    }
    .ambientes-text {
        background-image: none;
    }
}

/************************/
/************************/
.produto-main{
    padding-top: 140px;
    background-color: #004495;
    min-height: 450px;
}
.product-contain{
    width: 100%;
    position: relative;
    display: flex;
}
.product-img{
    width: 45%;
    height: auto;
    margin-right: 30px;
    min-height: 200px;
  background-image: url('/assets/images/produtos/gota-fundo.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    display: flex;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.product-img IMG{
    width: auto;
    height: auto;
    max-width: 350px;
    max-height: 600px;
    margin: 0 auto;
}
.product-info{
    width: calc(55% - 30px);
    height: auto;
}
.product-info h2{
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 400;
}
.product-info p{
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.product-sizes UL{
    list-style-type: none;
    background-color: #ffffff;
    padding: 0.3rem;
    display: inline-block;
  border-radius: 20px;
  border-top-right-radius: 0;
    margin-bottom: 1rem;
}
.product-sizes UL LI{
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0 0.5em;
    font-weight: 600;
    color: #004495;
  border-radius: 20px;
  border-top-right-radius: 0;
    cursor: pointer;
}
.product-sizes UL LI.select{
    background-color: #FECA05;
}

.product-text{
    padding-bottom: 1rem;
}

@media screen and (max-width: 767px) {
    .produto-main{
        padding-top: 80px;
    }
.product-contain{
    flex-wrap: wrap;
}
.product-img{
    width: 100%;
    margin-right: 0px;
    order: 2;
    padding-bottom: 3rem;
    }
.product-info{
    width: 100%;
    order: 1;
    padding-bottom: 3rem;
    }

}
/****/
.produto-modo{
    background-color: #E7F6FF;
    padding: 3rem 0;
}
.modo-content{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.modo-content H3{
    text-align: center;
    padding-bottom: 2rem;
    color: #004495;
    font-weight: 500;
    font-size: 3rem;
}
 .modo-content ol {
   list-style: none;
   counter-reset: item;
 }
 .modo-content li {
   counter-increment: item;
   margin-bottom: 3rem;
     font-size: 1.5rem;
 }
 .modo-content li:before {
   margin-right: 10px;
   content: counter(item);
   text-align: center;
   display: inline-block;
    font-weight: 600;
    color: #004495;
  border-radius: 20px;
  border-top-right-radius: 0;
    background-color: #FECA05;
     padding: 0.3rem 1.1rem;
 }

/***/
.produto-onde{
    background-color: #004495;
    padding: 3rem 0;
}

.onde-content{
    max-width: calc(900px - 12rem);
    margin: 0 auto;
    padding-left: 12rem;
    position: relative;
    background-image: url('/assets/images/produtos/question.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 123px 123px;
}
.onde-content H3{
    color: #ffffff;
    font-size: 4rem;
    font-weight: 500;
    padding-top: 1rem;
}
.onde-content P{
    color: #ffffff;
    font-size: 1.7rem;
    padding-bottom: 1rem;
}
/***/
.produto-blog-cont{
    background-color: #E7F6FF;
}
/***/
.produto-banner{
    padding: 6rem 0 0 0;
    background-color: #E7F6FF;
}
.produto-banner IMG{
    display: block;
}
.produto-banner DIV DIV{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    border-top-right-radius: 0;
}

@media screen and (max-width: 767px) {
    .onde-content {
        background-position: 0 3rem;
        background-size: 30%;
    }
    .onde-content H3 {
        font-size: 2.5rem;
    }
    .onde-content P {
        font-size: 1.3rem;
    }
    .produto-banner DIV DIV{
        border-radius: 30px;
        border-top-right-radius: 0;
    }
}
/************************/
/************************/

.linhas-banner{
    width: 100%;
    height: auto;
    display: block;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: radial-gradient(50% 50% at 50% 50%, #E69C2F 0%, #FECC57 53.85%);
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.linhas-banner-arrow{
    position: absolute;
    bottom: -23px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/assets/images/linhas/line-arrow.svg');
    z-index: 50;

}
.linhas-banner IMG {
    display: block;
}
/***/
.linhas-text{
    width: 100%;
    height: auto;
    padding: 80px 0;
}
.linhas-text-text{
    width: 100%;
    height: auto;
    text-align: center;
    padding-bottom: 80px;
}
.linhas-text-text H3{
    color: #004495;
    font-size: 4rem;
    font-weight: 500;
    padding-top: 1rem;
}
.linhas-text-text P{
    color: #004495;
    font-size: 1.7rem;
    line-height: 2rem;
    max-width: 80%;
    margin: 0 auto;
}
.linhas-text-cont{
    width: 100%;
    height: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    padding-bottom: 60px;
}
.linhas-text-cont-it-empty{
    width: 100%;
    aspect-ratio: 268/397;
}
.linhas-text-cont-it{
    width: 100%;
    aspect-ratio: 268/397;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
}
.linhas-text-cont-it.line-back-1{
    background-image: url('/assets/images/linhas/line-background-1.png');
}
.linhas-text-cont-it.line-back-2{
    background-image: url('/assets/images/linhas/line-background-2.png');
}
.linhas-it-cont{
    width: 100%;
    height: auto;
}
.linhas-it-cont-icon{
    text-align: center;
    display: flex;
    justify-content: center;
    padding-bottom: 0.9rem;
}
.linhas-it-cont-icon IMG{
    max-width: 45%;
}
.linhas-it-cont-text{
    text-align: center;
    display: flex;
    justify-content: center;
}
.linhas-it-cont-text P{
    max-width: 80%;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.7rem;
}
.linhas-text-button{
    width: 100%;
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .linhas-text-cont-it-empty{
        display: none;
    }
    .linhas-text-text H3{
        font-size: 3rem;
        line-height: 3.5rem;
        padding-bottom: 2rem;
    }
    .linhas-text-cont{
        grid-template-columns: 1fr 1fr;
        column-gap: 25px;
        row-gap: 25px;
    }
    .linhas-it-cont-text P{
        font-size: 1rem;
        line-height: 1.3rem;
    }
}
/****/
.linhas-products{
    background-color: #004495;
    padding: 70px 0 120px 0;
}
.linhas-prod-text{
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}
.linhas-prod-text H3{
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
    font-weight: normal;
}
.linhas-prod-ggrid{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 50px;
}
.linhas-prod-it{
    width: 100%;
    position: relative;
    height: auto;
}
.linhas-prod-it-img{
    position: relative;
    /*width: calc(100% - 30px);*/
    /*padding: 15px;*/
    width: 100%;
    border-radius: 30px;
    border-top-left-radius: 0;
    aspect-ratio: 1/1;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.environ .linhas-prod-it-img{
    width: calc(100% - 2px);
    border: 1px solid rgba(0, 68, 149, 0.2);
}
.linhas-prod-it-img IMG{
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.linhas-prod-it-img A{
    display: block;
    position: relative;
    width: 100%;
}
.linhas-prod-it-title{
    width: 100%;
    height: auto;
    padding-top: 1rem;
    position: relative;
}
.linhas-prod-it-title P{
    max-width: 80%;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
}
.environ .linhas-prod-it-title P{
    color: #004495;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .linhas-prod-ggrid{
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 40px;
    }
}
/************************/
/************************/
.historia-header{
    padding-top: 70px;
}
.historia-header-main{
    background-image: url("/assets/images/historia/hero.webp");
}
.historia-header-cont{
    height: 820px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/assets/images/historia/hero-top.webp");
}
.historia-header-cont DIV{
    text-align: center;
}
.historia-header-cont H2{
    font-size: 96px;
    font-weight: 500;
    color: #ffffff;
    line-height: 100px;
}
.historia-header-cont H2 span{
    color: #FECA05;
}
.historia-header-cont H4{
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    line-height: 25px;
    padding-bottom: 2rem;
}
.historia-header-cont BUTTON{
    background-color: transparent;
    border: 1px solid #ffffff;
    padding: 12px 70px;
    border-radius: 28px;
    border-top-right-radius: 0;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    .historia-header-cont{
        height: 420px;
    }
    .historia-header-cont H2{
        font-size: 50px;
        line-height: 60px;
    }
    .historia-header-cont H4{
        font-size: 20px;
        line-height: 25px;
    }

}
/***/
.timeline-header{
    text-align: center;
    padding: 3rem 0;
}
.timeline{
    background-image: url("/assets/images/historia/linha-azul.png");
    background-repeat: repeat-y;
    background-position: center center;
    min-height: 600px;
    position: relative;
}
.timeline-block{
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}
.timeline-block:not(:last-child) {
    padding-bottom: 5rem;
}
.timeline-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-position: center center;
    transform: translate(-50%, -50%);
    background-image: url("/assets/images/historia/historia-gota.png");
    background-repeat: no-repeat;
}
.timeline-icon.timeline-icon-inv {
    transform: translate(-50%, -50%) rotate(180deg);
}
.timeline-left, .timeline-right{
    width: 50%;
    position: relative;
}
.timeline-left{

}
.timeline-img-cont{
    position: relative;
    width: 100%;
    display: flex;
}
.timeline-number{
    position: relative;
    padding-right: 2rem;
}
.timeline-img{

}

.timeline-right{

}
.timeline-right-img .timeline-number{
    padding-left: 2rem;
}
.timeline-right-img .timeline-img{
    padding-left: 2rem;
}
.timeline-text{
    padding: 0 2rem;
}
.timeline-text H5{
    color: #004495;
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    padding-bottom: 2rem;
}
.timeline-text P{
    color: #6D6D6D;
    font-size: 17px;
    font-weight: 400;
    line-height: 21px;
    padding-bottom: 1rem;
    max-width: 70%;
}
.timeline-text UL{
    list-style-type: none;
}
@media screen and (max-width: 767px) {
    .timeline{
        background-image: none;
    }
    .timeline-block{
        flex-wrap: wrap;
    }
    .timeline-left, .timeline-right{
        width: 100%;
        padding-bottom: 30px;
    }
    .timeline-img-cont{
        max-width: 100%;
        overflow: hidden;
    }
    .timeline-icon{
        display: none;
    }
    .timeline-block:not(:last-child) {
        padding-bottom: 0;
    }
    .timeline-text P{
        max-width: 90%;
    }
    .timeline-text{
        padding: 0;
    }
}
/***/
.historia-essencia{
    background-color: #01316c;
    background-image: url("/assets/images/historia/essencia-back.png");
    background-position: center top;
    background-repeat: repeat-x;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 5px solid #FECA05;
}
.essencia-main{
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 40px;
    border-bottom-right-radius: 0;
}
.essencia-cont-a{
    width: 50%;
    background-image: url("/assets/images/historia/essencia.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.essencia-cont-b {
    width: calc(50% - 5px);
    background-color: #004495;
    border-left: 5px solid #FECA05;
}
.essencia-cont-b-cont{
    padding: 50px 30px;
}
.essencia-cont-b-cont h4{
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 2rem;
}
.essencia-cont-b-cont P{
    color: #ffffff;
    font-size: 17px;
    line-height: 21px;
    padding-bottom: 1.5rem;
    max-width: 70%;
}
@media screen and (max-width: 767px) {
    .essencia-main{
        flex-wrap: wrap;
        border-radius: 30px;
        border-bottom-right-radius: 0;
    }
    .essencia-cont-a{
        display: none;
    }
    .essencia-cont-b {
        width: 100%;
        background-color: #004495;
        border-left: none;
    }
    .essencia-cont-b-cont{
        padding: 30px 30px;
    }
}
/***/
.historia-compromisso{
    background-color: #01316c;
    padding-top: 4rem;
    background-image: url("/assets/images/historia/vector.png");
    background-position: right top;
    background-repeat: no-repeat;
    /*background-size: contain;*/
}
.compromisso-main{
}
.compromisso-1{
    position: relative;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    background-image: url("/assets/images/historia/compromisso.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
}
.compromisso-1-cont{
    position: relative;
    background-color: #004495;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    padding: 40px 60px;
    aspect-ratio: 1.2/1;
    display: flex;
    align-items: center;
    max-width: 37%;
}
.compromisso-1-cont h3{
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
}
.compromisso-1-cont h3 span{
    color: #FECA05;
}
.compromisso-2{
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding: 50px 0 150px 0;
}
.compromisso-2-a{
    width: calc(50% - 1rem);
    background-color: #ffffff;
    border-radius: 60px;
    border-bottom-right-radius: 0;
    padding: 40px;
    display: flex;
    align-items: center;
}
.compromisso-2-a H3{
    font-size: 35px;
    line-height: 39px;
    color: #6D6D6D;
    font-weight: 400;
}
.compromisso-2-a H3 span{
    color: #004495;
    font-weight: 600;
}
.compromisso-2-b{
    width: calc(50% - 1rem);
    padding-left: 1rem;
}
.compromisso-2-b UL{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.compromisso-2-b UL LI{
    color: #ffffff;
    text-align: center;;
    width: calc(100% - 30px);
    min-height: 3rem;
    margin-bottom: 1rem;
    background-color: #004495;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 5px 15px;
}
.compromisso-2-b UL LI:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .historia-compromisso{
        background-image: none;
    }
    .compromisso-1{
        position: relative;
        border-radius: 30px;
        border-bottom-right-radius: 0;
        background-image: none;
    }
    .compromisso-1-cont{
        border-radius: 30px;
        border-bottom-right-radius: 0;
        padding: 30px 30px;
        aspect-ratio: 1/1;
        flex-wrap: wrap;
        max-width: 100%;
    }
    .compromisso-1-cont h3{
        font-size: 38px;
        line-height: 48px;
    }
    .compromisso-2{
        flex-wrap: wrap;
        padding: 30px 0 30px 0;
    }
    .compromisso-2-a{
        width: 100%;
        border-radius: 30px;
        border-bottom-right-radius: 0;
        padding: 30px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .compromisso-2-b{
        width: 100%;
        padding-left: 0;
    }
}
/************************/
/************************/
.work-header{
    padding-top: 70px;
}
.work-header-main{
    background-image: url("/assets/images/trabalhe/hero.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0;
}
.word-header-main{
    position: relative;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    /*background-color: rgba(0, 49, 108, 0.75);*/
    background: #00316CD9;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 5rem 0;
    text-align: center;
}

.word-header-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px; /* Espessura da sua borda */
    background: linear-gradient(180deg, #FECA05 0%, rgba(152, 121, 3, 0) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    pointer-events: none; /* Para garantir que o conteúdo interno seja clicável */
}
.work-header-1{
    width: 70%;
    margin: 0 auto;
    border-bottom: 2px solid #FECA05;
    padding-bottom: 1rem;
}
.work-header-1 H2{
    font-size: 50px;
    line-height: 58px;
    color: #ffffff;
    font-weight: 500;
}
.work-header-1 H2 SPAN{
    color: #FECA05;
}
.work-header-2{
    width: 80%;
    margin: 0 auto;
    padding-top: 0.5rem;
}
.work-header-2 P{
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    max-width: 60%;
    margin: 0 auto;
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .word-header-main{
        padding: 3rem 0;
    }
    .work-header-1 H2{
        font-size: 40px;
        line-height: 48px;
    }
    .work-header-2{
        width: 90%;
    }
    .work-header-2 P{
        font-size: 1rem;
        line-height: 1.3rem;
        max-width: 80%;
    }
}
/****/
.work-encontra{
    background-color: #00316C;
    padding: 120px 0;
}
.work-encontra-main{
    display: flex;
    align-items: center;
}
.w-encontra-1{
    width: 50%;
}
.w-encontra-1 H3{
    font-size: 60px;
    line-height: 68px;
    color: #ffffff;
    font-weight: 500;
    border-bottom: 5px solid #FECA05;
    display: inline-block;
    padding-bottom: 1rem;
}
.w-encontra-2{
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}
.w-encontra-it{
    background-color: #ffffff;
    aspect-ratio: 1.2/1;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.w-encontra-it IMG{
    width: 100px;
    height: auto;
}
.w-encontra-it P{
    font-size: 1rem;
    line-height: 1.2rem;
    color: #00316C;
    font-weight: 300;
    padding-top: 1rem;
    width: 80%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .work-encontra-main{
        flex-wrap: wrap;
    }
    .w-encontra-1{
        width: 100%;
    }
    .w-encontra-1 H3{
        font-size: 50px;
        line-height: 58px;
        margin-bottom: 40px;
    }
    .w-encontra-2{
        width: 100%;
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
        row-gap: 15px;
    }
    .w-encontra-it{
        aspect-ratio: 1/1;
        border-radius: 30px;
        border-bottom-right-radius: 0;
    }
    .w-encontra-it IMG{
        width: 70px;
        height: auto;
    }

}
/***/
.work-buscamos{
    background-color: #00316C;
    padding: 120px 0;
    background-image: url("/assets/images/trabalhe/elipse.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.w-buscamos-top{
    padding-bottom: 5rem;
}
.w-buscamos-top H3{
    font-size: 60px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}
.w-buscamos-cont{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}
.w-buscamos-it{
    background-color: #ffffff;
    aspect-ratio: 2/1.2;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.w-buscamos-it IMG{
    width: 100px;
    height: auto;
}
.w-buscamos-it P{
    font-size: 1rem;
    line-height: 1.4rem;
    color: #00316C;
    font-weight: 300;
    padding-top: 1rem;
    width: 70%;
    margin: 0 auto;
}
.w-buscamos-it P STRONG{
    font-weight: 500;
}
@media (max-width: 768px) {
    .w-buscamos-top{
        padding-bottom: 3rem;
    }
    .w-buscamos-top H3{
        font-size: 50px;
    }
    .w-buscamos-cont{
        grid-template-columns: 1fr;
        column-gap: 15px;
        row-gap: 15px;
    }
    .w-buscamos-it{
        aspect-ratio: 2/1.4;
        border-radius: 30px;
        border-bottom-right-radius: 0;
    }
    .w-buscamos-it IMG{
        width: 100px;
    }
    .w-buscamos-it P{
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}
/*****/
.work-funciona{
    padding: 80px 0;
}
.w-processo-top{
    padding-bottom: 2rem;
    text-align: center;
}
.w-processo-top H3{
    font-size: 50px;
    color: #004495;
    font-weight: 400;
    padding-bottom: 3rem;
}
.w-processo-line IMG{
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .w-processo-top H3{
        font-size: 40px;
        padding-bottom: 2rem;
    }
}
/*****/
.work-form{
    background-color: #E8E8E8;
    padding: 80px 0;
}
.w-form-top{
    padding-bottom: 40px;
}
.w-form-top H4{
    font-size: 55px;
    color: #004495;
    font-weight: 500;
    line-height: 62px;
    text-align: center;
}
.formClass{
    max-width: 80%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .w-form-top H4{
        font-size: 40px;
        line-height: 47px;
    }
}
/***/
/* FORM */

.form-container {
    width: calc(100% - 60px);
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.formClass h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.formClass .form-group {
    margin-bottom: 20px;
}

.formClass .form-group label {
    display: block;
    font-size: 0.9rem;
    color: #0d1a4a;
    font-weight: 300;
    margin-bottom: 8px;
}

.formClass .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.formClass .input-group input,
.formClass .input-group select,
.formClass .input-group .file-upload-label {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    color: #00316C;
    background-color: #f7f9fc;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.formClass .input-group.full-width input,
.formClass .input-group.full-width select {
    padding-left: 15px;
}

.formClass .input-group input:focus,
.formClass .input-group select:focus,
.formClass .input-group .file-upload-label:focus-within {
    outline: none;
    border-color: #0d1a4a;
    box-shadow: 0 0 5px rgba(13, 26, 74, 0.2);
}

.formClass .input-group select {
    padding-right: 45px;
}

.formClass .input-group i,
.formClass .input-group .fa-solid {
    position: absolute;
    left: 15px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.formClass .input-group .icon-right {
    left: auto;
    right: 15px;
    pointer-events: none;
}

.formClass .input-group .icon-left.fa-user,
.formClass .input-group .icon-left.fa-envelope,
.formClass .input-group .icon-left.fa-phone-volume,
.formClass .input-group .icon-left.fa-house-user {
    left: auto;
    right: 15px;
    color: #b0b0b0;
}

.formClass .input-group .icon-left.fa-house-user {
    left: auto;
    right: 15px;
    font-size: 1.2rem;
}

.formClass .input-group .file-upload-label {
    background-color: #f7f9fc;
    cursor: pointer;
    text-align: center;
    color: #00316C;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 300;
}

.formClass .input-group .file-upload-label i {
    position: static;
    margin-right: 10px;
}

.formClass .input-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    background-color: #f7f9fc;
    resize: vertical;
    transition: all 0.3s ease;
}

.formClass .input-group textarea:focus {
    outline: none;
    border-color: #0d1a4a;
    box-shadow: 0 0 5px rgba(13, 26, 74, 0.2);
}

.formClass .input-group .select-arrow {
    position: absolute;
    right: 15px;
    pointer-events: none;
    color: #b0b0b0;
    font-size: 1.2rem;
}

.formClass .two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .formClass .two-columns {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .formClass{
        max-width: 100%;
    }
}
/*****/
.work-contact{
    padding: 80px 0;
}
.w-contact-main{
    display: flex;
    align-items: center;
}
.w-contact-1{
    width: calc(45% - 70px);
    position: relative;
    background-color: #00316C;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    padding: 55px 35px;
}
.w-contact-1 H4{
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    line-height: 58px;
}
.w-contact-2{
    width: calc(55% - 80px);
    position: relative;
    padding: 0 40px;
}
.w-contact-2 h4{
    font-size: 40px;
    color: #000000;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 1rem;
}
.w-contact-2 P{
    font-size: 23px;
    color: #000000;
    font-weight: 300;
    line-height: 34px;
}
@media (max-width: 768px) {
    .w-contact-main{
        flex-wrap: wrap;
    }
    .w-contact-1{
        width: calc(100% - 60px);
        border-radius: 30px;
        border-bottom-right-radius: 0;
        padding: 40px 30px;
        margin-bottom: 40px;
    }
    .w-contact-1 H4{
        font-size: 40px;
        line-height: 48px;
    }
    .w-contact-2{
        width: calc(100% - 80px);
        padding: 0 30px;
    }
    .w-contact-2 h4{
        font-size: 30px;
        line-height: 40px;
    }
    .w-contact-2 P{
        font-size: 17px;
        line-height: 23px;
    }

}
/************************/
/************************/
.contato-header{
    padding: 140px 0 80px 0;
}
.contato-header-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contato-h-1{
    position: relative;
    background-color: #00316C;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    aspect-ratio: 10/8;
    display: flex;
    align-items: center;
}
.contato-h-1 DIV{
    padding: 0 40px;
}
.contato-h-1 H2{
    font-size: 60px;
    color: #ffffff;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 1rem;
}
.contato-h-1 H2 SPAN{
    color: #FECA05;
}
.contato-h-1 P{
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    line-height: 26px;
}
.contato-h-2{
    position: relative;
    background-color: #004495;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    aspect-ratio: 10/8;
    background-image: url("/assets/images/contato/p.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.contato-h-2 IMG{
    height: 110%;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
@media (max-width: 768px) {
    .contato-header-main{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contato-h-1{
        border-radius: 30px;
        border-bottom-right-radius: 0;
    }
    .contato-h-1 DIV{
        padding: 0 20px;
    }
    .contato-h-1 H2{
        font-size: 45px;
        line-height: 52px;
    }
    .contato-h-1 P{
        font-size: 16px;
        line-height: 23px;
    }
    .contato-h-2{
        border-radius: 30px;
        border-bottom-right-radius: 0;
    }
}
/****/
.contato-canais{
    background-color: #E8E8E8;
    padding: 80px 0;
}
.contato-canais-main{
    display: flex;
    align-items: center;
}
.c-canais-1{
    position: relative;
    width: 50%;
}
.c-canais-1 DIV{
    padding: 0 30px;
}
.c-canais-1 DIV H3{
    font-size: 50px;
    color: #004495;
    font-weight: 400;
    line-height: 58px;
    margin-bottom: 1.5rem;
}
.c-canais-1 DIV H3 STRONG{
    font-weight: 600;
}
.c-canais-1 DIV H5{
    font-size: 24px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.c-canais-1 DIV P{
    font-size: 20px;
    color: #000000;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 1rem;
}
.c-canais-2{
    position: relative;
    width: 50%;
    text-align: center;
}
.c-canais-2 IMG{
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .contato-canais-main{
        flex-wrap: wrap;
    }
    .c-canais-1{
        width: 100%;
        padding-bottom: 40px;
    }
    .c-canais-2{
        width: 100%;
    }
    .c-canais-1 DIV H3{
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 1.5rem;
    }
    .c-canais-1 DIV H5{
        font-size: 20px;
    }
    .c-canais-1 DIV P{
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 1rem;
    }
    .c-canais-2 IMG{
        width: 80%;
        margin: 0 auto;
    }

}
/****/
.contato-sede{
    background-color: #00316C;
    padding: 80px 0;
}
.contato-sede-main{
    display: flex;
    align-items: center;
    gap: 40px;
}
.c-sede-1{
    width: 50%;
    position: relative;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    aspect-ratio: 10/8;
    background-image: url("/assets/images/contato/sede.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.c-sede-2{
    width: 50%;
    position: relative;
}
.c-sede-2 h3{
    font-size: 60px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.c-sede-2 h3 .icon {
    width: 57px;
    height: 57px;
    object-fit: contain;
    display: inline-block;
}
.c-sede-2 P{
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 1rem;
    max-width: 80%;
}
@media (max-width: 768px) {
    .contato-sede-main{
        flex-wrap: wrap;
        gap: 20px;
    }
    .c-sede-1{
        width: 100%;
        border-radius: 30px;
        border-bottom-right-radius: 0;
    }
    .c-sede-2{
        width: 100%;
    }
    .c-sede-2 h3{
        font-size: 45px;
    }

    .c-sede-2 h3 .icon {
        width: 35px;
        height: 35px;
    }
    .c-sede-2 P{
        font-size: 17px;
        line-height: 23px;
    }

}
/****/
.contato-form{
    background-color: #E8E8E8;
    padding: 80px 0;
}
.c-form-top{
    width: 100%;
    display: block;
    text-align: center;
}
.c-form-top H3{
    font-size: 50px;
    color: #004495;
    font-weight: 500;
    line-height: 1.2;
    align-items: center;
    margin-bottom: 2rem;
}
.c-form{
    width: 80%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .c-form-top H3{
        font-size: 40px;
    }
    .c-form{
        width: 100%;
    }
}
/************************/
/************************/
/************************/
/* base */
.zoom-cascade{
    --zc-stagger: 40ms;          /* atraso entre letras/palavras */
    --zc-duration: 520ms;        /* duração da animação */
    --zc-scale-from: .85;        /* escala inicial (zoom-in) */
    --zc-ease: cubic-bezier(.2,.8,.2,1);
    display: inline-block;
    will-change: transform, opacity, filter;
}
.zoom-cascade {
    display: inline-block;       /* conteúdo se ajusta à largura do texto */
    text-align: center;          /* mantém centralização interna */
}

.zoom-cascade-wrapper {
    text-align: center;          /* garante centralização do bloco no pai */
}

/* caracteres/palavras gerados pelo JS */
.zoom-cascade .zc-ch{
    display: inline-block;
    transform: scale(var(--zc-scale-from));
    opacity: 0;
    filter: blur(.5px);
}

/* quando entra em viewport */
.zoom-cascade.is-visible .zc-ch{
    animation: zcIn var(--zc-duration) var(--zc-ease) forwards;
}

/* variações rápidas/lentas opcionais */
.zc-fast { --zc-stagger: 25ms; --zc-duration: 380ms; }
.zc-slow { --zc-stagger: 70ms; --zc-duration: 700ms; }

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
    .zoom-cascade .zc-ch{ animation: none !important; opacity: 1; transform: none; filter: none; }
}

@keyframes zcIn{
    to{ transform: scale(1); opacity: 1; filter: blur(0); }
}




/************************/
/************************/



