@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap");
:root {
--colors-white: #ffffff;
--colors-white-smoke: #f5f5f5;
--colors-orange-200: #f58220;
--colors-orange-500: #f26935;
--colors-blue-100: #6a95d9;
--colors-blue: #3f69ab;
--colors-blue-dark: #14182e;
--colors-gray: #666666;
--colors-error: #dc3545;
--colors-success: #198754;
--fonts-open-sans: "Open Sans", sans-serif;
--fonts-outfit: "Outfit", sans-serif;
}
* {
font-family: var(--fonts-open-sans);
} .bg-test {
background-color: red;
}
.hidden-xs {
display: block;
}
.visible-xs {
display: none;
}
.cta {
}
.cta a {
background: transparent;
border: 1px solid var(--colors-white);
color: var(--colors-white);
display: inline-block;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.3px;
padding: 10px 22px;
text-transform: uppercase;
transition: all 0.3s ease;
}
.cta a:hover {
background: var(--colors-orange-200);
text-decoration: none;
}
.btn-transparent {
background: transparent;
border: 1px solid var(--colors-white);
width: 140px;
height: 41px;
color: var(--colors-white);
font-size: 14px;
font-weight: 700;
}
.btn-transparent:hover {
background: var(--colors-orange-200);
}
.title-section-blue > div.wpb_wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title-section-white > div.wpb_wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title-section-blue h2 {
font-family: var(--fonts-outfit);
font-weight: 600;
font-size: 40px;
color: var(--colors-blue);
}
.title-section-blue p {
width: 633px;
font-weight: 400;
font-size: 15px;
color: var(--colors-gray);
text-align: center;
}
.title-section-white h2 {
font-family: var(--fonts-outfit);
font-weight: 600;
font-size: 40px;
color: var(--colors-white);
}
.separator-title {
width: 130px;
height: 3px;
margin: 23px 0 27px 0;
background-color: var(--colors-orange-200);
}
.error {
color: var(--colors-error);
padding: 0;
margin: 0;
font-size: 14px;
}
.success {
color: var(--colors-success);
padding: 0;
margin: 0;
font-size: 14px;
}
.container-page {
max-width: 1673px;
margin: 0 auto;
background-color: var(--colors-white);
} header .header-container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1673px;
margin: 0 auto;
padding: 15px 50px;
position: relative;
z-index: 2;
}
header .header-separator {
border-bottom: 1px solid #a5a5a5;
position: relative;
z-index: 2;
}
.header-search {
background-color: #2f3554;
width: 100%;
height: 259px;
z-index: 10;
top: 0;
position: absolute;
display: none;
transition: fadeIn 0.5s;
}
.header-search .section-search {
width: 100%;
height: 100%;
padding: 0 100px;
margin: 0 auto;
display: flex;
align-items: center;
}
.header-search button {
position: absolute;
top: 60px;
right: 80px;
cursor: pointer;
background-color: transparent;
border: 0;
}
.header-search .search-input {
width: 100%;
max-width: 1920px;
}
.header-search input {
width: 100%;
background-color: transparent;
padding: 10px 0;
border: 0;
border-bottom: 1px solid var(--colors-white-smoke);
color: var(--colors-white-smoke);
font-size: 32px;
font-family: var(--fonts-outfit);
font-weight: 300;
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/search-icon.png);
background-repeat: no-repeat;
background-position: right;
}
.header-search input::placeholder {
color: var(--colors-white-smoke);
font-size: 32px;
font-family: var(--fonts-outfit);
font-weight: 300;
}
.header-search input:focus {
outline: none;
}
header .header-left {
display: flex;
align-items: center;
flex-direction: row;
gap: 30px;
}
header .header-left .header-contato-single {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}
header .header-left .header-contato-single span {
color: #ebebeb;
font-size: 14px;
}
header .header-social {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
header .header-menu-nav {
padding-top: 30px;
}
header .header-menu-nav .logo-header {
width: 182px;
margin-right: 40px;
}
header .header-menu-nav ul {
list-style: none;
padding: 0;
margin: 0;
}
header .header-menu-nav ul li {
display: inline;
margin-right: 50px;
}
header .header-menu-nav .div-busca button {
background-color: transparent;
cursor: pointer;
border: 0;
font-size: 16px;
}
header .header-menu-nav .div-busca button span {
font-weight: bold;
color: var(--colors-white);
margin-left: 6px;
} body:not(
body.page-template-template-home,
body.page-template-template-produtos,
body.tax-produtos,
body.single-produto
)
#header {
height: 335px;
}
#header {
position: relative;
}
#header-menu {
position: fixed;
z-index: 2;
width: 100%;
top: 0;
}
#header-menu.header-scroll {
background-color: transparent !important;
position: relative;
} @keyframes hideHeader {
from {
background-color: transparent;
opacity: 1;
height: auto;
}
to {
opacity: 0;
height: 0;
}
} @keyframes showHeader {
from {
opacity: 0;
height: 0;
}
to {
background-color: var(--colors-blue-dark);
opacity: 1;
height: auto;
}
} #header-menu {
transition: all 0.3s ease;
animation-fill-mode: forwards;
} #header-menu.hide-header {
animation: hideHeader 0.6s forwards;
top: 0;
} #header-menu:not(.hide-header) {
animation: showHeader 0.6s forwards;
padding-bottom: 15px;
top: 0;
}
nav#menu-superior {
align-items: center;
background-color: transparent;
column-gap: 30px;
display: flex !important;
justify-content: end;
padding: 25px 0 20px 0;
width: 100%;
}
#menu-superior ul {
display: flex;
margin: 0;
}
#menu-superior ul li {
list-style: none;
position: relative;
}
#menu-superior ul li + li {
margin-top: 0;
}
#menu-superior ul li a {
text-decoration: none;
font-size: 16px;
font-weight: 700;
color: var(--colors-white);
transition: all 0.3s;
}
#menu-superior ul .current-menu-item,
#menu-superior ul li a:hover {
padding-bottom: 8px;
border-bottom: 2px solid var(--colors-orange-500);
} #menu-superior .sub-menu {
background-color: #14182ed9;
box-shadow: 0px 3px 6px #00000029;
display: none;
height: auto;
min-width: 180px;
padding: 0;
position: absolute;
top: 30px;
left: -16px;
z-index: 991;
}
#menu-superior .sub-menu li {
max-width: 100%;
min-width: 250px;
width: 100%;
padding: 10px 18px;
margin: 0;
}
#menu-superior .sub-menu li {
border-bottom: 1px solid #676767;
}
#menu-superior .sub-menu li a {
text-decoration: none;
font-size: 15px;
font-weight: 500;
color: var(--colors-white);
transition: all 0.3s;
}
#menu-menu-principal li ul .current-menu-item a,
#menu-menu-principal li ul li a:hover {
border-bottom: 0;
color: #666666;
}
#menu-superior li:hover .sub-menu {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
} #menu-mobile {
width: 40px;
height: 50px;
overflow: hidden;
position: relative;
float: right;
z-index: 999;
cursor: pointer;
}
#menu-mobile span {
height: 4px;
background-color: var(--colors-white) !important;
display: block;
width: 40px;
transition: all 0.3s ease;
margin: 10px 0;
}
#menu-mobile:hover span {
}
#menu-mobile:hover .span2 {
width: 80%;
}
#menu-mobile.close .span1 {
transform: rotate(-45deg);
position: absolute;
top: 10px;
transition: all 1s ease;
}
#menu-mobile.close .span2 {
width: 0;
transition: all 0.3s ease;
}
#menu-mobile.close .span3 {
transform: rotate(45deg);
position: absolute;
top: 10px;
transition: all 1s ease;
}
#menu-mobile.close [class^="span"] {
background-color: #fff !important;
} #menu-mobile-wrapper {
background-color: rgb(20, 24, 46);
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
visibility: hidden;
height: 0;
transition: all 0.3s linear;
padding: 80px 30px;
}
#menu-mobile-wrapper.open {
opacity: 1;
visibility: visible;
height: auto;
transition: all 0.3s linear;
}
#menu-mobile-wrapper.d-none {
display: none !important;
}
#menu-mobile-wrapper.d-block {
display: block !important;
opacity: 0.8;
background-color: #198754;
}
#menu-mobile-wrapper ul {
display: flex;
flex-direction: column;
gap: 16px;
margin: 0;
}
#menu-mobile-wrapper .menu > .current-menu-item {
padding-bottom: 8px;
border-bottom: 2px solid var(--colors-orange-500);
width: fit-content;
}
#menu-mobile-wrapper .menu .sub-menu .current-menu-item a {
color: #666666;
}
#menu-mobile-wrapper ul li {
list-style: none;
position: relative;
}
#menu-mobile-wrapper ul li + li {
margin-top: 0;
}
#menu-mobile-wrapper ul li a {
text-decoration: none;
font-size: 18px;
font-weight: 700;
color: var(--colors-white);
text-transform: uppercase;
} #menu-mobile-wrapper .sub-menu {
gap: 0;
}
#menu-mobile-wrapper .sub-menu li {
margin: 16px 0 0 25px;
}
#menu-mobile-wrapper .sub-menu li a {
text-decoration: none;
font-size: 18px;
font-weight: 400;
color: var(--colors-white);
transition: all 0.3s;
} footer {
background-color: #232323;
}
footer .footer1 {
max-width: 1500px;
margin: 0 auto;
display: grid;
align-items: center;
grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
gap: 50px;
padding: 60px 126px 100px 126px;
}
footer .footer1 .footer-propel {
display: flex;
flex-direction: column;
gap: 30px;
height: 100%;
}
footer .footer1 .footer-propel .logo-footer {
width: 182px;
}
footer .footer1 .footer-propel p {
font-size: 14px;
color: var(--colors-white-smoke);
width: 300px;
}
footer .footer1 .footer-propel > .header-social {
display: flex;
flex-direction: row;
gap: 15px;
}
footer .footer-title {
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
color: var(--colors-white-smoke);
margin-bottom: 20px;
}
footer .footer-menu {
padding-left: 20px;
height: 100%;
}
footer .footer-menu ul {
list-style: none;
padding: 0;
margin: 0;
}
footer .footer-menu ul li {
margin-bottom: 8px;
}
footer .footer-menu ul li a {
text-decoration: none;
font-size: 14px;
font-weight: 400;
color: var(--colors-white-smoke);
transition: all 0.3s;
}
footer .footer-menu ul li a:hover {
padding-bottom: 2px;
border-bottom: 2px solid var(--colors-orange-500);
}
footer .footer-onde-estamos {
display: flex;
flex-direction: column;
height: 100%;
}
footer .footer-onde-estamos .onde-estamos-single {
display: flex;
align-items: start;
gap: 13px;
margin-bottom: 20px;
}
footer .footer-icon {
margin-top: 5px;
}
footer .footer-text {
font-size: 14px;
margin: 0;
color: var(--colors-white-smoke);
}
footer .footer-contato {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
footer .footer-contato-single {
display: flex;
justify-content: start;
align-items: start;
gap: 20px;
}
footer .footer-certificacoes {
height: 100%;
}
footer .footer-certificacoes .imgs-certificacoes {
display: flex;
flex-direction: column;
gap: 35px;
}
footer .footer-certificacoes .imgs-certificacoes img {
max-width: 200px;
}
footer .footer2 {
background-color: #161616;
padding: 12px 0;
text-align: center;
}
footer .footer2 .footer-text {
font-size: 12px;
color: var(--colors-white-smoke);
font-weight: 400;
}
footer .footer2 .footer-text .footer2-urls {
margin-left: 8px;
}
footer .footer2 .footer-text .footer2-urls span {
margin: 0 16px;
}
footer .footer2 a {
text-decoration: none;
color: var(--colors-white-smoke);
transition: all 0.3s;
}
footer .footer2 a:hover {
text-decoration: none;
color: var(--colors-orange-500);
}  #hero-section {
position: relative;
background-color: var(--colors-blue-dark);
}
#hero-section .slide-item {
height: 914px;
margin-top: -180px;
position: relative !important;
background-position: top left;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#hero-section .slide-item .hero-container {
width: 100%;
max-width: 1673px;
padding: 0 50px;
}
#hero-section .title-hero {
width: 665px;
margin-top: 320px;
}
#hero-section .title-hero h1 {
font-family: var(--fonts-outfit);
font-size: 80px;
font-weight: 500;
line-height: 1.1;
color: var(--colors-white);
margin-bottom: 50px;
}
#hero-section .btn-hero .cta a {
background-color: var(--colors-orange-200);
border: none;
color: var(--colors-white);
}
#hero-section .btn-hero .cta a:hover {
background-color: var(--colors-gray);
}
.right-info-hero {
background-color: var(--colors-blue-dark);
height: 914px;
width: 575px;
right: 0;
top: 0;
z-index: 1;
position: absolute !important;
display: flex;
justify-content: start;
flex-direction: column;
padding: 250px 30px 0;
}
.right-info-hero .right-info-title {
width: 216px;
}
.right-info-hero .right-info-title h2 {
font-size: 16px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-white);
margin-bottom: 30px;
}
.right-info-hero .right-info-title p {
font-size: 15px;
font-weight: 400;
line-height: 23px;
color: var(--colors-white);
}
#hero-section .right-info-imgs {
padding-bottom: 60px;
margin-right: 100px;
display: flex;
flex-direction: row;
gap: 20px;
position: absolute;
bottom: 0;
right: 0;
z-index: 998;
}
#swiper-right-info .swiper-slide {
width: 197px !important;
margin: 0 !important;
}
#hero-section .right-info-imgs .swiper-wrapper {
gap: 20px;
}
#hero-section .right-info-imgs img {
width: 197px;
height: 251px;
cursor: pointer;
background-repeat: no-repeat;
background-size: cover;
transition: all 0.3s;
}
#hero-section .right-info-imgs img:hover {
filter: brightness(60%);
} #section-cards {
padding: 100px 0;
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
}
#section-cards .cards-single {
}
#section-cards .cards-single figure {
height: 86px;
}
#section-cards .cards-single .cards-text {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
#section-cards h2 {
font-family: var(--fonts-outfit);
font-size: 32px;
font-weight: 600;
color: var(--colors-blue);
}
#section-cards p {
font-size: 15px;
color: var(--colors-gray);
width: 250px;
}
#section-cards .produtos-img {
border-left: 1px solid #acacac;
border-right: 1px solid #acacac;
} #section-areas-atuacao {
padding: 70px 0 170px 0;
}
#section-areas-atuacao .wpb_single_image {
margin-bottom: 25px;
}
#section-areas-atuacao .areas-atuacao-single img {
width: 195px;
height: 195px;
}
#section-areas-atuacao .areas-atuacao-single h4 {
font-family: var(--fonts-outfit);
font-weight: 600;
font-size: 22px;
margin-bottom: 45px;
color: var(--colors-blue-100);
} .info-single {
display: flex;
height: 522px;
}
.solucao-info-left {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/solucao-info-left.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 522px;
}
.info-single .info-img-container {
background-color: green;
}
.info-single .solucao-img-container {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2024/03/solucoes-home.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.info-single .produtos-img-container {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2024/03/produtos-home.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.info-single .info-text-container-left {
float: right;
padding: 100px 137px 100px 0;
}
.info-single .info-text-container-right {
float: left;
padding: 100px 0px 100px 100px;
}
.info-single .info-texts {
width: 405px;
max-width: 100%;
gap: 30px;
display: flex;
justify-content: end;
align-items: flex-end;
}
.info-single .info-texts h3 {
font-family: var(--fonts-outfit);
font-size: 32px;
color: var(--colors-white);
margin-bottom: 30px;
}
.info-single .info-texts p {
font-size: 15px;
color: var(--colors-white);
}
.info-single .btn-transparent button {
background: transparent;
border: 1px solid var(--colors-white);
width: 140px;
height: 41px;
color: var(--colors-white);
font-size: 14px;
line-height: 14px;
font-weight: 700;
text-transform: uppercase;
margin: 0;
padding: 0;
}
.info-single .btn-transparent button:hover {
background: var(--colors-orange-200);
}
.info-single .info-img-container img {
background-size: 100% 100%;
height: 522px;
}
.produtos-info-right {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/produtos-info-right.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.servicos-info-left {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/servicos-info-left.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.info-single .servicos-img-container {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2024/03/servicos-home.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
} #quem-somos {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/bg-quem-somos.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
height: 620px;
overflow: visible;
}
#quem-somos .quemsomos-container {
position: relative;
margin: 0 auto;
}
#quem-somos .quem-somos-imgs .quem-somos-img1 {
height: 700px;
width: 675px;
position: absolute;
top: -40px;
}
#quem-somos .quem-somos-texts {
padding: 130px 0 0 150px;
}
#quem-somos .quem-somos-texts h2 {
font-size: 40px;
font-weight: 600;
color: var(--colors-white);
font-family: var(--fonts-outfit);
}
#quem-somos .quem-somos-texts .quem-somos-texts-separator {
width: 130px;
height: 3px;
margin: 23px 0 35px 0;
background-color: var(--colors-orange-500);
}
#quem-somos .btn-transparent button {
background: transparent;
border: 1px solid var(--colors-white);
width: 140px;
height: 41px;
color: var(--colors-white);
font-size: 14px;
line-height: 14px;
font-weight: 700;
text-transform: uppercase;
margin: 0;
padding: 0;
}
#quem-somos .btn-transparent button:hover {
background: var(--colors-orange-200);
border: 1px solid var(--colors-white);
}
#quem-somos .quem-somos-texts p {
font-size: 15px;
color: var(--colors-white);
width: 389px;
margin-bottom: 30px;
} #distribuidora {
display: flex;
flex-direction: column;
align-items: center;
padding: 120px 0 65px 0;
}
#distribuidora .distribuidora-logos {
margin-top: 70px;
display: flex;
} #clientes {
background-color: var(--colors-blue-dark);
padding: 80px 0 60px 0;
}
#swiper-home .swiper {
max-width: 1600px;
margin-top: 70px;
}
#swiper-home .swiper-slide {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
#swiper-home .swiper-button-prev,
.swiper-rtl .swiper-button-next {
left: 0 !important;
}
#swiper-home .swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: 0 !important;
}
#swiper-home .swiper-button-prev img,
.swiper-button-next img {
width: 12px;
}
#swiper-home .swiper-button-prev:after,
#swiper-home .swiper-button-next:after {
display: none;
} #contato {
padding: 80px 0 45px;
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/bg-contato.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#contato .wpb_wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.form-contato {
width: 830px;
margin-top: 30px;
margin: 0 auto;
}
.form-contato form input {
width: 100%;
height: 45px;
padding-left: 17px;
background-color: #f9f9f9;
border: 1px solid #d5d5d5;
}
.form-contato form input::placeholder {
color: #707070;
font-size: 14px;
}
.form-contato form textarea {
width: 100%;
height: 210px;
padding: 17px 0 0 17px;
background-color: #f9f9f9;
border: 1px solid #d5d5d5;
}
.form-contato form textarea::placeholder {
color: #707070;
font-size: 14px;
}
.form-contato form input:focus {
outline: var(--colors-orange-200);
border: 1px solid var(--colors-orange-200);
}
.form-contato form textarea:focus {
outline: var(--colors-orange-200);
border: 1px solid var(--colors-orange-200);
}
.form-contato form .btn-enviar {
margin-top: 16px;
display: flex;
justify-content: end;
}
.form-contato form .btn-enviar input[type="submit"] {
width: 112px;
height: 41px;
background-color: var(--colors-orange-200);
color: var(--colors-white);
border: 0;
padding: 0;
font-family: var(--fonts-open-sans);
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s;
}
.btn-enviar > p {
display: flex;
flex-direction: column;
}
span.wpcf7-spinner {
margin: 10px auto;
}
.form-contato form .btn-enviar input[type="submit"]:hover {
background-color: var(--colors-gray);
} .wpcf7 input[type="text"].wpcf7-not-valid,
.wpcf7 input[type="email"].wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
background: #ffe1e2;
color: #ff585d;
}
.wpcf7 div.wpcf7-validation-errors,
.wpcf7 div.wpcf7-mail-sent-ok {
background: #fff;
border: 2px solid #d9d9d9;
color: #398f14;
font-size: 12px;
padding: 7px 15px;
}
.wpcf7-form .wpcf7-response-output {
border-radius: 10px;
border-color: #fff;
background: #fff;
clear: both;
font-size: 14px;
margin: 0 !important;
padding: 12px 15px !important;
}
.wpcf7 form.sent .wpcf7-response-output { background-color: #dff2bf;
border: 0;
color: #4f8a10;
}
.wpcf7 form.invalid .wpcf7-response-output { background-color: #ffe1e2;
border: 0;
color: #ff585d;
}
.wpcf7 span.wpcf7-not-valid-tip {
color: #ff585d;
font-weight: bold;
font-size: 12px;
margin-top: 5px;
} .grecaptcha-badge {
visibility: hidden;
}  #page-title {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/background-header.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
position: absolute;
width: 100%;
top: 0;
height: 335px;
padding-bottom: 50px;
z-index: 1;
}
#page-title .page-title-wrapper.default {
height: 100%;
}
#page-title .page-title-wrapper.default {
height: 100%;
display: flex;
justify-content: center;
align-items: end;
}
#page-title header {
display: flex;
justify-content: center;
align-items: center;
}
#page-title header h1 {
color: var(--colors-white);
font-size: 40px;
font-family: var(--fonts-outfit);
font-weight: 600;
text-transform: uppercase;
}
#page-internas {
background-color: var(--colors-white-smoke);
} #faixa-cta {
width: 100%;
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/bg-contato.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
padding: 70px 30px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#faixa-cta h2 {
font-family: var(--fonts-outfit);
font-weight: 600;
font-size: 40px;
color: var(--colors-blue);
}
#faixa-cta p {
font-weight: 400;
font-size: 15px;
color: var(--colors-gray);
text-align: center;
}
#faixa-cta > .separator-title {
width: 130px;
height: 3px;
margin: 23px 0 27px 0;
background-color: var(--colors-orange-500);
}
#faixa-cta a {
display: inline-block;
padding: 10px 25px;
margin: 30px auto 0 auto;
background-color: var(--colors-orange-200);
font-size: 14px;
font-weight: bold;
color: var(--colors-white);
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s;
}
#faixa-cta a:hover {
background-color: var(--colors-gray);
text-decoration: none;
} #page-quemsomos {
background-color: var(--colors-white-smoke);
padding: 70px 0 35px;
}
#page-quemsomos .text-quemsomos p {
width: 404px;
font-size: 15px;
color: var(--colors-gray);
}
#section-cards-quemsomos {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
}
#section-cards-quemsomos .card-integridade {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/integridade.png);
width: 86px;
height: 96px;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
#cards-quemsomos .card-integridade {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/integridade.png);
width: 86px;
height: 96px;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
#cards-quemsomos:hover .card-integridade {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/integridade-hover.png);
}
#cards-quemsomos .card-responsabilidade {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/responsabilidade-icon.png);
width: 113px;
height: 63px;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
#cards-quemsomos:hover .card-responsabilidade {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/responsabilidade-icon-hover.png);
}
#cards-quemsomos {
background: var(--colors-white);
border: 1px solid #c9c9c9;
width: 512px;
height: 156px;
padding: 30px 45px;
transition: all 0.3s;
}
#cards-quemsomos:hover {
background: var(--colors-blue-100);
}
#cards-quemsomos .wpb_wrapper {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
#cards-quemsomos .wpb_wrapper .texts-cards-quemsomos .wpb_wrapper {
display: flex;
align-items: start;
justify-content: center;
flex-direction: column;
margin-left: 50px;
}
#cards-quemsomos .wpb_wrapper .texts-cards-quemsomos h3 {
font-size: 24px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
text-transform: uppercase;
}
#cards-quemsomos:hover .wpb_wrapper .texts-cards-quemsomos h3 {
color: var(--colors-white);
}
#cards-quemsomos .wpb_wrapper .texts-cards-quemsomos p {
font-size: 18px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-gray);
}
#cards-quemsomos:hover .wpb_wrapper .texts-cards-quemsomos p {
color: var(--colors-white);
}
#section-numbers {
height: 288px;
background-color: var(--colors-blue);
margin-top: 70px;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
#section-numbers .numbers-texts {
min-height: 158px;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
#section-numbers .numbers-texts h4 {
font-size: 80px;
font-weight: bold;
font-family: var(--fonts-outfit);
color: var(--colors-white);
}
#section-numbers .numbers-texts p {
font-size: 24px;
font-weight: 600;
font-family: var(--fonts-outfit);
color: var(--colors-white);
margin: 0;
}
#section-parceiros {
margin: 70px 0;
}
#section-parceiros .parceiros-single {
display: flex;
align-items: center;
margin-top: 70px;
max-width: 890px;
margin: 70px auto 70px auto;
}
#section-parceiros .parceiros-single .parceiros-single-img1 {
margin: 0;
}
#section-parceiros .text-quemsomos {
margin-bottom: 0;
}
#section-parceiros .text-quemsomos-left {
display: flex;
justify-content: end;
}
#section-parceiros .text-quemsomos,
.text-quemsomos-left p {
width: 404px;
font-size: 15px;
color: var(--colors-gray);
} #page-servicos {
background-color: var(--colors-white-smoke);
padding: 70px 0 35px;
}
#page-servicos .text-servicos h2 {
width: 409px;
font-size: 32px;
font-weight: 600;
font-family: var(--fonts-outfit);
color: var(--colors-blue);
}
#page-servicos .text-servicos p {
margin-top: 24px;
width: 404px;
font-size: 15px;
color: var(--colors-gray);
}
#section-cases {
background-color: var(--colors-white);
padding: 50px 0;
}
#section-cases .cases-title .separator-title {
margin-bottom: 55px;
}
#images-cases-single {
width: 490px;
height: 350px;
}
#images-cases-single .vc_right {
opacity: 1;
text-shadow: none;
color: transparent;
width: 10px;
}
#images-cases-single .vc_right,
#images-cases-single .vc_left {
opacity: 1;
text-shadow: none;
color: transparent;
}
#images-cases-single .vc_right .icon-next::before {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/12/arrow-right-white.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
top: 0;
display: flex;
width: 12px;
height: 20px;
}
#images-cases-single .vc_left .icon-prev::before {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/12/arrow-left-white.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
top: 0;
display: flex;
width: 12px;
height: 20px;
}
#images-cases-single img {
filter: brightness(90%);
}
#section-cases .cases-single .title-cases-single h4 {
font-size: 24px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
}
#section-cases .cases-single .title-cases-single p {
margin-top: 16px;
font-size: 15px;
font-weight: 400;
color: var(--colors-gray);
width: 512px;
}
#section-cases .cases-single .description-cases-single {
width: 512px;
}
#section-cases .cases-single .description-cases-single .wpb_wrapper {
display: flex;
align-items: start;
justify-content: space-between;
}
#section-cases .cases-single .description-cases-single .case-single {
display: flex;
flex-direction: column;
gap: 35px;
}
#section-cases .cases-single .description-cases-single h5 {
font-size: 15px;
font-weight: bold;
color: var(--colors-gray);
text-transform: uppercase;
}
#section-cases .cases-single .description-cases-single p {
font-size: 15px;
font-weight: 400;
color: var(--colors-gray);
width: 176px;
}
#section-cases .divisor-cases {
padding: 35px 0;
} #page-solucoes {
background-color: var(--colors-white-smoke);
padding: 70px 0;
}
#page-solucoes .text-solucoes h2 {
width: 409px;
font-size: 32px;
font-weight: 600;
font-family: var(--fonts-outfit);
color: var(--colors-blue);
}
#page-solucoes .text-solucoes p {
margin-top: 24px;
width: 404px;
font-size: 15px;
color: var(--colors-gray);
}
#nosso_processo {
margin-bottom: 60px;
}
#nosso_processo .cards-nosso-processo {
display: flex;
align-items: center;
justify-content: center;
margin: 60px 0;
}
#nosso_processo .card-single-nosso-processo {
width: 296px;
height: 341px;
padding: 50px 0 35px;
background-color: var(--colors-blue);
display: flex;
align-items: center;
justify-content: center;
}
#nosso_processo .card-single-nosso-processo .vc_column-inner .wpb_wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
#nosso_processo .img-card-nosso-processo,
#nosso_processo .text-card-nosso-processo,
#nosso_processo .arrow-card-nosso-processo {
margin: 0;
}
#nosso_processo .card-single-nosso-processo p {
font-size: 24px;
font-family: var(--fonts-outfit);
color: var(--colors-white);
font-weight: 600;
text-align: center;
padding-top: 40px;
line-height: 32px;
}
#nosso_processo .arrow-card-nosso-processo img {
width: 30px;
height: 50px;
}
#solucoes-customizadas {
padding: 60px 0;
background-color: var(--colors-white);
}
#solucoes-customizadas .sc-single {
margin-top: 60px;
padding-bottom: 70px;
}
#solucoes-customizadas .sc-single:not(:last-child) {
border-bottom: 2px solid #e2e2e2;
}
#solucoes-customizadas .text-intro-page-solucoes {
width: 370px;
margin-right: 30px;
.vc_column-inner {
padding: 0;
}
}
#solucoes-customizadas .sc-single-container {
width: 240px;
height: 440px;
border: 1px solid #c9c9c9;
.vc_column-inner {
padding: 0;
}
img {
transition: all 0.3s;
}
.text-singe-sc {
padding: 0 20px 20px;
h3 {
font-family: var(--fonts-outfit);
font-size: 24px;
font-weight: 600;
color: var(--colors-blue-100);
transition: all 0.3s;
}
h4 {
font-family: var(--fonts-outfit);
font-size: 18px;
font-weight: 600;
color: var(--colors-gray);
}
h6 {
margin: 20px 0 0;
font-size: 13px;
font-weight: 400;
color: var(--colors-gray);
}
p {
font-size: 15px;
color: var(--colors-blue-dark);
}
}
cursor: pointer;
transition: all 0.3s;
&:hover {
img {
opacity: 0.6;
}
h3 {
color: #c9c9c9;
}
}
&:not(:last-child) {
margin-right: 10px;
}
}
#solucoes-customizadas .text-sc h3 {
font-size: 32px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue);
margin-bottom: 30px;
}
#solucoes-customizadas .text-sc p {
font-size: 15px;
color: var(--colors-gray);
}
#solucoes-customizadas .text-sc p a {
text-decoration: underline;
color: var(--colors-blue);
font-weight: bold;
}
#solucoes-customizadas .text-sc ul {
padding: 0;
list-style-position: inside;
}
#solucoes-customizadas .text-sc ul li::marker {
color: var(--colors-orange-200);
margin-right: 1ch;
}
#solucoes-customizadas .text-sc ul li {
font-size: 15px;
color: var(--colors-gray);
}
#outras_solucoes {
background-color: var(--colors-blue-dark);
padding: 60px 0 100px 0;
}
#outras_solucoes .os-container {
.os-list {
.os-list-text {
margin: 0;
}
ul {
li {
color: var(--colors-white);
font-size: 15px;
font-weight: normal;
&::marker {
color: var(--colors-orange-200);
}
&:not(:last-child) {
margin-bottom: 16px;
}
}
}
}
.os-img-container {
.os-img {
text-align: end;
}
}
} #page-contato {
background-color: var(--colors-white-smoke);
padding: 70px 0 35px;
}
#page-contato .wpb_wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
} #section-produtos-main-page {
background-color: #fff;
padding-top: 70px;
padding-bottom: 70px;
}
#section-produtos-main-page .item-col {
margin-bottom: 50px;
}
#section-produtos-main-page .item-col > .vc_column-inner > .wpb_wrapper {
border: 1px solid #c9c9c9;
padding: 30px;
}
#section-produtos-main-page .prod-desc,
#section-produtos-main-page .prod-name,
#section-produtos-main-page .prod-img {
margin-bottom: 0;
}
#section-produtos-main-page .item-col h2 {
color: var(--colors-blue);
font-family: var(--fonts-outfit);
font-weight: 600;
font-size: 28px;
margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
#section-produtos-main-page .prod-name h2 {
min-height: 68px;
}
}
#section-produtos-main-page .prod-name a {
color: var(--colors-blue);
text-decoration: none;
transition: all 0.3s ease;
}
#section-produtos-main-page .prod-name a:hover {
color: #a5a5a5;
}
#section-produtos-main-page .item-col img {
margin-bottom: 20px;
transition: all 0.3s ease;
}
#section-produtos-main-page .item-col img:hover {
opacity: 0.8;
}
#section-produtos-main-page .item-col p {
color: var(--colors-gray);
font-size: 15px;
margin-bottom: 0;
} #header-produtos {
width: 100%;
height: 260px;
position: relative;
top: -190px;
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/background-header.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
#body-produtos {
margin-top: -190px;
padding-bottom: 70px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#body-produtos .container-title-produtos {
width: 100%;
background-color: var(--colors-white-smoke);
padding: 50px 0;
display: flex;
justify-content: center;
}
#body-produtos .title-produtos {
max-width: 1260px;
width: 100%;
}
#body-produtos .title-produtos h1 {
font-size: 40px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue);
}
#body-produtos .title-produtos h3 {
font-size: 24px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
margin-top: 10px;
}
#body-produtos .title-produtos p {
font-size: 15px;
font-weight: 400;
color: var(--colors-gray);
margin-top: 16px;
}
#container-category {
width: 100%;
margin-top: 50px;
display: flex;
justify-content: center;
}
#container-category .category-produtos {
max-width: 1260px;
width: 100%;
}
#container-category .category-produtos h3 {
font-size: 24px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
padding-bottom: 16px;
border-bottom: 1px solid #e2e2e2;
}
#container-category .category-produtos .container-cards {
display: flex;
align-items: center;
justify-content: start;
flex-wrap: wrap;
gap: 20px;
margin-top: 50px;
}
#container-category .category-produtos .card-category-produtos {
width: 300px;
height: auto;
border: 1px solid #dbdbdb;
overflow-y: hidden;
}
#container-category .category-produtos .card-category-produtos a:hover {
text-decoration: none;
}
#container-category .category-produtos .card-category-produtos .hover-cards { }
#container-category .category-produtos .card-category-produtos a:hover h4 {
color: #a5a5a5;
text-decoration: none;
}
#container-category .category-produtos .card-category-produtos a:hover img {
filter: grayscale(100%);
}
#container-category .category-produtos .card-category-produtos h4 {
font-size: 22px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
margin: 0;
padding: 10px 20px 0;
}
#container-category .category-produtos .card-category-produtos img {
width: 100%;
}
#container-category .category-produtos .info-category-produtos {
width: 100%;
padding: 0 20px;
}
#container-category .category-produtos .info-category-produtos h5 {
font-size: 12px;
font-weight: 400;
color: var(--colors-gray);
margin: 0;
}
#container-category .category-produtos .card-category-produtos p {
font-size: 15px;
font-weight: 400;
color: var(--colors-blue-dark);
margin: 0;
padding-bottom: 16px;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
max-height: calc(
22px * 6
); }
@supports (-webkit-line-clamp: 6) {
#container-category .category-produtos .card-category-produtos p {
display: -webkit-box;
}
.container-cards-single .card-category-produtos .info-category-produtos p {
display: -webkit-box;
}
} .container-cards-single {
max-width: 1260px;
width: 100%;
margin-top: 50px;
display: flex;
align-items: center;
justify-content: start;
flex-wrap: wrap;
gap: 30px;
}
.container-cards-single .card-category-produtos {
width: 290px;
height: auto;
border: 1px solid #dbdbdb;
overflow-y: hidden;
}
.container-cards-single .card-category-produtos .container-info-button {
height: 218px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.container-cards-single .card-category-produtos .info-category-produtos {
width: 100%;
padding: 0 20px;
}
.container-cards-single .card-category-produtos h4 {
font-size: 22px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
margin: 20px 0;
padding: 0 20px;
transition: all 0.3s;
}
.container-cards-single .card-category-produtos .info-category-produtos h5 {
font-size: 12px;
font-weight: 400;
color: var(--colors-gray);
margin: 0;
}
.container-cards-single .card-category-produtos img {
width: 100%;
padding-bottom: 10px;
transition: all 0.3s;
}
.container-cards-single .card-category-produtos:hover img {
filter: grayscale(100%);
}
.container-cards-single .card-category-produtos:hover h4 {
color: #c9c9c9;
}
.container-cards-single .card-category-produtos .info-category-produtos p {
width: 100%;
text-align: left;
font-size: 15px;
font-weight: 400;
color: var(--colors-blue-dark);
margin: 0;
padding-bottom: 16px;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
max-height: calc(
22px * 6
); }
.container-cards-single .card-category-produtos .button-card-product {
display: flex;
justify-content: center;
align-items: center;
margin: 0 20px 20px 20px;
padding: 8px 0;
background-color: var(--colors-orange-200);
color: var(--colors-white);
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
transition: all 0.3s;
}
.container-cards-single .card-category-produtos .button-card-product:hover {
background-color: #6d6863;
text-decoration: none;
}  .breadcrumb-wrapper {
color: #b7b7b7;
display: block;
font-size: 13px;
margin: 0 auto;
width: 100%;
position: absolute;
z-index: 1;
bottom: -70px;
}
.breadcrumb-wrapper .bread-container {
max-width: 1673px;
margin: 0 auto;
padding: 15px 50px;
width: 100%;
}
.breadcrumb-wrapper div {
color: #b7b7b7;
font-size: 13px;
}
.breadcrumb-wrapper a {
color: #b7b7b7;
font-size: 13px;
margin: 5px 10px;
}
.breadcrumb-wrapper a:first-child {
margin-left: 0;
}
.breadcrumb-wrapper span {
margin: 5px 10px;
}
@media screen and (max-width: 768px) {
.breadcrumb-wrapper .bread-container {
padding: 15px 30px;
}
.breadcrumb-wrapper a {
margin: 5px 0px;
}
} #single-produtos {
margin-top: -150px;
padding-bottom: 70px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#single-produtos .container-single-produtos {
max-width: 1100px;
width: 100%;
margin-top: 50px;
}
#single-produtos .container-single-produtos .first-section {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
}
#description-product h1 {
font-size: 40px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue);
}
#description-product h5 {
margin-top: 40px;
font-size: 16px;
font-weight: 700;
color: var(--colors-gray);
}
#description-product p {
font-size: 15px;
font-weight: 400;
color: var(--colors-gray);
margin: 0;
}
#description-product .cta {
}
#description-product .cta a {
display: inline-block;
padding: 10px 25px;
margin: 40px auto 0 auto;
background-color: var(--colors-orange-200);
font-size: 14px;
font-weight: bold;
color: var(--colors-white);
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s;
}
#description-product .cta a:hover {
background-color: #6d6863;
text-decoration: none;
}
#tab-product {
margin: 50px 0;
display: flex;
align-items: center;
justify-content: start;
flex-direction: row;
gap: 60px;
padding: 20px 0;
border-top: 1px solid #c5c5c5;
border-bottom: 1px solid #c5c5c5;
}
#tab-product a {
text-decoration: none;
position: relative;
}
#tab-product a.active h4::after {
content: "";
position: absolute;
width: 100%;
bottom: -21px;
border-bottom: 2px solid var(--colors-orange-200);
}
#tab-product a h4 {
font-family: var(--fonts-outfit);
font-size: 18px;
font-weight: 400;
color: var(--colors-gray);
margin: 0;
display: flex;
}
#especificacoes-tecnicas .especificacoes-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 20px;
}
#especificacoes-tecnicas .especificacoes-container p {
margin-bottom: 10px;
}
.loop-info-products p {
color: var(--colors-gray);
font-size: 15px;
margin: 0;
}
.loop-info-products p:not(:nth-last-child(2)) {
margin-bottom: 16px;
}
#modelos-da-serie table {
width: 650px;
border: 1px solid #c5c5c5;
}
#modelos-da-serie table thead {
border: 1px solid #c5c5c5;
}
#modelos-da-serie tbody tr td {
border: 1px solid #c5c5c5;
color: #666666;
font-size: 15px;
text-align: center;
padding: 4px;
}
#modelos-da-serie table th {
border: 1px solid #c5c5c5;
color: #666666;
font-size: 15px;
text-align: center;
padding: 4px;
}
.loop-product:not(:last-child) {
border-bottom: 1px solid #c5c5c5;
margin-bottom: 50px;
padding-bottom: 20px;
}
.loop-product h4 {
font-size: 24px;
font-family: var(--fonts-outfit);
font-weight: 600;
color: var(--colors-blue-100);
margin-bottom: 20px;
}
#modelos-da-serie {
display: flex;
flex-direction: column;
}
.table-product {
order: 2;
margin-bottom: 20px;
}
#download .download-container {
display: inline-flex;
gap: 50px;
}
#download .download-container .download-single a {
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
transition: all 0.3s;
font-size: 15px;
font-weight: 400;
color: var(--colors-blue-100);
}
#download .download-container .download-single a:hover {
text-decoration: none;
color: #8b8b8b;
}
#download .download-container .download-single img {
width: 30px;
height: 30px;
}
#download .download-container .download-single .pdf_download {
background-image: url(https://propel-engenharia.com.br/wp-content/themes/propel/images/icones/pdf_azul.svg);
width: 25px;
height: 30px;
transition: all 0.3s;
}
#download .download-container .download-single:hover .pdf_download {
background-image: url(https://propel-engenharia.com.br/wp-content/themes/propel/images/icones/pdf_cinza.svg);
}
#download .download-container .download-single p {
margin: 0;
font-size: 14px;
color: var(--colors-blue-100);
transition: all 0.3s;
}
#download .download-container .download-single:hover p {
color: #8b8b8b;
} .product-gallery-mobile {
display: none;
}  #vertical-slider {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
gap: 30px;
position: relative;
}
#swiper-product.swiper {
max-width: 400px;
width: 100%;
height: 400px;
}
#thumbsSlider-product {
width: 100%;
height: 100%;
}
#thumbsSlider-product {
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}
#thumbsSlider-product img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
border: 2px solid #c9c9c9;
}
#thumbsSlider-product.swiper {
width: 80px;
height: 362px;
padding: 0;
}
#thumbsSlider-product.swiper img {
opacity: 0.4;
transition: all 0.3s;
}
#thumbsSlider-product.swiper .swiper-slide-thumb-active img {
opacity: 1;
}
#thumbsSlider-product .swiper-slide {
background-size: cover;
background-position: center;
margin-bottom: 14px !important;
height: 80px !important;
}
#swiper-product img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
border: 2px solid #c9c9c9;
}
#vertical-slider img {
width: 100%;
height: 100%;
object-fit: cover;
}
#button-product-prev img,
#button-product-next img {
width: 100%;
height: 100%;
}
#vertical-slider .swiper-button-prev {
top: auto;
bottom: 0;
width: 20px;
height: 12px;
left: 30px;
margin: 0;
padding: 0;
}
#vertical-slider .swiper-button-next {
top: 0;
width: 20px;
height: 12px;
left: 30px;
margin: 0;
padding: 0;
}
#vertical-slider .swiper-button-prev:after,
#vertical-slider .swiper-button-next:after {
display: none;
}
#produtos-relacionados {
width: 100%;
margin-top: 50px;
display: flex;
align-items: center;
justify-content: center;
}
#produtos-relacionados .title-section-blue {
width: 100%;
max-width: 1260px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}  .page-id-3 {
}
.page-id-3 .internas .col-md-12 {
padding: 100px 0;
} .busca-resultados {
width: 65%;
margin: 0 auto;
padding: 70px 0;
} .busca-resultados .aviso {
color: var(--colors-gray);
font-size: 16px;
font-weight: bold;
padding: 10px 15px;
text-align: center;
margin-bottom: 40px;
} #lista-resultados-busca {
padding: 0;
margin: 0;
}
#lista-resultados-busca li {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 7px;
display: block;
float: none;
list-style: none;
margin: 0;
margin-bottom: 25px;
overflow: hidden;
padding: 15px 15px;
}
#lista-resultados-busca li:before {
display: none;
}
#lista-resultados-busca li figure {
float: left;
margin-right: 30px;
margin-bottom: 0;
width: 130px;
height: 130px;
}
#lista-resultados-busca li .titulo a:hover,
#lista-resultados-busca li figure:hover {
opacity: 0.8;
transition: all 0.3s;
}
#lista-resultados-busca li figure img {
max-width: 100%;
height: auto;
}
#lista-resultados-busca li .post-info {
}
#lista-resultados-busca li .titulo {
font-family: var(---font-titulos);
font-size: 18px;
font-weight: bold;
margin-top: 15px;
margin-bottom: 20px;
}
#lista-resultados-busca li.result-tipo-paginas .titulo {
margin: 0;
} #lista-resultados-busca li .titulo a {
color: var(--colors-blue);
text-decoration: none;
}
#lista-resultados-busca li .codigo {
margin-bottom: 10px;
}
#lista-resultados-busca li .desc p {
font-size: 14px;
margin-bottom: 0;
} #pagination-wrapper {
clear: both;
margin-top: 40px;
text-align: center;
}
#pagination-wrapper h2 {
font-size: 24px;
}
#pagination-wrapper .item-nav,
#pagination-wrapper .page-numbers {
border-radius: 7px;
display: inline-block;
padding: 8px 15px;
text-align: center;
background: #f8f8f8;
border: 1px solid #dfdfdf;
font-size: 16px;
margin: 10px 10px;
text-decoration: none;
color: var(--colors-blue-100);
}
#pagination-wrapper .page-numbers.current {
background: var(--colors-blue-100);
border-color: var(--colors-blue-100);
color: #fff;
font-weight: bold;
}
#pagination-wrapper .page-numbers:hover {
background: var(--colors-blue-100);
border-color: var(--colors-blue-100);
color: #fff;
transition: all 0.3s;
} body.error404 .page-title-wrapper {
min-height: 200px;
}
#pg-404 {
min-height: 500px;
padding: 50px 0 100px 0;
text-align: center;
max-width: 800px;
margin: 0 auto;
}
#pg-404 .ops {
font-size: 5rem;
font-weight: bold;
margin-bottom: 2rem;
}
#pg-404 h1 {
color: var(--colors-blue);
}
#pg-404 h3 {
font-size: 1.5rem;
font-weight: 500;
margin-bottom: 2rem;
} body.page-id-1610 #page-internas {
background-color: #fff;
}
#catalagos {
max-width: 1270px;
margin: 0 auto;
padding: 100px 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-row-gap: 60px;
}
#catalagos .catalago-single {
max-width: 445px;
display: flex;
align-items: center;
gap: 20px;
text-decoration: none;
}
#catalagos .linha-catalagos {
grid-column: 1 / -1;
height: 1px;
background: #ccc;
}
#catalagos .catalago-single img {
width: 209px;
}
#catalagos .catalago-single .catalago-text {
}
#catalagos .catalago-single .catalago-text h3 {
color: #6a95d9;
font-size: 24px;
line-height: 26px;
font-weight: 600;
font-family: var(--fonts-outfit);
}
#catalagos .catalago-single .catalago-text p {
color: #666666;
font-size: 14px;
line-height: 20px;
}  @media screen and (max-width: 1536px) {
.right-info-hero {
width: 375px;
}
#clientes {
padding: 80px 50px 100px 50px;
}
footer .footer1 {
gap: 50px;
padding: 60px 50px 100px 50px;
}
} @media screen and (max-width: 1440px) {
header .header-menu-nav ul li {
margin-right: 30px;
}
} @media screen and (max-width: 1366px) {
.header-menu-nav {
padding: 0 50px;
}
#hero-section .slide-item {
padding-top: 50px;
}
#hero-section .title-hero {
margin-top: 20px;
}
#hero-section .slide-item,
.right-info-hero {
height: 700px;
}
.right-info-hero {
padding: 180px 30px 0;
}
#hero-section .title-hero h1 {
font-size: 60px;
}
#hero-section .right-info-imgs {
margin-right: 40px;
gap: 10px;
padding-bottom: 30px;
}
#hero-section .right-info-imgs img {
width: 140px;
height: auto;
}
.right-info-hero .right-info-imgs {
padding-bottom: 60px;
margin: 100px 0 0 -290px;
display: flex;
flex-direction: row;
gap: 20px;
}
#body-produtos .container-title-produtos {
padding: 50px 50px;
}
#container-category {
padding: 20px 50px;
}
#single-produtos {
padding: 0 50px 70px;
}
#vertical-slider {
gap: 20px;
}
#vertical-slider .swiper-button-prev,
#vertical-slider .swiper-button-next {
left: 35px;
} #catalagos {
padding: 100px 50px;
}
} @media screen and (max-width: 1280px) {
header .header-menu-nav .logo-header {
width: 122px;
height: auto;
margin-right: 20px;
}
header .header-menu-nav ul li {
display: inline;
margin-right: 20px;
}
#hero-section .title-hero {
width: 365px;
border-color: green;
}
#hero-section .title-hero h1 {
font-size: 60px;
}
.right-info-hero {
width: 335px;
padding-left: 20px;
position: absolute;
}
.right-info-hero .right-info-imgs {
margin: 100px 0 0 -270px;
padding-bottom: 20px;
}
.right-info-hero .right-info-imgs img {
width: 197px;
height: 231px;
background-repeat: no-repeat;
background-size: cover;
transition: all 0.3s;
}
.info-single .info-text-container-left {
padding: 100px 20px 100px 0;
}
.info-single .info-text-container-right {
padding: 100px 0 100px 20px;
}
#section-areas-atuacao .areas-atuacao-container {
width: 100%;
padding: 0 50px;
}
#section-areas-atuacao .areas-atuacao-single img {
width: 155px;
height: 155px;
}
#section-areas-atuacao .areas-atuacao-single h4 {
font-size: 24px;
}
#quem-somos {
height: 500px;
}
#quem-somos .quem-somos-imgs .quem-somos-img1 {
width: 525px;
position: absolute;
top: -20px;
}
#quem-somos .quem-somos-texts {
padding: 70px 0 0 90px;
}
#cards-quemsomos {
padding: 20px 15px;
}
#section-numbers .numbers-texts {
align-items: start;
min-height: 178px;
}
#page-solucoes {
padding: 0;
margin: 90px 0 20px;
}
#page-solucoes .text-solucoes p {
width: 100%;
}
#page-servicos .text-servicos h2,
#page-servicos .text-servicos p,
#section-cases .cases-single .title-cases-single p {
width: 100%;
}
#images-cases-single {
width: 450px;
}
#section-cases .cases-single .description-cases-single {
width: 100%;
}
#container-category .category-produtos .card-category-produtos,
.container-cards-single .card-category-produtos {
width: 280px;
}
#solucoes-customizadas .text-intro-page-solucoes {
width: 340px;
}
#solucoes-customizadas .sc-single-container {
width: 190px;
.text-singe-sc {
padding: 0 10px 10px;
}
cursor: pointer;
transition: all 0.3s;
} .page-id-3 .internas .col-md-12 {
padding: 100px 20px;
}
} @media screen and (max-width: 1024px) {
header .header-menu-nav .logo-header {
margin-right: 0;
}
header .header-left {
gap: 20px;
}
header .header-left .header-contato-single {
gap: 10px;
}
header .header-menu-nav ul li {
display: inline;
margin-right: 16px;
}
#quem-somos {
display: flex;
}
#quem-somos .quem-somos-texts {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0px 0 0 70px;
}
#contato {
padding: 100px 20px;
}
#contato .form-contato {
width: 100%;
}
footer .footer1 {
display: grid;
align-items: center;
grid-template-columns: 1.5fr 1fr;
gap: 20px;
padding: 60px 50px 100px 50px;
}
footer .footer-onde-estamos {
margin-top: 50px;
}
#section-parceiros .parceiros-single-imgs .parceiros-single-img2 {
left: 0 !important;
bottom: 10px !important;
}
#section-parceiros
.parceiros-single-imgs-right
.parceiros-single-img2-right {
right: 0 !important;
bottom: 10px !important;
}
.container-cards-single {
gap: 20px;
}
.container-cards-single .card-category-produtos {
width: 280px;
}
} @media screen and (max-width: 991px) {
#hero-section .right-info-imgs {
margin-right: 50px;
}
#hero-section .right-info-imgs img {
width: 147px;
height: 201px;
}
#quem-somos {
display: flex;
align-items: center;
flex-direction: column;
height: 620px;
gap: 20px;
}
#quem-somos .quem-somos-imgs .quem-somos-img1 {
width: 280px;
}
#quem-somos .quem-somos-texts {
padding: 0;
text-align: center;
}
#quem-somos .quem-somos-texts .quem-somos-texts-separator {
margin: 23px auto 35px;
}
#quem-somos .quem-somos-imgs {
order: 2;
}
#page-quemsomos .text-quemsomos p {
padding-right: 30px;
}
#cards-quemsomos {
width: 412px;
}
#section-numbers .numbers-texts h4 {
font-size: 60px;
}
#section-numbers .numbers-texts p {
font-size: 20px;
}
#page-solucoes {
display: flex;
flex-direction: column;
}
#page-solucoes .text-intro-page-solucoes,
#page-solucoes .text-page-solucoes,
#page-solucoes .text-solucoes h2 {
width: 100%;
}
#page-solucoes .imgs-solucoes {
width: 100%;
}
#page-solucoes .imgs-solucoes .img1-solucoes {
text-align: center;
}
#solucoes-customizadas .sc-single {
display: flex;
flex-direction: column; }
#solucoes-customizadas .text-intro-page-solucoes {
width: 100%;
}
#solucoes-customizadas .sc-single-imgs-right {
width: 100%;
order: 2;
}
#solucoes-customizadas .sc-single-imgs-right .sc-single-img1 {
text-align: center;
}
#solucoes-customizadas .sc-single-imgs {
width: 100%;
order: 2;
}
#images-cases-single {
width: 350px;
}
#swiper-product.swiper {
max-width: 400px;
}
#solucoes-customizadas .sc-single-container {
width: 90%;
height: auto;
text-align: center;
margin-left: auto !important;
margin-right: auto !important;
.img-single-sc {
text-align: center;
}
&:not(:last-child) {
margin-bottom: 35px;
}
}
#solucoes-customizadas .text-sc ul li {
text-align: left;
}
#outras_solucoes .os-container {
display: flex;
flex-direction: column;
.os-list {
width: 100%;
margin-bottom: 35px;
}
.os-img-container {
width: 100%;
.os-img {
text-align: center;
margin: 0;
}
}
} .page-id-3 .internas .col-md-12 {
padding: 50px 0px;
}
} @media screen and (max-width: 900px) {
header .header-separator,
header .header-left-none,
header .header-social,
.buscaText-xs,
#menu-superior-wrapper,
.right-info-hero,
#hero-section .right-info-imgs {
display: none;
}
header .header-container {
padding: 40px 30px;
} body:not(
body.page-template-template-home,
body.page-template-page-bombas-hidropneumaticas,
body.tax-produtos,
body.page-template-template-produtos,
body.single-produto
)
#header {
height: 220px;
}
#page-internas {
padding-top: 50px;
}
#page-title {
height: 220px;
text-align: center;
}
#page-title header h1 {
font-size: 32px;
}
#divBusca {
z-index: 1;
}
#divBusca.hidden-divBusca {
z-index: 0;
}
#divBusca img {
width: 20px;
height: 20px;
}
#menu-mobile {
width: 24px;
height: 30px;
}
#menu-mobile span {
height: 2px;
width: 24px;
margin: 6px 0;
}
header .header-menu-nav .logo-header {
margin-right: 10px;
}
.header-buttons {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
.visible-xs {
display: block;
} #section-cards {
padding: 70px 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
}
#section-cards .cards-single {
width: 100%;
padding: 30px 50px;
}
#section-cards .cards-single .cards-text {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
}
#section-cards h2 {
font-family: var(--fonts-outfit);
font-size: 32px;
font-weight: 600;
color: var(--colors-blue);
}
#section-cards p {
font-size: 15px;
color: var(--colors-gray);
width: 350px;
}
#section-cards .produtos-img {
border-right: 0;
border-left: 0;
border-top: 1px solid #acacac;
border-bottom: 1px solid #acacac;
} .info-single {
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.info-single .solucao-info-left,
.info-single .produtos-info-right,
.info-single .servicos-info-left {
width: 100%;
height: 422px;
display: flex;
justify-content: center;
align-items: center;
order: 1;
}
.info-single .solucao-info-left .info-text-container-left,
.info-single .produtos-info-right .info-text-container-right,
.info-single .servicos-info-left .info-text-container-left {
float: none;
text-align: center;
}
.info-single .info-text-container-right {
padding: 100px 0 100px 6px;
}
.info-single .info-texts {
margin: 0 auto;
margin-bottom: 20px;
max-width: 100%;
}
.info-single .info-texts p,
h3 {
text-align: center !important;
}
.info-single .solucao-img-container,
.info-single .produtos-img-container,
.info-single .servicos-img-container {
width: 100%;
height: 422px;
order: 2;
}
#quem-somos .quemsomos-container {
width: 100%;
height: 520px;
padding: 0 20px;
}
#quem-somos .quem-somos-imgs {
padding-left: 50px;
}
#quem-somos .quem-somos-imgs .quem-somos-img1 {
width: 254px;
height: 320px;
position: absolute;
top: -20px;
}
#quem-somos .quem-somos-texts {
width: 50%;
display: flex;
flex-direction: column;
justify-content: center; }
#quem-somos .quem-somos-texts p {
width: 100%;
}
#page-quemsomos {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#page-quemsomos .imgs-quemsomos {
width: 70%;
}
#page-quemsomos .text-quemsomos p {
width: 100%;
}
#page-quemsomos .text-quemsomos {
width: 100%;
}
#section-cards-quemsomos {
flex-direction: column;
}
#section-cards-quemsomos .card-integridade,
#section-cards-quemsomos
.card-responsabilidade
#section-cards-quemsomos
.texts-cards-quemsomos {
margin: 0;
}
#cards-quemsomos {
width: 100%;
}
#section-parceiros .parceiros-single { margin-top: 50px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#section-parceiros .parceiros-single-imgs,
#section-parceiros .parceiros-single-imgs-right {
width: 100%;
margin-bottom: 30px;
}
#section-parceiros .parceiros-single .parceiros-single-img1 {
text-align: center;
}
#section-parceiros .parceiros-single .parceiros-single-txt {
width: 100%;
order: 2;
}
#section-parceiros .text-quemsomos,
.text-quemsomos-left p {
width: 100%;
text-align: start !important;
}
#page-solucoes {
padding: 0;
margin: 0 0 20px;
}
#page-servicos {
display: flex;
flex-direction: column;
width: 100%;
padding: 0 15px 30px 15px; }
#page-servicos .text-servicos-container {
width: 100%;
}
#page-servicos .imgs-serivcos {
width: 100%;
}
#page-servicos .imgs-serivcos .img1-servicos {
text-align: center;
}
#page-contato {
padding: 0;
}
.form-contato {
width: 100%;
}  #container-category .category-produtos .card-category-produtos h4 {
font-size: 24px;
}
#single-produtos {
padding: 0 40px 70px;
}
#single-produtos .container-single-produtos .first-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 30px;
}
#vertical-slider {
display: none;
}
#single-produtos {
margin-top: -190px;
}
#single-produtos
.container-single-produtos
.first-section
.product-gallery {
order: 2;
}
#description-product h1 {
text-align: left;
}
#description-product {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
text-align: left;
} .product-gallery-mobile {
display: block;
order: 2;
}
#horizontal-slider {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 20px;
position: relative;
}
#mobile-swiper-product.swiper {
max-width: 600px;
width: 100%; height: auto;
background-color: #14182e;
}
#mobile-thumbsSlider-product {
width: 100%;
height: 100%;
}
#mobile-thumbsSlider-product {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
#mobile-thumbsSlider-product img {
display: block;
object-fit: cover;
border: 2px solid #c9c9c9;
}
#mobile-thumbsSlider-product.swiper {
width: 100%;
max-width: 500px;
height: 60px;
padding: 0;
}
#mobile-thumbsSlider-product .swiper-wrapper {
display: flex;
flex-direction: row;
}
#mobile-thumbsSlider-product.swiper img {
opacity: 0.4;
transition: all 0.3s;
}
#mobile-thumbsSlider-product.swiper .swiper-slide-thumb-active img {
opacity: 1;
}
#mobile-thumbsSlider-product.swiper-slide {
background-size: cover;
background-position: center;
}
#mobile-swiper-product img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
border: 2px solid #c9c9c9;
}
#horizontal-slider img {
width: 100%;
height: 100%;
object-fit: cover;
}
#button-product-prev img,
#button-product-next img {
width: 100%;
height: 100%;
}
#horizontal-slider .swiper-button-prev,
#horizontal-slider .swiper-button-next {
top: auto;
bottom: 23px;
width: 14px;
height: 14px;
margin: 0;
}
#horizontal-slider .swiper-button-prev:after,
#horizontal-slider .swiper-button-next:after {
display: none;
} #tab-product {
flex-wrap: wrap;
} #catalagos {
width: 100%;
margin: 0 auto;
grid-template-columns: repeat(1, 1fr);
grid-row-gap: 30px;
padding: 15px 20px 30px 20px;
}
#catalagos .linha-catalagos {
display: none;
}
#catalagos .catalago-single {
border-bottom: 1px solid #ccc;
padding-bottom: 30px;
margin: 0 auto;
}
#catalagos .catalago-single:last-child {
border-bottom: none;
}
#catalagos .catalago-single .catalago-text h3 {
font-size: 20px;
text-align: initial !important;
} .page-id-3 .internas .col-md-12 {
padding: 15px 20px;
}
.page-id-3 .internas .col-md-12 h3 {
text-align: inherit !important;
}
} @media screen and (max-width: 768px) { .separator-title {
margin: 10px 0 27px 0;
}
.title-section-blue h2 {
font-size: 30px;
text-align: center;
}
.title-section-white h2 {
font-size: 30px;
margin: 0;
}
.title-section-blue p {
width: 100%;
}
.swiper {
margin: 0;
} header .header-container {
padding: 20px 30px 5px;
}
.header-search .section-search {
padding: 0 20px;
}
.header-search button {
top: 40px;
right: 20px;
}
.header-search input {
font-size: 28px;
}
.header-search input::placeholder {
font-size: 28px;
}
.text-title {
width: 100%;
padding: 0 50px;
font-weight: 400;
font-size: 15px;
color: var(--colors-gray);
text-align: center;
} footer .footer1 {
display: grid;
align-items: center;
grid-template-columns: 1fr;
gap: 20px;
padding: 50px 30px 40px 30px;
}
footer .footer1 .footer-propel {
gap: 0;
}
footer .footer1 .footer-propel p {
padding: 16px 0;
margin: 0;
width: 100%;
}
footer .footer-menu {
padding-left: 0;
margin-top: 30px;
}
footer .footer-onde-estamos {
margin-top: 30px;
gap: 0;
}
footer .footer-contato {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
footer .footer2 {
padding: 12px 30px;
}
footer .footer2 h2 {
flex-direction: column;
}
footer .footer2 h2 span {
display: none;
}
footer .footer2 .footer-text {
font-size: 14px;
}
footer .footer2 .footer-text .footer2-urls {
margin-top: 8px;
display: flex;
align-items: center;
gap: 4px;
flex-direction: column;
text-align: center;
}
footer .footer2 .footer-text .footer2-urls span {
display: none;
} #section-hero {
display: flex;
flex-direction: column;
justify-content: center;
padding-top: 70px;
background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/slide-01.jpg);
background-position: center;
background-size: cover;
height: 714px;
}
#section-hero header .header-menu-nav {
padding: 20px 20px;
}
#section-hero header .header-left-mobile {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
gap: 0;
width: 100%;
}
#section-hero header .header-menu-nav ul {
display: none;
}
#hero-section .slide-item {
height: 714px;
}
#hero-section .slide-item .hero-container {
padding: 0 20px;
}
#hero-section .title-hero {
width: 100%;
margin-top: 100px;
text-align: center;
}
#hero-section .title-hero h1 {
font-size: 50px;
line-height: 1.1;
}
#hero-section .btn-hero {
text-align: center;
}
#section-hero .right-info-hero {
display: none;
}
#section-cards {
padding: 35px 0;
}
#section-cards .cards-single {
padding: 30px;
}
#section-cards .cards-single .cards-text h2 {
margin-bottom: 20px;
}
#section-cards p {
width: 100%;
}
#section-cards .cards-single figure {
min-height: auto;
}
.info-single .info-texts {
margin-bottom: 35px;
}
.info-single .info-text-container-left,
.info-single .info-text-container-right {
padding: 50px 30px 35px 30px;
}
.info-single .solucao-info-left,
.info-single .produtos-info-right,
.info-single .servicos-info-left {
height: auto;
}
#section-areas-atuacao .areas-atuacao-single .wpb_single_image {
margin-bottom: 16px;
}
#quem-somos {
background-image: url(https://propel-engenharia.com.br/wp-content/uploads/2023/11/bg-quem-somos.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
padding: 35px 25px 15px 25px !important;
height: auto;
}
#quem-somos .quemsomos-container {
width: 100%;
height: 620px;
padding: 0;
margin: 0 auto;
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#quem-somos .quem-somos-texts p:nth-child(1) {
display: none;
}
#quem-somos .quem-somos-imgs {
display: none;
}
#quem-somos .quem-somos-imgs .quem-somos-img1 {
display: none;
}
#quem-somos .quem-somos-texts {
width: 100%;
padding: 0;
text-align: center;
}
#quem-somos .quem-somos-texts .quem-somos-texts-separator {
margin: 10px auto 35px;
}
#quem-somos
.quem-somos-texts
.vc_column-inner
.wpb_wrapper
.wpb_text_column {
margin: 0;
}
#quem-somos .wpb_wrapper {
display: flex;
flex-direction: column;
align-items: flex-start;
}
#quem-somos .quem-somos-texts p {
text-align: left;
}
#quem-somos .quem-somos-imgs-mobile {
width: 100%;
position: absolute;
bottom: -100px;
}
#quem-somos .quem-somos-texts h2 {
font-size: 30px;
}
#section-areas-atuacao { padding: 50px 20px 25px 20px;
}
#distribuidora {
padding: 50px 15px 15px 15px;
}
#distribuidora .distribuidora-logos {
gap: 30px;
}
#clientes {
padding: 50px 15px 0;
}
#clientes .title-section-white {
margin-bottom: 25px;
}
#contato {
padding: 50px 15px 0 !important;
} #page-quemsomos {
margin-top: 0;
padding: 0 20px !important;
}
#page-quemsomos .imgs-quemsomos {
width: 100%;
}
#page-quemsomos .text-quemsomos p {
text-align: left;
padding: 0;
}
#section-cards-quemsomos {
padding: 0 30px;
gap: 0;
}
#cards-quemsomos {
height: auto;
padding: 50px 0;
}
#cards-quemsomos:first-child {
margin-bottom: 30px;
}
#cards-quemsomos .vc_column-inner .wpb_wrapper {
display: flex;
flex-direction: column;
}
#cards-quemsomos .wpb_wrapper .texts-cards-quemsomos .wpb_wrapper {
width: 100%;
margin-left: 0;
align-items: center;
}
#cards-quemsomos .texts-cards-quemsomos {
margin: 0;
}
#cards-quemsomos .card-integridade {
margin-bottom: 35px;
}
#section-parceiros .text-quemsomos-left {
margin-bottom: 0;
}
#cards-quemsomos .wpb_wrapper .texts-cards-quemsomos p,
#section-parceiros .text-quemsomos,
.text-quemsomos-left p {
text-align: center !important;
}
#section-numbers {
flex-direction: column;
height: auto;
gap: 50px;
padding: 0;
}
#section-numbers .numbers-texts {
width: 100%;
min-height: auto;
}
#section-numbers .numbers-texts p {
font-size: 24px;
margin: 0;
}
#section-parceiros {
margin: 0;
padding: 50px 20px 25px 20px !important;
}
#section-parceiros .parceiros-single {
margin: 35px auto;
}
#section-parceiros .parceiros-single-imgs {
margin-top: 20px;
}
#section-parceiros .logo {
text-align: left;
}
#section-parceiros {
text-align: left;
}
#section-parceiros .text-quemsomos,
.text-quemsomos-left p {
text-align: left !important;
}
#cards-quemsomos .wpb_wrapper .texts-cards-quemsomos p {
}
#section-parceiros .parceiros-single:not(:nth-child(2)) {
margin-top: 30px;
}
#faixa-cta {
padding: 50px 25px 60px 25px;
}
#faixa-cta h2 {
font-size: 30px;
text-align: center;
} #page-solucoes {
padding: 0 20px 35px 20px;
margin: 0;
}
#nosso_processo {
margin-bottom: 0;
}
#nosso_processo .cards-nosso-processo {
flex-direction: column;
gap: 30px;
margin: 35px 0;
}
#nosso_processo .arrow-card-nosso-processo img {
transform: rotate(270deg) scaleX(-1);
}
#solucoes-customizadas {
margin: 0 auto;
padding: 45px 0;
}
#solucoes-customizadas .sc-single {
padding: 0;
margin-top: 35px;
}
#solucoes-customizadas .sc-single-container {
margin: 0 0 35px;
}
#outras_solucoes .os-container {
.os-img-container {
.os-img {
margin-bottom: 35px;
padding: 0 15px;
}
}
}
#solucoes-customizadas .sc-single-container h3 {
font-size: 28px !important;
}
#solucoes-customizadas .sc-single-container h4 {
font-size: 22px !important;
}
#solucoes-customizadas .sc-single-container p {
font-size: 17px !important;
}
#solucoes-customizadas .sc-single-container h6 {
font-size: 15px !important;
}
#solucoes-customizadas .sc-single:nth-child(2) {
margin-top: 0;
}
#solucoes-customizadas .text-sc {
text-align: center;
}
#solucoes-customizadas .text-sc h3 {
font-size: 26px;
text-align: left !important;
}
#solucoes-customizadas .text-sc p {
text-align: left;
}
#solucoes-customizadas .text-intro-page-solucoes {
padding: 0 20px;
margin-right: 0;
}
#outras_solucoes {
padding: 50px 10px 25px 10px !important;
}
#outras_solucoes .title-section-white {
margin-bottom: 25px;
}
#section-cases .cases-single {
width: 100%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: left;
}
#section-cases {
padding: 50px 15px 0 !important;
}
#section-cases .cases-title {
margin: 0;
}
#section-cases .cases-title .separator-title {
margin-bottom: 35px;
}
#section-cases .divisor-cases {
padding: 0;
} #page-servicos {
margin: 0;
}
#page-servicos .text-servicos-container {
text-align: left;
}
#section-cases .cases-single .case-text {
order: 1;
width: 100%;
}
#section-cases .cases-single .case-img {
order: 2;
}
#images-cases-single {
width: 100%;
height: auto;
}
#images-cases-single .vc_right {
width: 50px;
}
#section-cases .cases-single .description-cases-single .wpb_wrapper {
display: flex;
flex-direction: column;
gap: 16px;
}
#section-cases .cases-single .description-cases-single p {
width: 100%;
} #page-contato {
margin: 0;
} body.page-id-2071 #page-internas {
padding-top: 0;
}
#section-produtos-main-page {
padding: 60px 30px 15px 30px !important;
}
#section-produtos-main-page .item-col img {
max-width: 85%;
} #body-produtos .container-title-produtos {
padding: 35px 35px;
}
#container-category {
padding: 0 30px;
}
#container-category .category-produtos .card-category-produtos {
width: 85%;
height: auto;
margin: 0 auto 25px auto;
padding-bottom: 30px;
}
#body-produtos .title-produtos p {
font-size: 16px;
}
#body-produtos .title-produtos h1 {
text-align: left;
margin-bottom: 30px;
}
#body-produtos .title-produtos h2 {
font-size: 28px;
}
#body-produtos .title-produtos h3 {
font-size: 19px;
text-align: left !important;
}
#container-category .category-produtos h3 {
text-align: left !important;
}
#container-category .category-produtos .info-category-produtos h5 {
font-size: 14px;
}
#container-category .category-produtos .card-category-produtos p {
font-size: 17px;
} .container-cards-single {
gap: 30px;
padding: 0 30px;
}
.container-cards-single .card-category-produtos {
width: 85%;
height: auto;
margin: 0 auto 25px auto;
}
.container-cards-single .card-category-produtos h4 {
font-size: 20px;
} #single-produtos {
margin-top: -200px;
padding-bottom: 35px;
}
#description-product p {
font-size: 16px;
}
#horizontal-slider {
max-width: 380px;
}
.loop-product:not(:last-child) {
margin-bottom: 35px;
}
.loop-info-products p {
font-size: 16px;
}
#tab-product {
flex-direction: column;
gap: 12px;
}
#tab-product a.active h4 {
color: var(--colors-orange-200);
font-weight: 600;
}
#tab-product a.active h4::after {
display: none;
}
#especificacoes-tecnicas .especificacoes-container {
grid-template-columns: repeat(1, 1fr);
}
#download .download-container {
display: inline-flex;
flex-direction: column;
gap: 30px;
}
#download .download-container .download-single a {
justify-content: start;
}
#produtos-relacionados {
margin-top: 70px;
}
#produtos-relacionados .container-cards-single .card-category-produtos {
width: 100%;
} #page-title header .tituloDaPagDeBusca {
font-size: 28px;
text-align: center;
}
#pag-busca-wrapper #page-title {
padding-bottom: 30px;
}
.busca-resultados {
padding: 35px 0 10px;
width: 100%;
}
.busca-resultados .aviso {
font-size: 18px;
padding: 0;
margin-bottom: 35px;
} #politica-privacidade {
padding: 0;
} #pg-404 .ops {
font-size: 3.5rem;
margin-bottom: 1.8rem;
}
#pg-404 h1 {
font-size: 2rem;
}
#pg-404 h3 {
font-size: 1.3rem;
margin-bottom: 1.8rem;
} #catalagos .catalago-single img {
width: 30%;
}
#catalagos .catalago-single .catalago-text h3 {
font-size: 24px;
line-height: 1.2;
}
#catalagos .catalago-single .catalago-text p {
font-size: 16px;
line-height: 1.3;
}
}
@media screen and (max-width: 425px) {
#horizontal-slider {
max-width: 280px;
}
}