@charset "UTF-8";
@import url("fontes/akrobat.css");
:root {
  --corLaranja: #f96b45;
  --corVerde: #386a67;
  --corCinza: #434343;
}

a {
  text-decoration: none !important;
}

.fundo_laranja {
  background-color: var(--corLaranja);
}

.fundo_cinza {
  background-color: var(--corCinza);
}

.fundo_verde {
  background-color: var(--corVerde);
}

.txt_laranja {
  color: var(--corLaranja);
}

.txt_cinza {
  color: var(--corCinza);
}

.txt_verde {
  color: var(--corVerde);
}

.font_bold {
  font-family: "akrobatsemibold";
}

.font_black {
  font-family: "akrobatblack";
}

.breadcrumb {
  color: white !important;
}
.breadcrumb .breadcrumb-item.active {
  color: whitesmoke;
}
.breadcrumb a {
  color: white !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

main {
  overflow-x: hidden;
  width: 100vw;
}

#icon-b .my-b {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ffffff;
}

/*
    CARROUSSEL
*/
.carousel-item #icon-refrigeracao {
  fill: white;
}
.carousel-item #icon-gas-liquifeito {
  fill: white;
}
.carousel-item #icon-combustiveis {
  fill: white;
}
.carousel-item #icon-engenharia {
  fill: white;
}
.carousel-item h1,
.carousel-item p,
.carousel-item a,
.carousel-item img {
  opacity: 0;
}

.carousel-item.active h1 {
  animation: animate-carousel-title 1s normal forwards;
}
.carousel-item.active p {
  animation: animate-carousel-title 1s normal forwards;
  animation-delay: 1s;
}
.carousel-item.active a {
  animation: animate-carousel-button 1s normal forwards;
  animation-delay: 2s;
}
.carousel-item.active img {
  animation: animate-carousel-image 1s normal forwards;
  animation-delay: 1s;
}

@keyframes animate-carousel-title {
  0% {
    transform: translate(8em, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes animate-carousel-button {
  0% {
    transform: translate(0, 8em);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes animate-carousel-image {
  0% {
    transform: translate(-12em, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/*
    CARROUSSEL
*/
/*
    ASIDE MENU
*/
aside {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9991;
}

.menu-desktop .logo-desktop {
  padding-top: 35px;
  padding-bottom: 35px;
}
.menu-desktop .bandeiras-desktop {
  display: flex;
  width: 100;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 20px;
}
.menu-desktop .bandeiras-desktop .banderia-argentina {
  border-radius: 3px;
  overflow: hidden;
  margin-right: 15px;
  background: url(/assets/images/flags/argentina.svg) center center no-repeat;
  background-size: cover;
  width: 35px;
  height: 20px;
}
.menu-desktop .bandeiras-desktop .bandeira-brasil {
  border-radius: 3px;
  overflow: hidden;
  margin-right: 15px;
  background: url(/assets/images/flags/brasil.svg) center center no-repeat;
  background-size: cover;
  width: 35px;
  height: 20px;
}
.menu-desktop .bandeiras-desktop .banderia-us {
  border-radius: 3px;
  overflow: hidden;
  background: url(/assets/images/flags/us.svg) center center no-repeat;
  background-size: cover;
  width: 35px;
  height: 20px;
}
.menu-desktop .links-desktop {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 10px;
  text-transform: uppercase;
}
.menu-desktop .links-desktop a {
  color: #fff;
  margin-right: 20px;
}
.menu-desktop .links-desktop a:last-child {
  margin-right: 0;
}

.barra-menu-subposicao {
  position: absolute;
  transform: skew(40deg, 0deg);
  width: 60%;
  right: -10%;
  min-height: 100px;
  top: 0;
  z-index: -1;
}

/* Mobile Menu Styles */
.menu-mobile {
  display: none;
  padding: 15px 0;
}

.logo-mobile {
  padding: 10px 0;
}
.logo-mobile img {
  max-width: 150px;
  width: 100%;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 35px;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover span {
  background-color: var(--corLaranja);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  transition: left 0.4s ease-in-out;
  overflow-y: auto;
}
.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-content {
  padding: 20px;
  position: relative;
}

.mobile-menu-close {
  text-align: right;
  margin-bottom: 20px;
}

.mobile-menu-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
}
.mobile-menu-close-btn:hover {
  color: var(--corLaranja);
}

.bandeiras-mobile {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 20px;
}
.bandeiras-mobile a {
  border-radius: 3px;
  overflow: hidden;
  width: 50px;
  height: 30px;
  display: block;
}
.bandeiras-mobile a.banderia-argentina {
  background: url(/assets/images/flags/argentina.svg) center center no-repeat;
  background-size: cover;
}
.bandeiras-mobile a.bandeira-brasil {
  background: url(/assets/images/flags/brasil.svg) center center no-repeat;
  background-size: cover;
}
.bandeiras-mobile a.banderia-us {
  background: url(/assets/images/flags/us.svg) center center no-repeat;
  background-size: cover;
}

.links-mobile {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.links-mobile a {
  color: white;
  text-transform: uppercase;
  padding: 20px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  transition: all 0.3s ease;
}
.links-mobile a:hover {
  background-color: var(--corLaranja);
  padding-left: 25px;
  text-decoration: none;
}
.links-mobile a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  .menu-desktop .links-desktop a {
    font-size: 14px;
    margin-right: 15px;
  }
}
@media (max-width: 991px) {
  .menu-desktop {
    display: none;
  }
  .menu-mobile {
    display: block;
  }
  .barra-menu-subposicao {
    width: 80%;
    right: -15%;
  }
}
@media (max-width: 768px) {
  .logo-mobile img {
    max-width: 120px;
  }
  .mobile-menu-toggle {
    width: 35px;
    height: 30px;
  }
  .links-mobile a {
    font-size: 16px;
  }
  .barra-menu-subposicao {
    width: 90%;
    right: -20%;
    min-height: 70px;
  }
}
@media (max-width: 576px) {
  .logo-mobile img {
    max-width: 100px;
  }
  .mobile-menu-toggle {
    width: 30px;
    height: 28px;
  }
  .mobile-menu-toggle span {
    height: 2px;
  }
  .bandeiras-mobile a {
    width: 40px;
    height: 24px;
  }
  .links-mobile a {
    font-size: 14px;
    padding: 15px 10px;
  }
}
/*
    ASIDE MENU
*/
/*
    BLOCO CARROSSEL
*/
.barra-laranja-carrossel-subposicao {
  position: absolute;
  left: -10%;
  width: 30%;
  transform: skew(40deg, 0deg);
  bottom: -25px;
  z-index: 9991;
  height: 100px;
}

/*
    BLOCO CARROSSEL
*/
/*
    APRESENTACAO
*/
.apresentacao-icones-sociais {
  text-align: right;
  padding-top: 20px;
}
.apresentacao-icones-sociais a {
  margin-right: 20px;
}
.apresentacao-icones-sociais a:last-child {
  margin-right: 0;
}

.apresentacao-corpo {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: justify;
}
.apresentacao-corpo .col-8 {
  padding-right: 40px;
}
.apresentacao-corpo .col-4 > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}
.apresentacao-corpo .col-4 > div > div:first-child {
  margin-bottom: 35px;
}

/*
    APRESENTACAO
*/
/*
    BLOCO DE ÍCONES
*/
.bloco-icones {
  height: 50vh;
  display: flex;
}
.bloco-icones .bloco-refrigeracao {
  background: url(/assets/images/backgrounds/refrigeracao.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.3s;
}
.bloco-icones .bloco-refrigeracao #icon-refrigeracao {
  fill: white;
}
.bloco-icones .bloco-refrigeracao:hover #icon-refrigeracao {
  fill: black;
}
.bloco-icones .bloco-gas-liquifeito {
  background: url(/assets/images/backgrounds/gas-liquifeito.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.bloco-icones .bloco-gas-liquifeito #icon-gas-liquifeito {
  fill: white;
}
.bloco-icones .bloco-gas-liquifeito:hover #icon-gas-liquifeito {
  fill: black;
}
.bloco-icones .bloco-glp-combustiveis {
  background: url(/assets/images/backgrounds/combustivel.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.bloco-icones .bloco-glp-combustiveis #icon-combustiveis {
  fill: white;
}
.bloco-icones .bloco-glp-combustiveis:hover #icon-combustiveis {
  fill: black;
}
.bloco-icones .bloco-engenharia {
  background: url(/assets/images/backgrounds/engenharia.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.bloco-icones .bloco-engenharia #icon-engenharia {
  fill: white;
}
.bloco-icones .bloco-engenharia:hover #icon-engenharia {
  fill: black;
}
.bloco-icones .blocos a {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
.bloco-icones .blocos a > span:first-child {
  width: 50px;
  height: 50px;
}
.bloco-icones .blocos a > span:last-child {
  color: white;
  font-size: 2rem;
}
.bloco-icones .blocos a:hover {
  text-decoration: none;
  opacity: 1;
}
.bloco-icones .blocos a:hover > span:last-child {
  color: black;
  font-size: 2rem;
}

/*
    BLOCO DE ÍCONES
*/
/*
    BLOCO BARRA PARALLAX
*/
.barra-parallax-1 {
  height: 50vh;
  background: url(/assets/images/backgrounds/fundo-parallax.webp) center center no-repeat;
  background-size: cover;
  overflow-x: hidden;
  background-attachment: fixed;
}
.barra-parallax-1 > div {
  /*background-color:black; */
  /*opacity:0.8; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  perspective: 1px;
  transform-style: preserve-3d;
}
.barra-parallax-1 > div .icone-b {
  width: 75px;
  height: 75px;
}

/*
    BLOCO BARRA PARALLAX
*/
/*
    BLOCO CLIENTES
*/
.bloco-clientes {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f9f9f9;
}

/*
    BLOCO CLIENTES
*/
/*
    FOOTER
*/
footer {
  padding-top: 100px;
  padding-bottom: 100px;
}
footer #icon-suporte-tecnico {
  fill: white;
}
footer #icon-pecas-originais {
  fill: white;
}
footer #icon-banco-de-provas {
  fill: white;
}

/*

    HOME PAGE RESPONSIVE STYLES
*/
/* Carousel Responsive */
.carousel-home {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
}
.carousel-home .carousel-inner,
.carousel-home .carousel-item {
  height: 100%;
}

.carousel-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.carousel-product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 40px;
}

.carousel-product-image {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
}
.carousel-product-image img {
  width: 100%;
  height: auto;
}

.carousel-product-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.carousel-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 0;
  line-height: 1.2;
}

.carousel-description {
  color: white;
  font-size: 1.3em;
  margin: 15px 0;
}

.carousel-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}
.carousel-link .carousel-icon {
  width: 17px;
  height: 17px;
  margin-right: 15px;
  display: inline-block;
}
.carousel-link .carousel-text {
  font-weight: bold;
}
.carousel-link:hover {
  text-decoration: underline;
}

/* Responsive Breakpoints for Carousel - Keep 100vh on all devices */
@media (max-width: 1199px) {
  .carousel-title {
    font-size: 3.5rem;
  }
  .carousel-description {
    font-size: 1.2em;
  }
}
@media (max-width: 991px) {
  .carousel-home {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
  .carousel-product-container {
    flex-direction: column;
    gap: 30px;
  }
  .carousel-product-image {
    max-width: 500px;
  }
  .carousel-title {
    font-size: 3rem;
  }
  .carousel-description {
    font-size: 1.1em;
  }
  .barra-laranja-carrossel-subposicao {
    width: 40%;
    left: -15%;
  }
}
@media (max-width: 768px) {
  .carousel-home {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
  .carousel-product-container {
    gap: 20px;
  }
  .carousel-product-image {
    min-width: 250px;
    max-width: 350px;
  }
  .carousel-product-info {
    min-width: 250px;
    text-align: center;
  }
  .carousel-title {
    font-size: 2.5rem;
  }
  .carousel-description {
    font-size: 1em;
  }
  .carousel-link {
    justify-content: center;
  }
  .barra-laranja-carrossel-subposicao {
    width: 50%;
    left: -20%;
    height: 80px;
  }
}
@media (max-width: 576px) {
  .carousel-home {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
  .carousel-content-wrapper {
    padding: 40px 15px;
  }
  .carousel-product-container {
    gap: 15px;
  }
  .carousel-product-image {
    min-width: 200px;
    max-width: 280px;
  }
  .carousel-product-info {
    min-width: 200px;
  }
  .carousel-title {
    font-size: 2rem;
  }
  .carousel-description {
    font-size: 0.9em;
    margin: 10px 0;
  }
  .carousel-link {
    font-size: 0.9em;
  }
  .carousel-link .carousel-icon {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }
  .barra-laranja-carrossel-subposicao {
    width: 60%;
    left: -25%;
    height: 60px;
    bottom: -15px;
  }
}
@media (max-width: 375px) {
  .carousel-home {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
  .carousel-title {
    font-size: 1.75rem;
  }
  .carousel-description {
    font-size: 0.85em;
  }
  .carousel-product-image {
    max-width: 240px;
  }
}
/* Ensure carousel controls are visible on all devices */
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}

/* Apresentação Highlights */
.apresentacao-highlights {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.apresentacao-logo {
  margin-bottom: 35px;
}
.apresentacao-logo img {
  display: block;
  width: 80%;
  max-width: 250px;
}

.apresentacao-item {
  margin-bottom: 20px;
}
.apresentacao-item p {
  margin: 0;
}

/* Clientes Section */
.clientes-divider {
  width: 120px;
  height: 5px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.clientes-logo {
  width: 150px;
  max-width: 100%;
}

.clientes-grid {
  margin-top: 40px;
}

.cliente-item {
  margin-bottom: 15px;
  padding: 10px;
}
.cliente-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.cliente-item img:hover {
  transform: scale(1.05);
}

/* Responsive Breakpoints for Home Page */
/* Large Tablets and below */
@media (max-width: 1199px) {
  .apresentacao-corpo {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
/* Tablets */
@media (max-width: 991px) {
  .apresentacao-corpo {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .apresentacao-corpo .col-lg-8 {
    padding-right: 15px;
    margin-bottom: 40px;
  }
  .apresentacao-highlights {
    margin-top: 30px;
  }
  .apresentacao-logo img {
    margin: 0 auto;
  }
  .bloco-clientes {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .clientes-divider {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .barra-laranja-carrossel-subposicao {
    width: 40%;
    left: -15%;
  }
}
/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  .apresentacao-icones-sociais {
    text-align: center;
    padding-top: 30px;
  }
  .apresentacao-icones-sociais a {
    font-size: 1.3em;
    margin: 0 15px;
  }
  .apresentacao-corpo {
    padding-top: 30px;
    padding-bottom: 40px;
    text-align: left;
  }
  .apresentacao-highlights {
    text-align: center;
  }
  .apresentacao-logo img {
    margin: 0 auto 25px;
  }
  .bloco-clientes {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .bloco-clientes h3 {
    text-align: center;
  }
  .clientes-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .barra-laranja-carrossel-subposicao {
    width: 50%;
    left: -20%;
    height: 80px;
  }
}
/* Mobile Portrait */
@media (max-width: 576px) {
  .apresentacao-icones-sociais {
    padding-top: 20px;
  }
  .apresentacao-icones-sociais a {
    font-size: 1.2em;
    margin: 0 10px;
  }
  .apresentacao-corpo {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .apresentacao-corpo p {
    font-size: 0.95em;
    text-align: left;
  }
  .apresentacao-highlights {
    margin-top: 20px;
  }
  .apresentacao-logo {
    margin-bottom: 20px;
  }
  .apresentacao-logo img {
    width: 60%;
  }
  .apresentacao-item {
    margin-bottom: 15px;
  }
  .apresentacao-item p {
    font-size: 0.9em;
  }
  .bloco-clientes {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .bloco-clientes h3 {
    font-size: 1.5rem;
  }
  .clientes-logo {
    width: 120px;
  }
  .clientes-divider {
    width: 80px;
    height: 4px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .clientes-grid {
    margin-top: 20px;
  }
  .cliente-item {
    margin-bottom: 10px;
    padding: 5px;
  }
  .barra-laranja-carrossel-subposicao {
    width: 60%;
    left: -25%;
    height: 60px;
    bottom: -15px;
  }
}
/* Extra Small Mobile */
@media (max-width: 375px) {
  .apresentacao-corpo p {
    font-size: 0.9em;
  }
  .bloco-clientes h3 {
    font-size: 1.3rem;
  }
  .clientes-logo {
    width: 100px;
  }
}
/*
    BLOCO DE ÍCONES
*/
.bloco-icones {
  height: 50vh;
  display: flex;
}
.bloco-icones .bloco-refrigeracao {
  background: url(/assets/images/backgrounds/refrigeracao.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.3s;
}
.bloco-icones .bloco-refrigeracao #icon-refrigeracao {
  fill: white;
}
.bloco-icones .bloco-refrigeracao:hover #icon-refrigeracao {
  fill: black;
}
.bloco-icones .bloco-gas-liquifeito {
  background: url(/assets/images/backgrounds/gas-liquifeito.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.bloco-icones .bloco-gas-liquifeito #icon-gas-liquifeito {
  fill: white;
}
.bloco-icones .bloco-gas-liquifeito:hover #icon-gas-liquifeito {
  fill: black;
}
.bloco-icones .bloco-glp-combustiveis {
  background: url(/assets/images/backgrounds/combustivel.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.bloco-icones .bloco-glp-combustiveis #icon-combustiveis {
  fill: white;
}
.bloco-icones .bloco-glp-combustiveis:hover #icon-combustiveis {
  fill: black;
}
.bloco-icones .bloco-engenharia {
  background: url(/assets/images/backgrounds/engenharia.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
}
.bloco-icones .bloco-engenharia #icon-engenharia {
  fill: white;
}
.bloco-icones .bloco-engenharia:hover #icon-engenharia {
  fill: black;
}
.bloco-icones .blocos a {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
.bloco-icones .blocos a > span:first-child {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.bloco-icones .blocos a > span:last-child {
  color: white;
  font-size: 2rem;
  line-height: 1.3;
  padding: 0 20px;
}
.bloco-icones .blocos a:hover {
  text-decoration: none;
  opacity: 1;
}
.bloco-icones .blocos a:hover > span:last-child {
  color: black;
  font-size: 2rem;
}

/* Responsive font sizes for bloco-icones */
@media (max-width: 1199px) {
  .bloco-icones .blocos a > span:first-child {
    width: 45px;
    height: 45px;
  }
  .bloco-icones .blocos a > span:last-child {
    font-size: 1.75rem;
  }
  .bloco-icones .blocos a:hover > span:last-child {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .bloco-icones {
    height: 40vh;
  }
  .bloco-icones .blocos a > span:first-child {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .bloco-icones .blocos a > span:last-child {
    font-size: 1.5rem;
    padding: 0 15px;
  }
  .bloco-icones .blocos a:hover > span:last-child {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .bloco-icones {
    height: 35vh;
  }
  .bloco-icones .blocos a > span:first-child {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
  }
  .bloco-icones .blocos a > span:last-child {
    font-size: 1.25rem;
    padding: 0 10px;
  }
  .bloco-icones .blocos a:hover > span:last-child {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .bloco-icones {
    height: 30vh;
  }
  .bloco-icones .blocos a > span:first-child {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }
  .bloco-icones .blocos a > span:last-child {
    font-size: 1rem;
    padding: 0 8px;
  }
  .bloco-icones .blocos a:hover > span:last-child {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .bloco-icones {
    height: 25vh;
  }
  .bloco-icones .blocos a > span:first-child {
    width: 25px;
    height: 25px;
    margin-bottom: 6px;
  }
  .bloco-icones .blocos a > span:last-child {
    font-size: 0.85rem;
    padding: 0 5px;
  }
  .bloco-icones .blocos a:hover > span:last-child {
    font-size: 0.85rem;
  }
}
/* Stack blocks vertically on very small screens if needed */
@media (max-width: 320px) {
  .bloco-icones {
    height: auto;
    flex-direction: column;
  }
  .bloco-icones > div {
    width: 100% !important;
    height: 25vh;
  }
  .bloco-icones .blocos a > span:last-child {
    font-size: 0.8rem;
  }
  .bloco-icones .blocos a:hover > span:last-child {
    font-size: 0.8rem;
  }
}
/*
    BLOCO DE ÍCONES
*/
/*
    FOOTER
*/
footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--corLaranja) !important;
}
footer #icon-suporte-tecnico {
  fill: white;
}
footer #icon-pecas-originais {
  fill: white;
}
footer #icon-banco-de-provas {
  fill: white;
}

/* Footer Responsive Styles */
.footer-responsive {
  color: white;
}

.footer-top {
  margin-bottom: 75px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.footer-links-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-link-item {
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.footer-link-item:hover {
  transform: translateY(-5px);
  text-decoration: none;
}
.footer-link-item:hover .footer-link-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-link-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  text-align: center;
}

.footer-link-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 8px;
  display: block;
}

.footer-link-text {
  font-size: 0.9rem;
  display: block;
}

.footer-bottom {
  margin-top: 75px;
}

.footer-contact-section {
  margin-bottom: 40px;
}

.footer-country-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.footer-contact-info {
  margin-top: 50px;
}

.footer-address {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-phone,
.footer-email {
  display: block;
  margin-top: 16px;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-phone:hover,
.footer-email:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.footer-logos-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-brand-logos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 35px;
}

.footer-b-logo {
  width: 60%;
  max-width: 150px;
  text-align: right;
}
.footer-b-logo img {
  width: 100%;
  height: auto;
}

.footer-iiar-logo {
  width: 60%;
  max-width: 150px;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
}
.footer-iiar-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer Responsive Breakpoints */
/* Large Tablets and below */
@media (max-width: 1199px) {
  .footer-links {
    gap: 15px;
  }
  .footer-link-text {
    font-size: 0.85rem;
  }
  .footer-phone,
  .footer-email {
    font-size: 1.5rem;
  }
}
/* Tablets */
@media (max-width: 991px) {
  footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-top {
    margin-bottom: 50px;
  }
  .footer-logo-section {
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer-links-section {
    justify-content: center;
  }
  .footer-links {
    justify-content: center;
    gap: 30px;
  }
  .footer-bottom {
    margin-top: 50px;
  }
  .footer-contact-info {
    margin-top: 30px;
  }
  .footer-phone,
  .footer-email {
    font-size: 1.4rem;
  }
  .footer-logos-section {
    justify-content: center;
    margin-top: 40px;
  }
  .footer-brand-logos {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .footer-b-logo,
  .footer-iiar-logo {
    width: 120px;
  }
}
/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer-top {
    margin-bottom: 40px;
  }
  .footer-logo img {
    width: 180px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-link-icon {
    width: 22px;
    height: 22px;
  }
  .footer-link-text {
    font-size: 0.8rem;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .footer-contact-section {
    text-align: center;
    margin-bottom: 35px;
  }
  .footer-country-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .footer-contact-info {
    margin-top: 25px;
  }
  .footer-address {
    font-size: 0.95rem;
  }
  .footer-phone,
  .footer-email {
    font-size: 1.3rem;
    margin-top: 12px;
  }
  .footer-brand-logos {
    gap: 30px;
  }
  .footer-b-logo,
  .footer-iiar-logo {
    width: 100px;
  }
}
/* Mobile Portrait */
@media (max-width: 576px) {
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-top {
    margin-bottom: 30px;
  }
  .footer-logo img {
    width: 150px;
  }
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
  .footer-link-item {
    width: 100%;
    max-width: 250px;
  }
  .footer-link-content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }
  .footer-link-icon {
    margin-bottom: 0;
    width: 20px;
    height: 20px;
  }
  .footer-link-text {
    font-size: 0.9rem;
    text-align: left;
  }
  .footer-bottom {
    margin-top: 30px;
  }
  .footer-contact-section {
    margin-bottom: 30px;
  }
  .footer-country-title {
    font-size: 1.1rem;
  }
  .footer-contact-info {
    margin-top: 20px;
  }
  .footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-phone,
  .footer-email {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  .footer-brand-logos {
    flex-direction: column;
    gap: 25px;
  }
  .footer-b-logo,
  .footer-iiar-logo {
    width: 90px;
  }
}
/* Extra Small Mobile */
@media (max-width: 375px) {
  .footer-logo img {
    width: 130px;
  }
  .footer-link-text {
    font-size: 0.85rem;
  }
  .footer-country-title {
    font-size: 1rem;
  }
  .footer-address {
    font-size: 0.85rem;
  }
  .footer-phone,
  .footer-email {
    font-size: 1rem;
  }
  .footer-b-logo,
  .footer-iiar-logo {
    width: 80px;
  }
}
/*
    PRODUCT PAGES RESPONSIVE STYLES
*/
/* Page Header */
.page-header {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.page-header-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding-bottom: 30px;
}

.page-header-text {
  width: 100%;
}

.page-title {
  color: white;
  margin-top: 50px;
  text-align: right;
  font-size: 2.5rem;
}

.page-breadcrumb {
  justify-content: flex-end;
  margin-bottom: 0;
}

.page-header-bar {
  bottom: -15%;
}

.page-divider {
  height: 25px;
}

/* Products Section */
.products-section {
  background-color: #f9f9f9;
}

.products-container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.product-item {
  margin-bottom: 100px;
}
.product-item.product-item-last {
  margin-bottom: 0;
}

.product-image {
  margin-bottom: 30px;
}
.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-header {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  margin-bottom: 30px;
}

.product-title {
  font-size: 4rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}

.product-specs {
  margin-top: 30px;
  margin-bottom: 40px;
}

.spec-item {
  padding-right: 15px;
  border-right: 1px solid #a8a8a8;
  height: 100%;
  margin-bottom: 20px;
}
.spec-item.spec-item-last {
  border-right: none;
}

.spec-label {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.spec-value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-clients {
  margin-top: 40px;
}

.clients-title {
  margin-bottom: 35px;
  font-size: 1.5rem;
}

.clients-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.clients-grid img:hover {
  transform: scale(1.05);
}

/* Responsive Breakpoints for Product Pages */
/* Large Tablets and below */
@media (max-width: 1199px) {
  .product-title {
    font-size: 3.5rem;
  }
  .product-subtitle {
    font-size: 1rem;
  }
}
/* Tablets */
@media (max-width: 991px) {
  .page-header {
    height: 250px;
  }
  .page-title {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 40px;
  }
  .page-breadcrumb {
    justify-content: center;
  }
  .products-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .product-item {
    margin-bottom: 60px;
  }
  .product-header {
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
  }
  .product-title {
    font-size: 3rem;
  }
  .product-subtitle {
    font-size: 0.95rem;
  }
  .product-specs {
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .spec-item {
    margin-bottom: 25px;
  }
}
/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  .page-header {
    height: 200px;
  }
  .page-header-content {
    padding-bottom: 20px;
  }
  .page-title {
    font-size: 1.8rem;
    margin-top: 30px;
  }
  .page-header-bar {
    bottom: -10%;
  }
  .page-divider {
    height: 20px;
  }
  .products-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .product-item {
    margin-bottom: 50px;
  }
  .product-image {
    margin-bottom: 20px;
  }
  .product-header {
    margin-bottom: 20px;
  }
  .product-title {
    font-size: 2.5rem;
  }
  .product-subtitle {
    font-size: 0.9rem;
  }
  .product-specs {
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .spec-item {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .spec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .spec-label {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  .spec-value {
    font-size: 0.9rem;
  }
  .product-clients {
    margin-top: 30px;
  }
  .clients-title {
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-align: center;
  }
}
/* Mobile Portrait */
@media (max-width: 576px) {
  .page-header {
    height: 180px;
  }
  .page-title {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  .page-breadcrumb {
    font-size: 0.85rem;
  }
  .page-divider {
    height: 15px;
  }
  .products-container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .product-item {
    margin-bottom: 40px;
  }
  .product-image {
    margin-bottom: 15px;
  }
  .product-header {
    margin-bottom: 15px;
  }
  .product-title {
    font-size: 2rem;
  }
  .product-subtitle {
    font-size: 0.85rem;
  }
  .product-specs {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .spec-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .spec-label {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  .spec-value {
    font-size: 0.85rem;
  }
  .product-clients {
    margin-top: 20px;
  }
  .clients-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}
/* Extra Small Mobile */
@media (max-width: 375px) {
  .page-header {
    height: 160px;
  }
  .page-title {
    font-size: 1.3rem;
  }
  .product-title {
    font-size: 1.75rem;
  }
  .product-subtitle {
    font-size: 0.8rem;
  }
  .spec-label {
    font-size: 0.75rem;
  }
  .spec-value {
    font-size: 0.8rem;
  }
  .clients-title {
    font-size: 1.1rem;
  }
}
/* Engineering specific styles */
.engineering-clients {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  margin-top: 20px;
}
.engineering-clients p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--corCinza);
  margin: 0;
}

@media (max-width: 768px) {
  .engineering-clients {
    padding: 20px 15px;
  }
  .engineering-clients p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .engineering-clients {
    padding: 15px 10px;
  }
  .engineering-clients p {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=bombadur.css.map */