* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
color: #333;
background: #fff;
line-height: 1.6;
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .hero {
position: relative;
background-size: cover;
background-position: center;
height: 480px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}
.hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.55);
}
.hero-inner {
position: relative;
z-index: 2;
max-width: 800px;
}
.hero h1 {
font-size: 2.2rem;
margin-bottom: 15px;
text-transform: uppercase;
}
.hero p {
font-size: 1.05rem;
margin-bottom: 25px;
} .btn {
background: #ee2c3c;
color: #fff;
padding: 12px 28px;
border-radius: 25px;
font-weight: 500;
transition: background 0.3s;
display: inline-block;
}
.btn:hover {
background: #d92630;
}  .sobre{
padding: 90px 20px;
background: #fff;
}
.sobre-grid{
display: flex;
align-items: center;
gap: 70px;
} .sobre-texto{
flex: 1;
max-width: 620px;
}
.sobre-texto h2{
font-size: clamp(2.2rem, 1.8rem + 1.4vw, 2.8rem); font-weight: 800;
color: #1e1e1e;
line-height: 1.15;
margin-bottom: 18px;
text-transform: uppercase;
letter-spacing: -0.5px;
}
.sobre-texto h2 strong{
color: #C52332;
}
.sobre-texto h3.sub{
font-size: 20px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: #C52332;
margin-bottom: 26px;
} .sobre-texto p{
font-size: 14px;
font-weight: 400;
line-height: 1.75;
color: #444;
margin-bottom: 18px;
} .sobre-midia{
flex: 1;
display: flex;
justify-content: center;
}
.sobre-img{
width: 100%;
max-width: 800px;
height: auto;
} @media (max-width: 900px){
.sobre-grid{
flex-direction: column;
gap: 50px;
}
.sobre-texto{
max-width: 100%;
}
.sobre-texto h2,
.sobre-texto h3.sub{
text-align: center;
}
}  .produtos-home {
padding: 140px 0 80px; background: #F5F5F5;
position: relative;
} .produtos-home .sec-title {
position: absolute;
top: 30px; left: 50%;
transform: translateX(-50%);
background: #C52332;
color: #fff;
padding: 16px 60px;
border-radius: 0 0 12px 12px;
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
box-shadow: 0 6px 18px rgba(0,0,0,0.12);
letter-spacing: .5px;
z-index: 10;
} .card .link {
display: inline-block;
margin-top: 15px;
padding: 12px 28px;
font-weight: 700;
font-size: 1rem;
background: #C52332 !important; color: #fff !important;
border-radius: 6px 0 6px 6px;
text-transform: uppercase;
transition: .25s ease;
}
.card .link:hover {
background: #A51D29 !important;
} .prod-carousel .prod-nav {
width: 60px;
height: 60px;
border-radius: 50%;
background: #ffffff !important;
border: 2.5px solid #C52332;
box-shadow: 0 8px 24px rgba(0,0,0,0.18);
transition: 0.25s ease;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 20;
} .prod-carousel .prod-nav::after {
font-size: 35px;
font-weight: 700;
color: #C52332;
} .prod-carousel .prev::after {
content: "‹";
} .prod-carousel .next::after {
content: "›";
} .prod-carousel .prod-nav:hover {
background: #C52332 !important;
border-color: #C52332;
}
.prod-carousel .prod-nav:hover::after {
color: #fff !important;
} .prod-carousel .prev {
left: -30px;
}
.prod-carousel .next {
right: -30px;
} @media (max-width: 600px) { .prod-carousel {
padding-bottom: 90px;
position: relative;
} .prod-carousel .prod-nav {
width: 52px;
height: 52px;
top: auto; bottom: 15px; transform: none;
background: #ffffff !important;
border: 2.5px solid #C52332;
box-shadow: 0 6px 18px rgba(0,0,0,0.18);
} .prod-carousel .prev {
left: 50%;
transform: translateX(-70px);
} .prod-carousel .next {
right: 50%;
transform: translateX(70px);
} .prod-carousel .prod-nav::after {
font-size: 24px;
}
} @media (max-width: 600px) {
.produtos-home .sec-title {
position: relative;          
top: auto;
left: auto;
transform: none;
display: inline-block;
margin: 0 auto 30px auto;
padding: 14px 32px;
font-size: 18px;
line-height: 1.2;
border-radius: 8px;
white-space: nowrap;       
} .produtos-home {
padding-top: 80px;
}
} .diferenciais {
padding: 80px 20px;
text-align: center;
}
.diferenciais h2 {
margin-bottom: 40px;
}
.diferenciais .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}
.diferenciais .card {
padding: 25px;
border: 1px solid #eee;
border-radius: 12px;
background: #fff;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.diferenciais i {
color: #C52332;
width: 36px;
height: 36px;
margin-bottom: 10px;
} .whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 25px;
right: 25px;
z-index: 999;
}
.whatsapp-float img {
width: 100%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
} @media (max-width: 900px) {
.car-item { min-width: 50%; }
.hero { height: 400px; }
}
@media (max-width: 600px) {
.car-item { min-width: 100%; }
.hero h1 { font-size: 1.6rem; }
.hero p { font-size: 0.95rem; }
} .header {
background: #fff;
border-bottom: 3px solid #ee2c3c;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
padding: 15px 0;
position: relative; z-index: 1000;
transition: all 0.3s ease;
} .header.shrink {
padding: 5px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header {
position: sticky;
top: 0;
z-index: 9999;
background: #fff;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
} .admin-bar .header {
top: 32px; } .header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
transition: all 0.3s ease;
} .logo img {
height: 30px;
display: block;
transition: height 0.3s ease;
}
.header.shrink .logo img {
height: 35px;
} .header-right {
display: flex;
align-items: center;
justify-content: flex-end;
flex: 1;
gap: 25px;
} .menu {
display: flex;
list-style: none;
gap: 25px;
margin: 0;
padding: 0;
transition: all 0.3s ease;
}
.menu a {
color: #333;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.3s, font-size 0.3s ease;
}
.menu a:hover,
.menu .current-menu-item a {
color: #ee2c3c;
}
.header.shrink .menu a {
font-size: 0.9rem;
} .search-form {
display: flex;
align-items: center;
border: 1px solid #ddd;
border-radius: 25px;
padding: 5px 10px;
background: #f9f9f9;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}
.search-form input {
border: none;
background: transparent;
outline: none;
font-size: 0.9rem;
width: 160px;
}
.search-form button {
border: none;
background: none;
color: #666;
cursor: pointer;
padding-left: 5px;
}  .idiomas {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin: 0;
padding: 0;
} .idiomas a {
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border-radius: 50%;
overflow: hidden;
background: #fff;
border: 2px solid transparent;
transition: all 0.25s ease-in-out;
cursor: pointer;
} .idiomas a .fi {
font-size: 22px;
line-height: 1;
} .idiomas a:hover {
transform: scale(1.12);
border-color: #C52332; } .idiomas a.active,
.idiomas a[aria-current="language"] {
border-color: #C52332;
box-shadow: 0 0 6px rgba(197, 35, 50, 0.4);
transform: scale(1.08);
} @media (max-width: 1024px) {
.idiomas {
gap: 10px;
}
.idiomas a {
width: 32px;
height: 32px;
}
.idiomas a .fi {
font-size: 20px;
}
}  .pf-footer {
background: #f4f4f4;
color: #717170;
font-family: 'Roboto', sans-serif;
padding: 25px 0 0;
} .pf-container {
width: 90%;
max-width: 1300px;
margin: auto;
} .pf-logo-area {
text-align: center;
margin-bottom: 10px;
}
.pf-logo {
width: 140px;
height: auto;
} .pf-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
} .pf-col h3 {
font-size: 20px;
font-weight: 700;
color: #C52332;
margin-bottom: 14px;
} .pf-col p {
font-size: 15px;
line-height: 1.6;
color: #444;
} .pf-col ul {
list-style: none;
padding: 0;
margin: 0;
}
.pf-col ul li {
margin-bottom: 8px;
}
.pf-col ul li a {
color: #444;
text-decoration: none;
font-weight: 500;
transition: 0.25s;
}
.pf-col ul li a:hover {
color: #C52332;
} .pf-social a {
color: #717170;
font-size: 24px;
margin-right: 12px;
transition: 0.25s;
}
.pf-social a:hover {
color: #C52332;
} .pf-divider {
width: 100%;
height: 5px;
background: #C52332;
margin-top: 15px;
} .pf-copy {
background: #C52332;
color: #fff;
text-align: center;
padding: 8px 0;
font-size: 15px;
font-weight: 500;
} .pf-logo-area img.pf-logo {
width: 160px !important; max-width: 160px !important;
height: auto !important;
display: block;
margin: 0 auto 4px; } .politica h1 {
font-size: 2rem;
font-weight: 700;
}
.politica h2 {
margin-top: 40px;
color: #ee2c3c;
font-size: 1.3rem;
}
.politica h3 {
margin-top: 25px;
font-size: 1.1rem;
color: #333;
}
.politica p, .politica ul {
color: #333;
font-size: 1rem;
line-height: 1.7;
margin-bottom: 15px;
}
.politica ul {
list-style: disc;
margin-left: 25px;
}
.politica a {
color: #ee2c3c;
text-decoration: none;
}
.politica a:hover {
text-decoration: underline;
} .privacidade-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #fff;
padding: 20px 30px;
box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
border-top: 4px solid #ee2c3c;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
z-index: 9999;
animation: slideUp 0.4s ease;
}
@keyframes slideUp {
from { transform: translateY(100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.privacidade-banner p {
margin: 0;
font-size: 1rem;
color: #333;
}
.privacidade-banner a {
color: #ee2c3c;
font-weight: bold;
text-decoration: none;
}
.privacidade-banner button {
background: #ee2c3c;
color: #fff;
border: none;
padding: 12px 25px;
border-radius: 5px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: 0.2s;
}
.privacidade-banner button:hover {
background: #d32032;
} @media (max-width: 768px) {
#cookie-banner {
flex-direction: column;
text-align: center;
padding: 12px 16px;
gap: 10px;
}
#cookie-banner p {
font-size: 0.85rem;
line-height: 1.4;
}
#btn-cookie-ok {
padding: 6px 14px;
font-size: 0.8rem;
border-radius: 4px;
width: auto;
}
}
@media (max-width: 480px) {
#cookie-banner {
padding: 10px 14px;
}
#btn-cookie-ok {
padding: 5px 12px;
font-size: 0.75rem;
}
} .produtos-home {
padding: 80px 20px;
text-align: center;
}
.sec-title {
text-align: center;
font-size: 2rem;
font-weight: 700;
margin-bottom: 10px;
}
.title-divider {
width: 20px;
height: 20px;
margin: 0 auto 40px;
background-image: url('data:image/svg+xml;utf8,<svg width="40" height="25" xmlns="http://www.w3.org/2000/svg"><path fill="%23C52332" d="M20 0 40 25H0z"/></svg>');
background-repeat: no-repeat;
background-size: contain;
} .prod-carousel {
position: relative;
}
.prod-track-wrapper {
overflow: hidden;
width: 100%;
}
.prod-track {
display: flex;
gap: 30px;
transition: transform .4s ease;
} .prod-item {
min-width: 260px;
}
.prod-card {
background: #fff;
border-radius: 12px;
display: block;
text-align: center;
padding-bottom: 20px;
box-shadow: 0 12px 25px rgba(0,0,0,0.08);
transition: transform .3s ease;
}
.prod-card:hover {
transform: translateY(-4px);
}
.prod-img-wrap {
width: 100%;
height: 170px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.prod-img {
width: 100%;
height: 100%;
object-fit: contain;
padding: 10px;
}
.prod-title {
font-size: 1rem;
font-weight: 700;
margin: 15px 0;
}  .prod-btn{
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #C52332;
color: #fff;
padding: 14px 34px;
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .6px;
border-radius: 6px 0 6px 6px;
position: relative;
margin-top: 14px;
text-decoration: none;
cursor: pointer;
transition: .25s ease;
box-shadow: 0 8px 22px rgba(0,0,0,.18);
} .prod-btn:hover{
background:#A51D29;
transform: translateY(-1px);
box-shadow: 0 12px 28px rgba(0,0,0,.22);
} .prod-btn:focus{
outline:none;
box-shadow: 0 0 0 3px rgba(197,35,50,.35);
} .prod-btn.sm{
padding: 10px 26px;
font-size: 14px;
} .prod-carousel .prod-nav {
width: 60px;
height: 60px;
border-radius: 50%;
background: #ffffff;
border: 3px solid #C52332;
color: #C52332;
font-size: 28px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
transition: 0.25s ease;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 20;
}
.prod-carousel .prod-nav:hover {
background: #C52332;
color: #fff;
border-color: #C52332;
} .prod-carousel .prev { left: -40px; }
.prod-carousel .next { right: -40px; } @media (max-width: 900px) {
.prod-carousel .prev { left: -20px; }
.prod-carousel .next { right: -20px; }
}
@media (max-width: 600px) {
.prod-carousel .prod-nav {
width: 48px;
height: 48px;
font-size: 24px;
top: calc(100% - 25px);
transform: translateY(-50%);
}
.prod-carousel .prev { left: 20%; }
.prod-carousel .next { right: 20%; }
} .produtos-title {
font-size: 42px;
text-align: center;
font-weight: 800;
color: #222;
margin-top: 40px;
margin-bottom: 5px;
}
.produtos-subtitle-line {
width: 80px;
height: 4px;
background: #E30613;
margin: 0 auto 40px auto;
border-radius: 3px;
} .produtos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 35px;
max-width: 1300px;
margin: 0 auto 60px auto;
padding: 0 20px;
} .produto-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: #ffffff;
padding: 25px;
border-radius: 18px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: all .3s ease;
cursor: pointer;
}
.produto-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
} .produto-img img {
width: 100%;
max-width: 250px;
height: 180px;
object-fit: contain;
margin-bottom: 20px;
transition: transform .3s ease;
}
.produto-card:hover .produto-img img {
transform: scale(1.05);
} .produto-title {
font-size: 18px;
font-weight: 700;
color: #222;
text-transform: uppercase;
line-height: 1.3;
min-height: 55px;
margin-bottom: 15px;
} .produto-btn {
padding: 10px 20px;
background: #E30613;
color: #fff;
font-weight: 600;
font-size: 15px;
border-radius: 10px;
transition: .3s ease;
display: inline-block;
margin-top: auto;
}
.produto-btn:hover {
background: #b00510;
} .produto-card {
opacity: 0;
transform: translateY(20px);
animation: fadeCard .5s forwards ease;
}
@keyframes fadeCard {
to {
opacity: 1;
transform: translateY(0);
}
} .segmentos-title-wrapper {
text-align: center;
margin-top: 40px;
margin-bottom: 35px;
}
.segmentos-title-bar {
display: inline-block;
background: #C52332;
color: #fff;
font-size: 26px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.8px;
padding: 14px 42px;
border-radius: 6px;
position: relative; clip-path: polygon(
0 0,
100% 0,
100% 65%,
92% 100%,
0 100%
);
} @media(max-width: 650px){
.segmentos-title-bar {
font-size: 20px;
padding: 10px 26px;
}
.segmentos-title-bar::after {
border-top: 18px solid transparent;
border-bottom: 18px solid transparent;
border-left: 14px solid #C52332;
right: -14px;
}
} .produtos-grid .produto-card:nth-child(1) { animation-delay: .1s; }
.produtos-grid .produto-card:nth-child(2) { animation-delay: .2s; }
.produtos-grid .produto-card:nth-child(3) { animation-delay: .3s; }
.produtos-grid .produto-card:nth-child(4) { animation-delay: .4s; }
.produtos-grid .produto-card:nth-child(5) { animation-delay: .5s; }
.produtos-grid .produto-card:nth-child(6) { animation-delay: .6s; }
.produtos-grid .produto-card:nth-child(7) { animation-delay: .7s; }
.produtos-grid .produto-card:nth-child(8) { animation-delay: .8s; } .produto-banner {
height: 380px;
background-size: cover;
background-position: center;
position: relative;
}
.produto-banner .overlay {
background: rgba(0,0,0,0.55);
position: absolute;
inset: 0;
}
.banner-content {
position: relative;
z-index: 2;
text-align: center;
top: 50%;
transform: translateY(-50%);
color: #fff;
}
.banner-content h1 {
font-size: 48px;
font-weight: 800;
}
.banner-content .subtitulo {
font-size: 20px;
opacity: .85;
margin: 10px 0 20px;
}
.btn-banner {
background: #E30613;
padding: 12px 25px;
color: white;
border-radius: 8px;
text-decoration: none;
} .produto-container {
max-width: 1200px;
margin: 60px auto;
padding: 0 20px;
} .produto-destaques {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
gap: 25px;
margin-bottom: 60px;
}
.dest-card {
background: #fff;
padding: 22px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.10);
} .produto-beneficios ul,
.produto-aplicacoes ul {
margin-left: 22px;
line-height: 1.7;
} .galeria-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
gap: 15px;
}
.gal-item img {
border-radius: 8px;
width: 100%;
object-fit: cover;
} .produto-contato {
background: #f5f5f5;
padding: 40px;
border-radius: 15px;
text-align: center;
}
.btn-whatsapp {
background: #25D366;
padding: 12px 25px;
color: #fff;
border-radius: 10px;
text-decoration: none;
}  .pf-produto-container {
max-width: 1200px;
margin: 60px auto;
padding: 0 20px;
font-family: 'Roboto', sans-serif;
} .pf-produto-container h2 {
font-size: 34px;
font-weight: 700;
margin: 40px 0 15px;
color: #222;
} .pf-produto-container p,
.pf-produto-container li {
font-size: 18px;
line-height: 1.6;
color: #444;
} .pf-produto-container img {
max-width: 100%;
height: auto;
display: block;
margin: 25px auto;
} .pf-destaques {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 40px;
}
.pf-dest-card {
background: #fff;
border: 1px solid #e7e7e7;
padding: 25px;
text-align: center;
border-radius: 6px;
transition: 0.3s;
}
.pf-dest-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.pf-dest-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
} .pf-galeria-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-top: 20px;
}
.pf-galeria-grid img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 5px;
} .pf-pdf-btn {
display: inline-block;
background: #ee2c3c;
color: #fff;
padding: 12px 25px;
border-radius: 4px;
font-weight: 600;
margin-top: 10px;
transition: 0.3s;
}
.pf-pdf-btn:hover {
background: #c70a18;
} .pf-btn-whatsapp {
background: #25d366;
color: #fff;
padding: 14px 30px;
font-size: 18px;
border-radius: 6px;
display: inline-block;
margin-top: 20px;
font-weight: 700;
transition: 0.3s;
}
.pf-btn-whatsapp:hover {
background: #128c4a;
}  .pf-produto-banner {
position: relative;
background-position: center;
background-size: cover;
padding: 120px 20px;
text-align: center;
color: #fff;
margin-bottom: 50px;
}
.pf-overlay {
position: absolute;
top:0; left:0; right:0; bottom:0;
background: rgba(0,0,0,0.4);
}
.pf-banner-content {
position: relative;
z-index:2;
}
.pf-banner-content h1 {
font-size: 46px;
font-weight: 800;
margin: 0 0 15px;
text-transform: uppercase;
}
.pf-subtitulo {
font-size: 22px;
margin-bottom: 25px;
}
.pf-produto-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px 60px;
}
.pf-produto-container h2 {
font-size: 32px;
font-weight: 700;
margin: 40px 0 20px;
color: #222;
}
.pf-produto-container .pf-texto p {
font-size: 18px;
line-height: 1.7;
color: #444;
margin-bottom: 20px;
}
.pf-imagem-alinhada img {
width: 100%;
height: auto;
margin: 30px auto;
}
.pf-destaques {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}
.pf-dest-card {
background: #fff;
padding: 30px;
border: 1px solid #e5e5e5;
text-align: center;
border-radius: 6px;
transition: transform 0.3s, box-shadow 0.3s;
}
.pf-dest-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.pf-dest-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
}
.pf-dest-card p {
font-size: 16px;
line-height: 1.6;
color: #555;
}
.pf-beneficios ul, .pf-aplicacoes ul {
padding-left: 20px;
margin-top: 20px;
}
.pf-beneficios li, .pf-aplicacoes li {
font-size: 18px;
color: #444;
margin-bottom: 10px;
}
.pf-pdf-btn {
display: inline-block;
background: #EE2C3C;
color: #fff;
padding: 12px 28px;
font-size: 16px;
font-weight: 600;
border-radius: 4px;
margin-top: 15px;
text-decoration: none;
transition: background 0.3s;
}
.pf-pdf-btn:hover {
background: #c70a18;
}
.pf-galeria-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 30px;
}
.pf-galeria-grid img {
width: 100%;
height: 260px;
object-fit: cover;
border-radius: 5px;
}
.pf-btn-whatsapp {
background: #25d366;
color: #fff;
padding: 16px 34px;
font-size: 18px;
font-weight: 700;
border-radius: 6px;
margin-top: 30px;
display: inline-block;
text-decoration: none;
transition: background 0.3s;
}
.pf-btn-whatsapp:hover {
background: #128c4a;
}
@media (max-width: 900px) {
.pf-destaques,
.pf-galeria-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.pf-destaques,
.pf-galeria-grid {
grid-template-columns: 1fr;
}
.pf-banner-content h1 {
font-size: 32px;
}
}
.btn-pdf {
display: inline-block;
background: #0073e6;
padding: 15px 35px;
color: white;
border-radius: 6px;
text-transform: uppercase;
font-weight: bold;
font-size: 16px;
text-decoration: none;
transition: 0.2s;
}
.btn-pdf:hover {
background: #005bb5;
} .pf-obras-hero {
height: 380px;
background: url(https://via.placeholder.com/1600x600?text=Obras+Planefibra) center/cover no-repeat;
border-radius: 18px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
overflow:hidden;
}
.pf-obras-hero::after {
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}
.pf-obras-hero-inner {
position:relative;
z-index:2;
color:white;
max-width:800px;
}
.pf-obras-hero-inner h1 {
font-size:50px;
font-weight:800;
margin:0;
}
.pf-obras-hero-inner p {
font-size:20px;
opacity:.9;
} .pf-container {
max-width:1350px;
margin:auto;
padding:50px 20px;
}
.pf-galeria-grid {
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:30px;
} .pf-galeria-item {
position:relative;
border-radius:16px;
overflow:hidden;
cursor:pointer;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:.3s;
} .pf-hero {
height: 500px;
background-size: cover;
background-position: center;
position: relative;
display: flex;
align-items: center;
}
.pf-hero .container h1 {
color: #fff;
font-size: 48px;
font-weight: 800;
} .grid-vantagens {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
gap: 30px;
}
.vantagem-item {
text-align: center;
}
.vantagem-item img {
width: 60px;
margin-bottom: 15px;
}
.vantagem-item h3 {
font-size: 20px;
margin-bottom: 8px;
}
.vantagem-item p {
font-size: 16px;
} .grid-caracteristicas {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
gap: 40px;
list-style: none;
padding: 0;
}
.grid-caracteristicas li {
text-align: center;
}
.grid-caracteristicas li img {
width: 80px;
margin-bottom: 12px;
}
.grid-caracteristicas li h4 {
font-size: 18px;
margin-bottom: 6px;
}
.grid-caracteristicas li p {
font-size: 15px;
} .pf-aplicacoes ul {
list-style: none;
padding: 0;
}
.pf-aplicacoes li {
font-size: 16px;
margin-bottom: 10px;
} .pf-cta {
background: #005baa;
color: #fff;
text-align: center;
padding: 60px 20px;
}
.pf-cta h2 {
font-size: 28px;
margin-bottom: 20px;
} .pf-texto {
font-family: 'Roboto', sans-serif;
color: #444;
line-height: 1.8;
font-size: 18px;
max-width: 900px;
margin: 0 auto 40px auto;
} .pf-texto h1,
.pf-texto h2,
.pf-texto h3,
.pf-texto h4 {
font-weight: 700; color: #222;
margin: 50px 0 15px 0;
line-height: 1.3;
} .pf-texto h2 {
font-size: 32px;
}
.pf-texto h3 {
font-size: 24px;
}
.pf-texto h4 {
font-size: 20px;
} .pf-texto p {
margin-bottom: 18px;
font-size: 18px;
color: #444;
} .pf-texto ul,
.pf-texto ol {
margin: 25px 0 25px 40px;
}
.pf-texto li {
margin-bottom: 12px;
font-size: 18px;
color: #444;
} .pf-texto strong {
color: #C52332; } .pf-texto hr {
margin: 40px 0;
border: none;
border-bottom: 2px solid #eee;
} .pf-texto img {
max-width: 100%;
margin: 30px auto;
display: block;
}  .pf-card-box {
background: #ffffff;
padding: 35px 40px;
border-radius: 14px;
margin: 40px auto;
max-width: 1000px;
border-left: 6px solid #C52332;
box-shadow: 0 5px 25px rgba(0,0,0,0.07);
position: relative;
} .pf-card-box::before {
content: "";
width: 55px;
height: 6px;
background: #C52332;
position: absolute;
top: -6px;
left: 0;
border-radius: 0 0 6px 0;
} .pf-card-box h2 {
font-weight: 700;
color: #222;
font-size: 30px;
margin-bottom: 20px;
} .pf-texto p {
font-size: 18px;
line-height: 1.8;
margin-bottom: 18px;
color: #444;
}
.pf-texto h2,
.pf-texto h3 {
margin-top: 35px;
margin-bottom: 15px;
font-weight: 700;
color: #222;
} .faq-item {
background: #fff;
border: 1px solid #e7e7e7;
border-radius: 12px;
margin-bottom: 15px;
padding: 16px 22px;
cursor: pointer;
position: relative;
transition: 0.3s ease;
}
.faq-item:hover {
box-shadow: 0 4px 18px rgba(0,0,0,0.08);
transform: translateY(-2px);
}
.faq-pergunta {
font-size: 18px;
font-weight: 700;
color: #C52332;
padding-right: 20px;
}
.faq-pergunta::after {
content: "+";
position: absolute;
right: 20px;
top: 18px;
font-size: 20px;
color: #C52332;
transition: .3s;
}
.faq-item.active .faq-pergunta::after {
content: "-";
}
.faq-resposta {
margin-top: 12px;
display: none;
line-height: 1.7;
font-size: 17px;
}
.faq-item.active .faq-resposta {
display: block;
} .pf-cta-final {
margin: 60px auto 80px auto;
text-align: center;
padding: 40px 20px;
}
.pf-cta-final h2 {
font-size: 32px;
font-weight: 700;
color: #222;
margin-bottom: 18px;
}
.pf-cta-final p {
font-size: 18px;
color: #555;
margin-bottom: 25px;
} .pf-wpp-btn {
display: inline-flex;
align-items: center;
gap: 12px;
background: #25D366;
color: #fff;
padding: 14px 28px;
border-radius: 50px;
font-size: 18px;
font-weight: 600;
box-shadow: 0 5px 18px rgba(0,0,0,0.1);
transition: .3s ease;
}
.pf-wpp-btn:hover {
background: #1ebe5b;
transform: translateY(-3px);
box-shadow: 0 7px 25px rgba(0,0,0,0.15);
}
.pf-wpp-btn i {
font-size: 22px;
} @media (max-width: 600px) {
.pf-cta-final h2 {
font-size: 26px;
}
.pf-wpp-btn {
font-size: 16px;
padding: 12px 24px;
}
} .pf-orcamento-btn {
display: inline-block;
background: #C52332; color: #fff;
padding: 14px 32px;
font-size: 20px;
font-weight: 700;
border: none;
text-decoration: none;
border-radius: 4px 4px 4px 0;
position: relative;
transition: .3s ease;
}
.pf-orcamento-btn::after {
content: "";
position: absolute;
right: -16px;
top: 0;
width: 0;
height: 0;
border-top: 26px solid transparent;
border-bottom: 26px solid transparent;
border-left: 16px solid #C52332;
}
.pf-orcamento-btn:hover {
background: #EE2C3C;
}
.pf-orcamento-btn:hover::after {
border-left-color: #EE2C3C;
} .pf-orcamento-wrapper {
text-align: center;
padding: 50px 10px;
} .pf-texto img {
width: 100%;
max-width: 1000px; height: auto;
display: block;
margin: 40px auto;
border-radius: 12px;
} .pf-imagem-institucional {
max-width: 1200px;
margin: 50px auto;
}
.pf-imagem-institucional img {
width: 100%;
height: auto;
border-radius: 14px;
box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}
.produtos {
padding: 40px 0 80px;
background: #fafafa;
}
.produtos .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 35px;
}
.produto-card {
background: #fff;
border-radius: 15px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
text-align: center;
padding: 25px 20px 35px;
transition: all 0.3s ease;
position: relative;
}
.produto-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.produto-card .img-box {
width: 100%;
height: 160px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
overflow: hidden;
border-radius: 10px;
background: #f5f5f5;
}
.produto-card .img-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s ease;
}
.produto-card:hover .img-box img {
transform: scale(1.05);
}
.produto-card h3 {
font-size: 1.1rem;
color: #222;
margin-bottom: 10px;
font-weight: 700;
}
.produto-card p {
color: #555;
font-size: 0.95rem;
margin-bottom: 25px;
line-height: 1.5;
padding: 0 10px;
}
.btn-produto {
display: inline-block;
background: #ee2c3c;
color: #fff;
font-weight: 600;
padding: 12px 28px;
border-radius: 30px;
text-decoration: none;
transition: .3s ease;
box-shadow: 0 3px 6px rgba(238, 44, 60, 0.3);
font-size: 1rem;
}
.btn-produto:hover {
background: #d9292c;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(238, 44, 60, 0.4);
}
@media (max-width: 768px) {
.produto-card {
padding: 20px;
}
.produto-card .img-box {
height: 140px;
}
.btn-produto {
padding: 10px 22px;
font-size: 0.9rem;
}
} .diferenciais {
text-align: center;
padding: 60px 20px;
background: #fff;
}
.diferenciais h2 {
color: #C52332;
font-size: 1.6rem;
margin-bottom: 20px;
font-weight: 700;
text-transform: uppercase;
}
.diferenciais p {
color: #333;
max-width: 850px;
margin: 10px auto 40px;
line-height: 1.6;
} .diferenciais .grid {
display: grid;
grid-template-columns: repeat(5, 1fr); gap: 20px;
align-items: stretch;
} .diferenciais .card {
background: #fff;
border-radius: 12px;
padding: 20px 15px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
} .diferenciais .card:hover {
transform: translateY(-6px);
box-shadow: 0 6px 15px rgba(0,0,0,0.1);
} .diferenciais .card i {
width: 38px;
height: 38px;
stroke: #C52332;
margin-bottom: 10px;
} .diferenciais .card h3 {
font-size: 0.9rem; margin-bottom: 8px;
font-weight: 700;
color: #222;
text-transform: uppercase;
}
.diferenciais .card p {
color: #555;
font-size: 0.85rem; line-height: 1.4;
} .diferenciais .marker {
width: 0;
height: 0;
margin: 5px auto 10px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 7px solid #ee2c3c;
} @media (max-width: 1400px) {
.diferenciais .card {
padding: 18px 12px;
}
.diferenciais .card p {
font-size: 0.8rem;
}
.diferenciais .card h3 {
font-size: 0.85rem;
}
} @media (max-width: 1100px) {
.diferenciais .grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
} .pf-residuos {
padding: 80px 0;
background: #fff;
}
.residuos-grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 50px;
}
.residuos-img img {
width: 100%;
height: auto;
border-radius: 12px;
}
.residuos-text h2 {
font-size: 44px;
font-weight: 800;
color: #333;
line-height: 1.2;
margin-bottom: 25px;
text-transform: uppercase;
}
.residuos-text h2 span {
color: #C52332;
}
.residuos-text p {
font-size: 14px;
color: #444;
line-height: 1.7;
margin-bottom: 15px;
} @media (max-width: 900px) {
.residuos-grid {
grid-template-columns: 1fr;
text-align: justify;
}
.residuos-text h2 {
font-size: 32px;
}
}  .contato-section {
padding: 100px 20px;
position: relative;
overflow: hidden;
z-index: 1;
} .contato-section::before {
content: "";
position: absolute;
inset: 0;
background-image: url(http://planefibra.com.br/wp-content/uploads/2025/12/triangle_pattern_009-scaled.jpg) !important;
background-size: cover !important;
background-position: center !important;
background-repeat: no-repeat !important;
opacity: 0.20;
z-index: 0;
pointer-events: none; } .contato-section > * {
position: relative;
z-index: 2;
}
.contato-wrapper {
max-width: 1250px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: stretch; }
.pf-form-col{
max-width: 640px;
margin-left:auto;
}
.pf-form-box{
background:#ffffff;
border-radius: 4px;
padding: 32px 26px;
box-shadow: 0 12px 40px rgba(0,0,0,0.10);
position: relative;
} .pf-form-box input,
.pf-form-box textarea{
width:100%;
border:1px solid #e4e4e4;
border-radius: 4px;
background:#fafafa;
padding: 11px 14px;
font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
margin-bottom: 16px;
outline:none;
transition:.2s;
} .pf-form-box input::placeholder,
.pf-form-box textarea::placeholder{
color:#7c7c7c;
opacity:1;
} .pf-form-box input:focus,
.pf-form-box textarea:focus{
background:#fff;
border-color:#C52332;
box-shadow:0 0 4px rgba(197,35,50,0.25);
} .pf-form-box textarea{
height:120px;
} .pf-form-box input[type="submit"]{
width:160px;
background:#E42231;
color:#fff;
font-size:1rem;
font-weight:600;
padding:12px 0;
border:none;
border-radius:4px;
cursor:pointer;
display:block;
margin:25px auto 0 auto;
position:relative;
} .pf-form-box input[type="submit"]::after{
content:"";
position:absolute;
right:-10px;
bottom:0;
width:12px;
height:12px;
background:#E42231;
clip-path: polygon(0 0, 100% 100%, 0 100%);
} .pf-form-box input[type="submit"]:hover{
background:#C52332;
} .wpcf7-not-valid{
border-color:#E42231 !important;
background:#fff0f0 !important;
}
.wpcf7-not-valid-tip{
color:#E42231;
font-size:0.8rem;
margin-top:-8px;
margin-bottom:12px;
} .contato-mapa .mapa-box {
height: 100%;
min-height: 540px;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}
.contato-mapa .mapa-box iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
} @media (max-width: 992px) {
.contato-wrapper {
grid-template-columns: 1fr;
gap: 50px;
}
.contato-card {
padding: 40px 30px;
max-width: 500px;
margin: 0 auto;
}
.contato-mapa .mapa-box {
min-height: 460px;
}
}
@media (max-width: 576px) {
.contato-section { padding: 70px 15px; }
.contato-card { padding: 35px 25px; }
.contato-card h2 { font-size: 24px; }
.contato-mapa .mapa-box { min-height: 400px; }
} @media (max-width: 768px) { .contato-section {
padding: 60px 16px;
} .contato-wrapper {
grid-template-columns: 1fr;
gap: 40px;
align-items: stretch;
} .pf-form-col {
max-width: 100%;
margin: 0 auto;
}
.pf-form-box {
padding: 32px 22px;
border-radius: 10px;
}
.pf-form-box h2 {
text-align: center;
font-size: 20px;
margin-bottom: 20px;
} .pf-form-box input,
.pf-form-box textarea {
font-size: 16px; padding: 14px 14px;
} .pf-form-box input[type="submit"] {
width: 100%;
max-width: 260px;
padding: 14px 0;
font-size: 16px;
margin-top: 20px;
} .pf-form-box input[type="submit"]::after {
display: none;
} .contato-mapa .mapa-box {
min-height: 320px;
border-radius: 14px;
}
} @media (max-width: 480px) {
.pf-form-box {
padding: 28px 18px;
}
.pf-form-box h2 {
font-size: 18px;
}
.contato-mapa .mapa-box {
min-height: 280px;
}
}  .contato-header {
padding: 0;   
margin: 0;
text-align: center;
}
.contato-header h1 {
color: #C52332;
font-size: 42px;
font-weight: 800;
margin-bottom: 8px;
}
.contato-header p {
font-size: 18px;
color: #555;
}  .contato-cards-section {
padding: 20px 0 40px;
}
.contato-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 40px;
}
.contato-card-info {
background: #fff;
padding: 38px 30px;
border-radius: 22px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.07);
transition: .3s ease;
}
.contato-card-info:hover {
transform: translateY(-6px);
box-shadow: 0 16px 45px rgba(0,0,0,0.12);
} .icon-box {
width: 70px;
height: 70px;
background: #C52332;
color: #fff;
border-radius: 14px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
} .contato-card-info h3 {
font-weight: 700;
color: #222;
font-size: 22px;
margin-bottom: 8px;
}
.contato-card-info p {
color: #444;
font-size: 17px;
line-height: 1.6;
} .contato-form-mapa {
padding: 80px 20px;
}
.contato-form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 45px;
} .contato-form-card {
background: #fff;
padding: 40px 35px;
border-radius: 18px;
box-shadow: 0 12px 45px rgba(0,0,0,0.08);
}
.contato-form-card h2 {
text-align: center;
font-size: 30px;
font-weight: 800;
color: #C52332;
margin-bottom: 25px;
} .contato-form-card .wpcf7-form p {
margin: 0 0 20px !important;
}
.contato-form-card input[type="text"],
.contato-form-card input[type="email"],
.contato-form-card input[type="tel"],
.contato-form-card textarea {
width: 100% !important;
padding: 14px 16px !important;
border: 1px solid #ddd !important;
border-radius: 10px !important;
background: #fafafa !important;
font-size: 16px !important;
font-family: 'Roboto', sans-serif !important;
transition: all .3s ease !important;
box-sizing: border-box !important;
}
.contato-form-card textarea {
min-height: 130px !important;
}
.contato-form-card input:focus,
.contato-form-card textarea:focus {
border-color: #C52332 !important;
background: #fff !important;
box-shadow: 0 0 0 3px rgba(197,35,50,0.22) !important;
outline: none !important;
} .contato-form-card input[type="submit"] {
background: #C52332 !important;
color: #fff !important;
border: none !important;
padding: 16px 20px !important;
width: 100% !important;
border-radius: 10px !important;
font-size: 18px !important;
font-weight: 700 !important;
text-transform: uppercase;
letter-spacing: 0.8px;
cursor: pointer;
transition: .3s ease;
}
.contato-form-card input[type="submit"]:hover {
background: #a81223 !important;
transform: translateY(-2px);
} .contato-title-wrapper {
text-align: center;
margin-top: 50px;
margin-bottom: 40px;
}
.contato-title-bar {
display: inline-block;
background: #C52332;
color: #fff;
font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
padding: 14px 42px;
border-radius: 6px;
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
position: relative; clip-path: polygon(
0 0,
100% 0,
100% 65%,
92% 100%,
0 100%
);
}
@media (max-width: 600px){
.contato-title-bar{
font-size: 1.3rem;
padding: 12px 30px;
clip-path: polygon(
0 0,
100% 0,
100% 88%,
94% 100%,
0 100%
);
}
} @media(max-width: 650px){
.contato-title-bar {
font-size: 20px;
padding: 10px 28px;
}
.contato-title-bar::after {
border-top: 18px solid transparent;
border-bottom: 18px solid transparent;
border-left: 14px solid #C52332;
right: -14px;
}
} .contato-mapa-card {
width: 100%;
height: 500px;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 12px 45px rgba(0,0,0,0.08);
}
.contato-mapa-card iframe {
width: 100%;
height: 100%;
border: 0;
} @media (max-width: 900px) {
.contato-form-grid {
grid-template-columns: 1fr;
}
.contato-mapa-card {
height: 400px;
}
} .sobre-banner {
height: 380px;
background: url(https://via.placeholder.com/1920x600?text=Planefibra) center/cover no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}
.sobre-banner-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.42);
}
.sobre-banner h1 {
font-size: 50px;
font-weight: 800;
}
.sobre-banner p {
font-size: 20px;
opacity: .9;
}
.trajetoria-section {
padding-top: 20px !important;
margin-top: 0 !important;
} .trajetoria-section,
.trajetoria-section * {
margin-top: 0 !important;
padding-top: 0 !important;
} .trajetoria-section {
margin-top: -120px !important; } .trajetoria-title-wrapper{
text-align: center;
margin: 20px 0 40px;
}
.trajetoria-title{
display: inline-block;
background: #C52332;
color: #fff;
font-size: 28px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px; padding: 14px 40px;
border-radius: 1px;
box-shadow: 0 12px 30px rgba(0,0,0,0.15); clip-path: polygon(
0 0,
100% 0,
100% 65%,
92% 100%,
0 100%
);
}
@media (max-width: 600px){
.trajetoria-title{
font-size: 1.3rem;
padding: 12px 30px;
clip-path: polygon(
0 0,
100% 0,
100% 88%,
94% 100%,
0 100%
);
}
} .trajetoria-section {
padding: 10px 0;
}
.trajetoria-carousel {
position: relative;
}
.trajetoria-track-wrapper {
overflow: hidden;
}
.trajetoria-track {
display: flex;
gap: 40px;
transition: transform .4s ease;
} .trajetoria-item {
min-width: 350px;
max-width: 350px;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
padding: 25px;
text-align: center;
flex-shrink: 0;
}
.trajetoria-year {
font-size: 26px;
font-weight: 800;
color: #C52332;
margin-bottom: 15px;
}
.trajetoria-img img {
width: 100%;
border-radius: 12px;
margin-bottom: 20px;
}
.trajetoria-text p {
font-size: 16px;
line-height: 1.6;
color: #555;
} .trajetoria-prev,
.trajetoria-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #C52332;
color: #fff;
border: none;
width: 45px;
height: 45px;
border-radius: 50%;
font-size: 24px;
cursor: pointer;
z-index: 10;
transition: .3s;
}
.trajetoria-prev:hover,
.trajetoria-next:hover {
background: #A71222;
}
.trajetoria-prev {
left: -20px;
}
.trajetoria-next {
right: -20px;
} @media (max-width: 700px) {
.trajetoria-item {
min-width: 270px;
}
.trajetoria-prev, .trajetoria-next {
display: none;
}
} .mvv-section {
background: #fafafa;
padding: 80px 0;
}
.mvv-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
gap: 40px;
}
.mvv-box {
background: #fff;
padding: 35px;
border-radius: 16px;
box-shadow: 0 6px 25px rgba(0,0,0,0.06);
text-align: center;
}
.mvv-icon {
width: 85px;
height: auto;
margin: 0 auto 20px auto;
opacity: 0.85; }
.mvv-box h3 {
font-size: 26px;
font-weight: 800;
color: #C52332;
margin-bottom: 15px;
}
.mvv-box p,
.mvv-box ul li {
font-size: 17px;
color: #444;
line-height: 1.55;
} .mvv-icon {
width: 90px; height: 90px;
object-fit: contain; display: block;
margin: 0 auto 20px auto;
opacity: 0.9; }
.mvv-box ul {
padding-left: 0;
list-style: none;
} .mvv-icon {
width: 90px;
height: 90px;
object-fit: contain;
filter: invert(42%) sepia(1%) saturate(0%) hue-rotate(180deg) brightness(96%) contrast(88%);
} .qualidade-section {
padding: 80px 0;
}
.qualidade-box {
text-align: center;
max-width: 900px;
margin: auto;
}
.qualidade-box h2 {
color: #C52332;
font-size: 36px;
font-weight: 800;
margin-bottom: 20px;
}
.qualidade-box p {
font-size: 18px;
line-height: 1.8;
color: #444;
}  .entry-header,
.entry-content > *:first-child {
margin-top: 0 !important;
padding-top: 0 !important;
} .trajetoria-section {
padding-top: 20px !important;
margin-top: 0 !important;
}  .traj-item {
padding: 20px 22px;
min-height: 540px; display: flex;
flex-direction: column;
justify-content: flex-start;
} .traj-year {
margin-bottom: 14px;
font-size: 24px;
} .traj-img {
height: 160px !important; margin-bottom: 15px;
} .traj-text {
font-size: 16px;
line-height: 1.45;
margin-top: 5px;
} .traj-item p {
margin-bottom: 10px;
} .traj-item {
border-radius: 14px;
box-shadow: 0 8px 24px rgba(0,0,0,0.07);
} .traj-text {
text-align: left !important;
} .traj-prev,
.traj-next {
top: 50%;
transform: translateY(-50%);
position: absolute;
z-index: 20;
} .traj-prev {
left: -60px !important; }
.traj-next {
right: -60px !important; } .trajetoria-carousel {
overflow: visible !important;
}
.traj-item,
.trajetoria-section,
.traj-track-wrapper {
box-shadow: none !important;
} .secao-depoimentos {
padding: 60px 0;
background: #f5f5f5;
}
.titulo-depoimentos {
text-align: center;
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
}  .a2a_kit .a2a_dd,
.a2a_dd {
display: none !important;
visibility: hidden !important;
opacity: 0 !important;
width: 0 !important;
height: 0 !important;
overflow: hidden !important;
pointer-events: none !important;
} .dep-carousel {
position: relative;
width: 100%;
margin-top: 30px;
}
.dep-track-wrapper {
overflow: hidden;
width: 100%;
}
.dep-track {
display: flex;
gap: 30px;
transition: transform .4s ease;
} .pf-depo-item {
min-width: 400px;
max-width: 400px;
background: #fff;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
padding: 25px;
flex-shrink: 0;
}
.dep-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: var(--pf-red);
color: #fff;
border: none;
padding: 12px 18px;
font-size: 26px;
border-radius: 50%;
cursor: pointer;
transition: .25s ease;
z-index: 10;
}
.dep-nav:hover { background: var(--pf-red-dark); }
.dep-prev { left: -20px; }
.dep-next { right: -20px; }
@media(max-width: 600px){
.pf-depo-item {
min-width: 85%;
}
.dep-prev { left: 5px; }
.dep-next { right: 5px; }
} @media (max-width: 600px) { .dep-carousel {
margin-top: 10px;
} .dep-carousel .sec-title,
.depoimentos .sec-title {
margin-top: 0 !important;
margin-bottom: 20px !important;
padding: 12px 28px;
font-size: 16px;
line-height: 1.2;
}
}
:root {
--pf-red: #C52332;
--pf-red-dark: #A51D29;
--pf-gray: #717170;
--pf-dark: #1e1e1e;
}   .titulo-segmentos {
text-align: center;
font-size: 42px;
font-weight: 800;
color: var(--pf-dark);
margin-bottom: 40px;
position: relative;
}
.titulo-segmentos::after {
content: "";
width: 70px;
height: 5px;
background: var(--pf-red);
display: block;
margin: 15px auto 0;
transform: skewX(-25deg);
}   :root{
--cardW: 380px;
} .segmento-grid{
display: grid;
grid-template-columns: repeat(auto-fit, var(--cardW));
gap: 35px;
justify-content: center; } .segmento-card{
width: var(--cardW); } .segmento-card {
background: #fff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 18px 45px rgba(0,0,0,0.10);
transition: .3s ease;
height: 380px; 
display: flex;
flex-direction: column;
max-width: 420px;
width: 100%;
}
.segmento-card:hover {
transform: translateY(-6px);
} .segmento-slider {
position: relative;
height: 150px;
overflow: hidden;
border-radius: 24px 24px 0 0;
}
.segmento-slide {
position: absolute;
inset: 0;
opacity: 0;
transform: scale(1.05);
transition: opacity .5s ease, transform .5s ease;
}
.segmento-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.segmento-slide.active {
opacity: 1;
transform: scale(1);
} .seg-prev,
.seg-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 0;
background: rgba(0,0,0,0.4);
color: #fff;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 18px;
z-index: 5;
}
.seg-prev { left: 12px; }
.seg-next { right: 12px; }
.seg-prev:hover,
.seg-next:hover {
background: rgba(0,0,0,0.65);
} .segmento-card-content {
padding: 18px 20px;
flex: 1;
display: flex;
flex-direction: column;
align-items: center; text-align: center; }
.segmento-card-content h3 {
font-size: 19px;
font-weight: 800;
margin-bottom: 14px;
color: #222;
}
.segmento-card-content p {
font-size: 15px;
color: #555;
min-height: 48px;
} .btn-ver-produtos {
display: inline-block;
padding: 10px 22px;
background: #C52332;
color: #fff;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: .25s ease;
font-size: 14px;
margin-top: auto; align-self: center; }
.btn-ver-produtos:hover {
background: #A51D29;
} @media (max-width: 768px) {
.segmento-card-content {
padding: 20px;
}
.segmento-slider {
height: 200px;
}
}   @media (max-width: 768px) {
.titulo-segmentos {
font-size: 32px;
}
} .mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
}
@media (max-width: 992px) {
.header-right { display: none; }
.mobile-menu-btn { display: block; }
} .mobile-menu {
position: fixed;
top: 0;
right: -280px; width: 280px;
height: 100vh;
background: #fff;
box-shadow: -2px 0 8px rgba(0,0,0,.2);
padding: 20px 25px;
z-index: 1001;
transition: right .3s ease;
display: flex;
flex-direction: column;
gap: 20px;
}
.mobile-menu.open {
right: 0; }
.mobile-menu-logo img {
max-width: 160px;
height: auto;
}
.close-mobile-menu {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
cursor: pointer;
} .mobile-menu-list {
list-style: none;
padding: 0;
margin: 60px 0 10px;
text-align: left;
}
.mobile-menu-list li {
margin-bottom: 10px;
}
.mobile-menu-list a {
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
color: #333;
} .mobile-search {
display: flex;
margin-top: 10px;
}
.mobile-search input {
flex: 1;
border: 1px solid #ccc;
padding: 6px 8px;
font-size: 14px;
}
.mobile-search button {
border: none;
background: #e30613; color: #fff;
padding: 0 10px;
cursor: pointer;
} .mobile-langs {
margin-top: 10px;
display: flex;
gap: 12px;
}
.mobile-langs a {
font-size: 22px;
} .mobile-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,.45);
opacity: 0;
visibility: hidden;
transition: opacity .3s ease;
z-index: 1000;
}
.mobile-overlay.active {
opacity: 1;
visibility: visible;
} .secao-depoimentos {
padding: 140px 0 100px;
background: #F5F5F5;
position: relative;
overflow: hidden;
} .secao-depoimentos .faixa-titulo {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, #C52332 0%, #A71C27 100%);
color: #fff;
font-size: 26px;
font-weight: 800;
text-transform: uppercase;
padding: 18px 60px;
border-radius: 0 0 14px 14px;
z-index: 15;
box-shadow: 0 10px 28px rgba(0,0,0,0.20);
letter-spacing: 0.6px;
}
.secao-depoimentos .faixa-titulo::after {
content: "";
position: absolute;
bottom: -6px;
left: 50%;
transform: translateX(-50%) skewX(-25deg);
width: 120px;
height: 6px;
background: #C52332;
opacity: .35;
border-radius: 4px;
} .depoimentos-swiper {
max-width: 1240px;
margin: 0 auto;
padding: 0 70px;
position: relative;
} .pf-depo-slide {
display: flex !important;
align-items: center;
justify-content: center;
} .pf-depo-slide .depo-wrap {
display: flex;
align-items: center;
width: 100%;
gap: 70px;
max-width: 1200px;
margin: 0 auto;
} .depo-media {
flex: 1;
max-width: 560px;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}
.depo-media iframe,
.depo-media video {
width: 100%;
height: 315px;
display: block;
border: none;
} .depo-texto {
flex: 1;
max-width: 520px;
position: relative;
padding-left: 10px;
}
.depo-texto .depo-frase {
margin: 0 0 25px 0;
font-size: 28px;
line-height: 1.45;
color: #222;
font-weight: 600;
position: relative;
padding-left: 10px;
}
.depo-texto .depo-frase:before {
content: '“';
position: absolute;
left: -35px;
top: -25px;
font-size: 80px;
color: #C52332;
opacity: 0.15;
font-family: Georgia, serif;
}
.depo-texto .depo-nome {
margin-bottom: 5px;
font-size: 22px;
color: #C52332;
font-weight: 700;
}
.depo-texto .depo-cargo,
.depo-texto .depo-empresa {
font-size: 17px;
color: #555;
} .depoimentos-swiper .swiper-button-prev,
.depoimentos-swiper .swiper-button-next {
width: 60px;
height: 60px;
border-radius: 50%;
background: #ffffff !important;
border: 2.5px solid #C52332;
box-shadow: 0 8px 24px rgba(0,0,0,0.18);
transition: 0.25s ease;
}
.depoimentos-swiper .swiper-button-prev:after,
.depoimentos-swiper .swiper-button-next:after {
font-size: 28px !important;
color: #C52332 !important;
font-weight: 700;
}
.depoimentos-swiper .swiper-button-prev:hover,
.depoimentos-swiper .swiper-button-next:hover {
background: #C52332 !important;
}
.depoimentos-swiper .swiper-button-prev:hover:after,
.depoimentos-swiper .swiper-button-next:hover:after {
color: #fff !important;
} @media (min-width: 993px) {
.depoimentos-swiper .swiper-button-prev { left: 20px; top: 50%; }
.depoimentos-swiper .swiper-button-next { right: 20px; top: 50%; }
} @media (max-width: 992px) {
.depoimentos-swiper .swiper-button-prev,
.depoimentos-swiper .swiper-button-next {
width: 55px;
height: 55px;
}
.depoimentos-swiper .swiper-button-prev { left: 10px; }
.depoimentos-swiper .swiper-button-next { right: 10px; }
.pf-depo-slide .depo-wrap {
flex-direction: column;
text-align: center;
gap: 40px;
}
.depo-media { max-width: 90%; }
.depo-texto { max-width: 95%; padding-left: 0; }
.depo-texto .depo-frase:before {
left: 50%;
transform: translateX(-50%);
top: -60px;
}
} @media (max-width: 600px) {
.secao-depoimentos { padding-top: 180px; }
.secao-depoimentos .faixa-titulo {
position: relative;
width: 92%;
font-size: 20px;
padding: 14px 25px;
margin-bottom: 40px;
border-radius: 12px;
}
.pf-depo-slide .depo-wrap {
flex-direction: column;
gap: 25px;
padding: 0 12px;
}
.depo-media { max-width: 100%; }
.depoimentos-swiper .swiper-button-prev,
.depoimentos-swiper .swiper-button-next {
width: 48px !important;
height: 48px !important;
top: calc(100% - 25px) !important;
transform: translateY(-50%);
}
.depoimentos-swiper .swiper-button-prev { left: 20% !important; }
.depoimentos-swiper .swiper-button-next { right: 20% !important; }
.depo-texto .depo-frase {
font-size: 19px;
}
} .depoimentos-swiper .swiper-pagination {
position: relative !important;
margin-top: 45px !important;
}
.depoimentos-swiper .swiper-pagination-bullet {
width: 12px;
height: 12px;
background: #C9C9C9;
opacity: 1;
}
.depoimentos-swiper .swiper-pagination-bullet-active {
background: #C52332 !important;
transform: scale(1.3);
} .search-section {
padding: 70px 20px 90px;
background: #f8f8f8;
}
.search-container {
max-width: 1200px;
margin: 0 auto;
}
.search-title {
font-size: 32px;
font-weight: 800;
color: #222;
margin-bottom: 30px;
}
.search-title span {
color: #C52332;
} .search-results-grid {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
}
.search-card {
background: #ffffff;
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
overflow: hidden;
transition: transform .25s ease, box-shadow .25s ease;
}
.search-card:hover {
transform: translateY(-4px);
box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}
.search-card-link {
text-decoration: none;
color: inherit;
display: block;
height: 100%;
} .search-thumb img {
width: 100%;
height: 180px;
object-fit: cover;
display: block;
} .search-card-body {
padding: 18px 18px 20px;
}
.search-card-body h3 {
margin: 0 0 10px;
font-size: 18px;
font-weight: 700;
color: #C52332;
}
.search-card-body p {
margin: 0;
font-size: 14px;
color: #555;
} .no-results {
font-size: 18px;
margin-top: 20px;
color: #444;
} .search-pagination {
margin-top: 35px;
text-align: center;
}
.search-pagination .page-numbers {
display: inline-block;
margin: 0 4px;
padding: 7px 12px;
border-radius: 4px;
background: #fff;
border: 1px solid #ddd;
color: #444;
text-decoration: none;
font-size: 14px;
}
.search-pagination .page-numbers.current,
.search-pagination .page-numbers:hover {
background: #C52332;
border-color: #C52332;
color: #fff;
} @media (max-width: 600px) {
.search-section {
padding: 50px 15px 70px;
}
.search-title {
font-size: 24px;
}
}
.menu-principal ul,
.menu-principal li {
list-style: none !important;
margin: 0;
padding: 0;
}
.menu-principal ul.menu > li,
.menu-principal ul.sub-menu > li {
position: relative;
} .menu-principal ul.menu > li.menu-item-has-children > a {
position: relative;
padding-right: 6px; } .menu-principal ul.menu > li.menu-item-has-children > a::after {
content: "";
position: absolute;
right: -2px; top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%) rotate(45deg);
border-right: 2px solid #C52332;
border-bottom: 2px solid #C52332;
transition: .2s ease;
} .menu-principal ul.menu > li.menu-item-has-children:hover > a::after {
transform: translateY(-50%) rotate(225deg);
} .menu-principal ul.menu > li.menu-item-has-children > ul.sub-menu {
position: absolute;
top: 100%;
left: 0;
min-width: 230px;
background: #fff;
padding: 10px 0;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
display: none;
z-index: 20;
} .menu-principal ul.menu > li.menu-item-has-children:hover > ul.sub-menu {
display: block;
}
.menu-principal ul.sub-menu > li > a {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 18px;
font-size: 15px;
font-weight: 500;
color: #222;
text-decoration: none;
white-space: nowrap;
transition: .2s ease;
}
.menu-principal ul.sub-menu > li > a:hover {
background: #C52332;
color: #fff;
border-radius: 6px;
} .menu-principal ul.sub-menu li.menu-item-has-children > a {
padding-right: 20px;
position: relative;
}
.menu-principal ul.sub-menu li.menu-item-has-children > a::after {
content: "";
position: absolute;
right: 10px;
top: 50%;
width: 6px;
height: 6px;
border-right: 2px solid #aaa;
border-bottom: 2px solid #aaa;
transform: translateY(-50%) rotate(-45deg);
transition: .2s ease;
}
.menu-principal ul.sub-menu li.menu-item-has-children:hover > a::after {
border-color: #C52332;
} .menu-principal ul.sub-menu li.menu-item-has-children > ul.sub-menu {
position: absolute;
top: 0;
left: 100%;
margin-left: 8px;
min-width: 230px;
background: #fff;
padding: 10px 0;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
display: none;
}
.menu-principal ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu {
display: block;
} .menu-principal ul.sub-menu,
.menu-principal ul.sub-menu ul.sub-menu {
animation: fadeDown .2s ease;
}
@keyframes fadeDown {
from { opacity: 0; transform: translateY(-5px); }
to   { opacity: 1; transform: translateY(0); }
} .menu-principal ul.menu > li.menu-item-has-children > a {
position: relative !important;
padding-right: 0 !important; } .menu-principal ul.menu > li.menu-item-has-children > a::after {
content: "";
position: absolute;
left: 100%; margin-left: 4px; top: 50%;
width: 6px;
height: 6px;
border-right: 2px solid #C52332;
border-bottom: 2px solid #C52332;
transform: translateY(-50%) rotate(45deg);
transition: .2s ease;
} .menu-principal ul.menu > li.menu-item-has-children:hover > a::after {
transform: translateY(-50%) rotate(225deg);
} .menu-principal ul.sub-menu li.menu-item-has-children {
padding-right: 10px; } .menu-principal ul.sub-menu li.menu-item-has-children > ul.sub-menu {
top: 0;
left: 100%;
margin-left: 10px; z-index: 99999;
} .menu-principal ul.sub-menu li.menu-item-has-children {
position: relative;
}
.menu-principal ul.sub-menu li.menu-item-has-children::before {
content: "";
position: absolute;
top: 0;
right: -15px;
width: 15px;
height: 100%;
background: transparent;
}
.m-menu .m-list li.menu-item-has-children {
position: relative;
padding-right: 44px; }
.m-menu .m-list li.menu-item-has-children > .m-toggle {
position: absolute;
right: 0;
top: 0;
width: 44px;
height: 44px;
border: 0;
background: transparent;
cursor: pointer;
}
.m-menu .m-list li.menu-item-has-children.open > .m-toggle .m-arrow {
transform: rotate(180deg);
display: inline-block;
} @media (max-width: 992px) { .header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px;
}
.logo img {
max-width: 180px;
} .menu-toggle {
display: block !important;
background: none;
border: none;
font-size: 32px;
color: #333;
cursor: pointer;
padding: 6px;
} .menu-principal,
.search-form,
.idiomas {
display: none !important;
} .m-menu {
position: fixed;
right: -100%; top: 0;
width: 80%;
max-width: 360px;
height: 100vh;
background: #fff;
padding: 25px 22px;
z-index: 99999;
overflow-y: auto;
transition: right .35s ease-in-out;
box-shadow: -4px 0 18px rgba(0,0,0,0.12);
border-left: 3px solid #C52332; }
.m-menu.active {
right: 0;
} .m-close {
background: none;
border: none;
font-size: 32px;
cursor: pointer;
display: block;
margin-left: auto;
margin-bottom: 25px;
} .m-list {
margin-top: 10px;
}
.m-list li {
list-style: none;
border-bottom: 1px solid #eee;
}
.m-list li a {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 0;
font-size: 18px;
font-weight: 600;
color: #222;
text-decoration: none;
transition: .2s ease;
}
.m-list li a:hover {
color: #C52332;
} .m-arrow {
font-size: 14px;
opacity: .5;
margin-left: 10px;
transition: .25s;
} .m-list .sub-menu {
display: none;
background: #fafafa;
margin-top: 8px;
border-left: 2px solid #C52332;
padding-left: 12px;
}
.m-list li.open > .sub-menu {
display: block;
}
.m-list .sub-menu a {
padding: 10px 0;
font-size: 16px;
color: #444;
font-weight: 500;
border-bottom: none;
}
.m-list li.open > a .m-arrow {
transform: rotate(180deg);
opacity: .7;
} .m-search {
margin-top: 30px;
display: flex;
gap: 10px;
}
.m-search input {
flex: 1;
padding: 12px;
border-radius: 6px;
border: 1px solid #ccc;
font-size: 16px;
}
.m-search button {
background: #C52332;
border: none;
padding: 0 16px;
border-radius: 6px;
color: #fff;
cursor: pointer;
} .m-lang {
margin-top: 25px;
display: flex;
gap: 15px;
}
.m-lang .lang {
font-size: 28px;
cursor: pointer;
}
} .m-list li.has-dropdown > a {
display: flex;
justify-content: space-between;
align-items: center;
}
.m-arrow {
font-size: 14px;
opacity: .5;
transition: transform .25s ease;
margin-left: 12px;
} .m-list li.has-dropdown .sub-menu {
display: none;
padding-left: 15px;
margin-top: 6px;
border-left: 2px solid #C52332;
background: #fafafa;
} .m-list li.has-dropdown.open .sub-menu {
display: block !important;
} .m-list li.has-dropdown.open > a .m-arrow {
transform: rotate(180deg);
opacity: .7;
} .m-list li.has-dropdown .sub-menu li a {
padding: 10px 0;
font-size: 16px;
font-weight: 500;
color: #444;
display: block;
} .m-list li .sub-menu {
display: none;
padding-left: 15px;
background: #fafafa;
}
.m-list li.open > .sub-menu {
display: block;
} .m-arrow {
font-size: 14px;
opacity: .5;
margin-left: 8px;
transition: transform .25s ease;
}
.m-list li.open > a .m-arrow {
transform: rotate(180deg);
opacity: .8;
} .m-menu {
display: none; }
@media (max-width: 992px) { .m-menu {
display: block;
position: fixed;
top: 0;
right: -100%; width: 80%;
max-width: 360px;
height: 100vh;
background: #fff;
z-index: 9999;
overflow-y: auto;
transition: right .35s ease;
}
.m-menu.active {
right: 0;
}
} .menu-toggle {
display: none !important;
}
@media (max-width: 992px) {
.menu-toggle {
display: block !important;
}
}
@media (max-width: 992px) {
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
} .logo {
flex-shrink: 1;
max-width: 60%; display: flex;
align-items: center;
}
.logo img {
width: auto;
height: auto;
max-height: 42px;
}
.menu-toggle {
display: block !important;
background: none;
border: none;
margin-left: auto; padding: 6px;
font-size: 32px;
}
.header-right {
display: none !important;
}
}
@media (max-width: 992px) { .header-inner {
display: flex !important;
justify-content: flex-start !important;
align-items: center !important;
gap: 12px; } .logo {
margin-right: auto !important;
flex-shrink: 0 !important;
}
.logo img {
max-width: 180px;
height: auto;
display: block;
}
}
@media (max-width: 992px) { .logo {
flex-shrink: 0 !important;
margin: 0 !important;
padding: 0 !important;
display: flex;
align-items: center;
}
.logo img {
max-height: 38px !important; width: auto;
display: block;
} .menu-toggle {
display: block !important;
background: none;
border: none;
font-size: 30px;
cursor: pointer;
padding: 4px;
margin: 0 !important;
flex-shrink: 0;
} .header {
border-bottom: 2px solid #C52332;
}
}
@media (max-width: 992px) { .header {
padding: 0 !important;
margin: 0 !important;
} .header-inner {
display: flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: space-between !important;
width: 100% !important;
padding: 8px 12px !important; gap: 0 !important;
} .logo {
margin: 0 !important;
padding: 0 !important;
flex-shrink: 1 !important;
display: flex !important;
align-items: center !important;
}
.logo img {
max-height: 38px !important;
width: auto !important;
display: block !important;
} .menu-toggle {
display: block !important;
margin-left: auto !important;
background: none !important;
border: none !important;
padding: 4px !important;
font-size: 30px !important;
cursor: pointer !important;
flex-shrink: 0 !important;
} .header-right {
display: none !important;
}
} .obras-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 14px;
margin: 60px 0 40px;
} .obras-pagination .page-numbers {
min-width: 46px;
height: 46px;
padding: 0 14px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
border: 1.5px solid #d9d9d9;
color: #444;
background: #fff;
transition: all .25s ease;
} .obras-pagination a.page-numbers:hover {
border-color: #C52332;
color: #C52332;
transform: translateY(-1px);
} .obras-pagination .page-numbers.current {
background: #C52332;
color: #fff;
border-color: #C52332;
cursor: default;
} .obras-pagination .prev,
.obras-pagination .next {
font-size: 20px;
font-weight: 700;
} .obras-pagination .dots {
display: none;
} .downloads-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 14px;
margin: 60px 0 40px;
} .downloads-pagination .page-numbers {
min-width: 46px;
height: 46px;
padding: 0 14px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
border: 1.5px solid #d9d9d9;
color: #444;
background: #fff;
transition: all .25s ease;
} .downloads-pagination a.page-numbers:hover {
border-color: #C52332;
color: #C52332;
transform: translateY(-1px);
} .downloads-pagination .page-numbers.current {
background: #C52332;
color: #fff;
border-color: #C52332;
cursor: default;
} .downloads-pagination .prev,
.downloads-pagination .next {
font-size: 20px;
font-weight: 700;
} .downloads-pagination .dots {
display: none;
} .contato-social-section {
margin: 120px 0 80px;
text-align: center;
position: relative;
}
.contato-social-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 35px;
color: #1e1e1e;
} .social-preview-wrapper {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
} .social-preview {
width: 56px;
height: 56px;
border-radius: 50%;
background: #f2f2f2;
display: flex;
align-items: center;
justify-content: center;
color: #333;
font-size: 22px;
position: relative;
transition: all .25s ease;
text-decoration: none;
box-shadow: 0 6px 18px rgba(0,0,0,.08);
} .social-preview:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0,0,0,.2);
} .social-card {
position: absolute;
bottom: 70px;
left: 50%;
transform: translateX(-50%) scale(.95);
width: 230px;
background: #fff;
border-radius: 14px;
box-shadow: 0 15px 35px rgba(0,0,0,.18);
padding: 14px 16px;
opacity: 0;
pointer-events: none;
transition: all .25s ease;
text-align: center;
z-index: 10;
} .social-card::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
border: 10px solid transparent;
border-top-color: #fff;
} .social-preview:hover .social-card {
opacity: 1;
transform: translateX(-50%) scale(1);
} .social-card strong {
display: block;
font-size: 15px;
font-weight: 700;
margin-bottom: 4px;
color: #222;
}
.social-card span {
display: block;
font-size: 13px;
color: #777;
}
.social-card p {
font-size: 13px;
line-height: 1.45;
margin-top: 8px;
color: #444;
} .facebook:hover {
background: #1877f2;
color: #fff;
}
.instagram:hover {
background: #e1306c;
color: #fff;
}
.linkedin:hover {
background: #0a66c2;
color: #fff;
}
.youtube:hover {
background: #ff0000;
color: #fff;
} @media (max-width: 768px) {
.social-card {
display: none;
}
.contato-social-section {
margin: 80px 0 60px;
}
.contato-social-title {
font-size: 20px;
}
}
.segmento-slider {
position: relative;
width: 100%;
height: 260px; overflow: hidden;
}
.segmento-slide {
width: 100%;
height: 100%;
}
.segmento-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .downloads-container {
max-width: 1300px;
margin: 40px auto;
padding: 0 25px;
} .section-title-wrap{
text-align: center;
margin: 20px 0 40px;
}
.section-title-bar{
display: inline-block;
background: #C52332;
color: #fff;
font-size: 28px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
padding: 14px 40px;
box-shadow: 0 14px 35px rgba(0,0,0,.18);
clip-path: polygon(0 0,100% 0,100% 65%,92% 100%,0 100%);
} .download-cat-bar {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 40px;
}
.download-cat-item {
padding: 10px 26px;
font-size: 15px;
font-weight: 700;
text-transform: uppercase;
border-radius: 30px;
background: #f5f5f5;
color: #444;
text-decoration: none;
transition: .25s ease;
border: 1px solid #ddd;
}
.download-cat-item:hover {
background: #c52332;
color: #fff;
border-color: #c52332;
}
.download-cat-item.active {
background: #C52332;
color: #fff;
border-color: #C52332;
box-shadow: 0 5px 15px rgba(197,35,50,.20);
} .downloads-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
gap: 32px;
} .download-card {
background: #fff;
border-radius: 14px;
overflow: hidden;
text-align: center;
box-shadow: 0 6px 20px rgba(0,0,0,.07);
transition: .25s ease;
}
.download-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.download-card img {
width: 100%;
display: block;
}
.download-info {
padding: 22px;
}
.download-info h3 {
font-size: 20px;
font-weight: 800;
text-transform: uppercase;
margin-bottom: 10px;
color: #333;
}
.download-tag {
display: inline-block;
background: #c52332;
color: #fff;
padding: 5px 14px;
border-radius: 20px;
font-size: 13px;
margin-bottom: 10px;
}
.download-btn {
display: block;
background: #eee;
color: #333;
padding: 12px;
font-weight: 700;
border-radius: 8px;
margin-top: 15px;
text-decoration: none;
transition: .25s;
}
.download-btn:hover {
background: #c52332;
color: #fff;
} .downloads-pagination {
text-align: center;
margin: 50px 0 80px;
}
.downloads-pagination a,
.downloads-pagination span {
display: inline-block;
margin: 0 4px;
padding: 10px 16px;
font-size: 18px;
border-radius: 8px;
border: 1px solid #ddd;
color: #333;
background: #fff;
text-decoration: none;
}
.downloads-pagination .current {
background: #C52332;
color: #fff;
border-color: #C52332;
}
.download-btn{
display: block; text-align: center; }
:root{
--pf-red: #C52332;
--pf-red-dark: #A81B26;
--pf-gray: #717170;
--pf-dark: #333333;
} .obras-container {
max-width: 1400px;
margin: 30px auto;
padding: 0 25px;
} .obras-title {
text-align: center;
font-size: 48px;
font-weight: 800;
margin-bottom: 10px;
color: var(--pf-dark);
}
.obras-sub {
text-align: center;
font-size: 20px;
color: var(--pf-gray);
margin-bottom: 45px;
} .obras-cat-bar {
display: flex;
justify-content: center;
gap: 18px;
flex-wrap: wrap;
margin-bottom: 55px;
}
.obras-cat-item {
padding: 12px 26px;
border-radius: 30px;
font-size: 15px;
font-weight: 700;
background: #f1f1f1;
color: var(--pf-dark);
border: 2px solid transparent;
text-decoration: none;
transition: .25s ease;
}
.obras-cat-item:hover {
background: #e6e6e6;
}
.obras-cat-item.active {
background: var(--pf-red);
border-color: var(--pf-red);
color: #fff !important;
box-shadow: 0 6px 20px rgba(197,35,50,0.25);
} .obras-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 40px;
} .obra-card {
background: #fff;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.10);
transition: .3s ease;
display: flex;
flex-direction: column;
cursor: pointer;
}
.obra-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}
.obra-card img {
width: 100%;
height: auto; object-fit: contain; background: #000; } .obra-info {
padding: 22px;
}
.obra-info h3 {
font-size: 22px;
font-weight: 800;
margin-bottom: 8px;
color: var(--pf-dark);
}
.obra-info p {
margin: 4px 0;
font-size: 15px;
color: var(--pf-gray);
} .obra-btn {
display: block;
text-align: center;
padding: 12px 22px;
background: var(--pf-red);
color: #fff;
font-weight: 700;
border-radius: 25px;
text-decoration: none;
margin-top: 15px;
transition: .25s ease;
}
.obra-btn:hover {
background: var(--pf-red-dark);
} .obras-title-wrapper {
text-align: center;
margin-bottom: 40px;
}
.obras-title-bar {
display: inline-block;
background: var(--pf-red);
color: #fff;
font-size: 28px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.8px;
padding: 14px 30px;
border-radius: 1px;
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
position: relative; clip-path: polygon(
0 0,
100% 0,
100% 65%,
92% 100%,
0 100%
);
} @media(max-width: 650px){
.obras-title-bar {
font-size: 20px;
padding: 10px 30px;
}
.obras-title-bar::after {
border-top: 18px solid transparent;
border-bottom: 18px solid transparent;
border-left: 16px solid var(--pf-red);
right: -16px;
}
} section.clientes-section {
--pf-red: #C52332;
--pf-red-dark: #A51D29;
--pf-gray: #333333;
--pf-text: #444444;
--pf-light: #f7f7f8;
--pf-border: #dedee0;
width: 100%;
margin: 0;
padding: 70px 20px;
background: linear-gradient(
180deg,
#ffffff 0%,
#fafafa 100%
);
}
section.clientes-section,
section.clientes-section * {
box-sizing: border-box;
} section.clientes-section .clientes-card {
position: relative;
width: 100%;
max-width: 1200px;
min-height: 380px;
margin: 0 auto;
padding: 60px 55px 42px;
overflow: hidden;
background: linear-gradient(
145deg,
#fafafa 0%,
#f5f5f6 100%
);
border: 1px solid var(--pf-border);
border-radius: 12px;
box-shadow:
0 15px 35px rgba(0, 0, 0, 0.09);
} section.clientes-section .clientes-card::before {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 160px;
height: 4px;
background: linear-gradient(
90deg,
var(--pf-red-dark),
var(--pf-red)
);
border-radius: 0 0 8px 8px;
transform: translateX(-50%);
} section.clientes-section .clientes-title {
display: block;
width: 100%;
margin: 0 0 40px;
padding: 0;
color: var(--pf-gray);
font-family:
'Roboto',
'Open Sans',
sans-serif;
font-size: clamp(27px, 2.2vw, 36px);
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.3px;
text-align: center;
} section.clientes-section .clientes-title::after {
content: "";
display: block;
width: 52px;
height: 3px;
margin: 16px auto 0;
background: var(--pf-red);
border-radius: 10px;
} section.clientes-section .clientes-swiper {
position: relative;
display: block;
width: 100%;
min-height: 175px;
margin: 0;
padding: 0 0 48px;
overflow: hidden;
}
section.clientes-section
.clientes-swiper
.swiper-wrapper {
display: flex;
align-items: center;
} section.clientes-section
.clientes-swiper
.cliente-slide {
position: relative;
height: 125px;
display: flex;
align-items: center;
justify-content: center;
padding: 12px 16px;
background: transparent;
border: 0;
} section.clientes-section .cliente-slide img {
display: block !important;
width: 180px !important;
height: 85px !important;
max-width: 100% !important;
max-height: 85px !important;
margin: 0 auto !important;
padding: 4px !important;
object-fit: contain !important;
object-position: center !important;
background: transparent;
border: 0 !important;
box-shadow: none !important;
filter: saturate(0.95);
opacity: 0.96;
transition:
transform 0.25s ease,
filter 0.25s ease,
opacity 0.25s ease;
}
section.clientes-section .cliente-slide:hover img {
transform: translateY(-3px) scale(1.04);
filter: saturate(1.08);
opacity: 1;
} section.clientes-section .clientes-pagination {
position: absolute;
right: 0;
bottom: 4px !important;
left: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 18px;
} section.clientes-section
.clientes-pagination
.swiper-pagination-bullet {
display: inline-block;
width: 8px;
height: 8px;
margin: 0 5px !important;
background: #b8b8b8;
border: 0;
border-radius: 50%;
opacity: 0.75;
transition:
width 0.25s ease,
background-color 0.25s ease,
opacity 0.25s ease;
} section.clientes-section
.clientes-pagination
.swiper-pagination-bullet-active {
width: 24px;
background: var(--pf-red);
border-radius: 10px;
opacity: 1;
} @media (max-width: 991px) {
section.clientes-section {
padding: 60px 20px;
}
section.clientes-section .clientes-card {
min-height: 340px;
padding: 52px 38px 38px;
}
section.clientes-section .clientes-title {
margin-bottom: 32px;
font-size: 30px;
}
section.clientes-section .cliente-slide img {
width: 165px !important;
height: 80px !important;
max-height: 80px !important;
}
} @media (max-width: 767px) {
section.clientes-section {
padding: 45px 15px;
}
section.clientes-section .clientes-card {
min-height: 295px;
padding: 42px 18px 30px;
border-radius: 10px;
box-shadow:
0 12px 28px rgba(0, 0, 0, 0.09);
}
section.clientes-section .clientes-card::before {
width: 110px;
}
section.clientes-section .clientes-title {
margin-bottom: 25px;
font-size: 24px;
line-height: 1.25;
}
section.clientes-section .clientes-title::after {
width: 42px;
margin-top: 13px;
}
section.clientes-section .clientes-swiper {
min-height: 155px;
padding-bottom: 43px;
}
section.clientes-section .cliente-slide {
height: 110px;
padding: 10px 15px;
}
section.clientes-section .cliente-slide img {
width: 165px !important;
height: 75px !important;
max-height: 75px !important;
}
} .segmentos-wrapper .container {
width: 100%;
max-width: 1250px;
margin: 0 auto;
padding-right: 25px;
padding-left: 25px;
}
.segmentos-wrapper .segmento-grid {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
align-items: stretch;
gap: 28px;
width: 100%;
margin: 0 auto;
}
.segmentos-wrapper .segmento-card {
display: flex;
flex-direction: column;
width: 100% !important;
max-width: none !important;
min-width: 0;
height: 540px;
margin: 0 !important;
border-radius: 24px;
overflow: hidden;
} .segmentos-wrapper .segmento-slider {
position: relative;
width: 100%;
height: 270px;
min-height: 270px;
overflow: hidden;
}
.segmentos-wrapper .segmento-slide {
width: 100%;
height: 100%;
}
.segmentos-wrapper .segmento-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
} .segmentos-wrapper .segmento-card-content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 30px 24px 28px;
text-align: center;
}
.segmentos-wrapper .segmento-card-content h3 {
margin: 10px 0 12px;
font-size: 22px;
line-height: 1.25;
}
.segmentos-wrapper .segmento-card-content p {
margin: 0 0 18px;
} .segmentos-wrapper .btn-ver-produtos {
margin-top: auto;
padding: 11px 27px;
font-size: 15px;
} @media (max-width: 1050px) {
.segmentos-wrapper .container {
max-width: 850px;
}
.segmentos-wrapper .segmento-grid {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
} @media (max-width: 700px) {
.segmentos-wrapper .container {
max-width: 480px;
padding-right: 18px;
padding-left: 18px;
}
.segmentos-wrapper .segmento-grid {
grid-template-columns: 1fr !important;
gap: 24px;
}
.segmentos-wrapper .segmento-card {
height: 500px;
}
.segmentos-wrapper .segmento-slider {
height: 240px;
min-height: 240px;
}
}