* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
max-width: 100%;
overflow-x: hidden;
}
body {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
color: #1C1C1C;
background: #ffffff;
line-height: 1.6;
} .header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(28, 28, 28, 0.08);
z-index: 1000;
padding: 25px 5%;
transition: all 0.3s ease;
}
.header-content {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 50px;
}
.logo {
font-size: 32px;
font-weight: 800;
color: #1C1C1C;
letter-spacing: -1px;
text-decoration: none;
}
.logo span {
color: #F74900;
}
.logo .logo-brand {
height: 60px;
transition: all ease-in-out 0.3s;
}
.header-fixed .logo .logo-brand {
height: 45px;
transition: all ease-in-out 0.3s;
}
.nav {
display: flex;
gap: 45px;
align-items: center;
flex: 1;
justify-content: center;
}
.nav a {
color: #1C1C1C;
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: all 0.3s ease;
position: relative;
padding: 8px 0;
}
.nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #F74900;
transition: width 0.3s ease;
}
.nav a:hover::after {
width: 100%;
}
.nav a:hover {
color: #F74900;
} .mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 6px;
background: none;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1001;
}
.mobile-menu-toggle span {
width: 28px;
height: 3px;
background: #1C1C1C;
border-radius: 3px;
transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
background: #F74900;
}
.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(8px, -8px);
background: #F74900;
}
.mobile-menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
z-index: -1;
opacity: 0;
transition: opacity 0.4s ease;
}
.mobile-menu-overlay.active {
opacity: 1;
z-index: 999;
}
.mobile-menu {
position: fixed;
top: 0;
left: -100%;
width: 75%;
max-width: 400px;
height: 100%;
background: #ffffff;
z-index: 1000;
padding: 50px 30px 0;
box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
overflow-y: auto;
}
.mobile-menu.active {
left: 0;
}
.mobile-menu-header {
margin-bottom: 50px;
}
.mobile-menu-logo {
font-size: 32px;
font-weight: 800;
color: #1C1C1C;
letter-spacing: -1px;
}
.mobile-menu-logo img {
height: 45px;
}
.mobile-menu-logo span {
color: #F74900;
}
.mobile-nav {
display: flex;
flex-direction: column;
gap: 0;
margin-bottom: 40px;
}
.mobile-nav a {
color: #1C1C1C;
text-decoration: none;
font-weight: 600;
font-size: 18px;
padding: 10px 0;
border-bottom: 1px solid rgba(28, 28, 28, 0.1);
transition: all 0.3s ease;
display: block;
}
.mobile-nav a:hover {
color: #F74900;
padding-left: 10px;
}
.mobile-nav a i {
font-size: 18px;
opacity: 0;
transition: opacity 0.3s ease;
}
.mobile-nav a:hover i {
opacity: 1;
}
.mobile-cta {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
padding: 18px 32px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.4s ease;
border: none;
cursor: pointer;
width: 100%;
text-align: center;
display: block;
box-shadow: 0 4px 20px rgba(247, 73, 0, 0.3);
}
.mobile-cta:hover {
background: linear-gradient(135deg, #e04000 0%, #d63f00 100%);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(247, 73, 0, 0.5);
}
.cta-button {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
padding: 15px 32px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.4s ease;
border: none;
cursor: pointer;
white-space: nowrap;
box-shadow: 0 4px 20px rgba(247, 73, 0, 0.2);
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: 10px;
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.cta-button:hover::before {
left: 100%;
}
.cta-button:hover {
background: linear-gradient(135deg, #e04000 0%, #d63f00 100%);
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(247, 73, 0, 0.4);
} .banner-slider {
margin-top: 90px;
position: relative;
height: 700px;
overflow: hidden; }
.slide {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0;
transform: scale(1.05);
transition: opacity 1s ease, transform 2s ease;
display: flex;
align-items: center;
justify-content: center;
padding: 0 8%;
}
.slide.active {
opacity: 1;
transform: scale(1);
z-index: 2;
}
.slider-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 100%);
z-index: 1;
}
.slide-content {
max-width: 1400px;
width: 100%;
color: #ffffff;
position: relative;
z-index: 2;
}
.slide h1 {
font-size: 64px;
font-weight: 800;
margin: 0 0 30px 0;
line-height: 1.1;
max-width: 800px;
background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -2px;
}
.slide p {
font-size: 22px;
margin: 0 0 45px 0;
line-height: 1.7;
max-width: 650px;
color: rgba(255, 255, 255, 0.85);
font-weight: 400;
}
.slide-buttons {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.slide-cta-button {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
padding: 20px 45px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 17px;
transition: all 0.4s ease;
border: none;
cursor: pointer;
box-shadow: 0 6px 25px rgba(247, 73, 0, 0.3);
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: 12px;
}
.slide-cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.slide-cta-button:hover::before {
left: 100%;
}
.slide-cta-button:hover {
background: linear-gradient(135deg, #e04000 0%, #d63f00 100%);
transform: translateY(-3px);
box-shadow: 0 10px 35px rgba(247, 73, 0, 0.4);
}
.whatsapp-button {
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
color: #ffffff;
padding: 20px 45px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 17px;
transition: all 0.4s ease;
border: none;
cursor: pointer;
box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: 12px;
}
.whatsapp-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.whatsapp-button:hover::before {
left: 100%;
}
.whatsapp-button:hover {
background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
transform: translateY(-3px);
box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
} .slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 60px;
height: 60px;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: #ffffff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
transition: all 0.3s ease;
z-index: 3;
}
.slider-arrow:hover {
background: rgba(0, 0, 0, 0.6);
transform: translateY(-50%) scale(1.1);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.slider-arrow-left {
left: 40px;
}
.slider-arrow-right {
right: 40px;
}
.slider-dots {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 16px;
z-index: 3;
}
.dot {
width: 14px;
height: 14px;
border-radius: 50%;
background: rgba(255,255,255,0.25);
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid transparent;
}
.dot:hover {
background: rgba(255,255,255,0.4);
transform: scale(1.1);
}
.dot.active {
background: #F74900;
width: 45px;
border-radius: 25px;
border-color: rgba(247, 73, 0, 0.3);
box-shadow: 0 0 20px rgba(247, 73, 0, 0.4);
} .why-section {
padding: 120px 5%;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
position: relative;
}
.why-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, rgba(247, 73, 0, 0.2) 50%, transparent 100%);
}
.section-title {
text-align: center;
font-size: 48px;
font-weight: 800;
margin: 0 0 80px 0;
color: #1C1C1C;
letter-spacing: -1px;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #F74900 0%, #e04000 100%);
border-radius: 2px;
}
.why-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 50px;
}
.why-card {
text-align: center;
padding: 50px 35px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #F74900 0%, #e04000 100%);
transform: scaleX(0);
transition: transform 0.4s ease;
}
.why-card:hover::before {
transform: scaleX(1);
}
.why-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.why-icon {
width: 90px;
height: 90px;
margin: 0 auto 30px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: #ffffff;
box-shadow: 0 8px 30px rgba(247, 73, 0, 0.25);
transition: all 0.4s ease;
}
.why-card:hover .why-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 12px 40px rgba(247, 73, 0, 0.35);
}
.why-card h3 {
font-size: 22px;
font-weight: 700;
margin: 0 0 18px 0;
color: #1C1C1C;
letter-spacing: -0.5px;
}
.why-card p {
font-size: 16px;
color: #666;
margin: 0;
line-height: 1.7;
font-weight: 400;
} .testimonial-section {
padding: 120px 5%;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
position: relative;
} .solutions-section {
padding: 120px 5%;
background: linear-gradient(180deg, #f8f9fa 0%, #F5F5F5 100%);
position: relative;
}
.solutions-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, rgba(28, 28, 28, 0.1) 50%, transparent 100%);
}
.solutions-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 50px;
}
.solution-card {
background: #ffffff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 50px rgba(0,0,0,0.08);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
border: 1px solid rgba(0,0,0,0.05);
}
.solution-card:hover {
transform: translateY(-15px) scale(1.02);
box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}
.solution-image {
width: 100%;
height: 280px;
background: linear-gradient(135deg, #1a1a1a 0%, #1C1C1C 50%, #2a2a2a 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 90px;
color: #ffffff;
position: relative;
overflow: hidden;
}
.solution-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 30%, rgba(247, 73, 0, 0.1) 50%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
}
.solution-card:hover .solution-image::before {
opacity: 1;
}
.solution-content {
padding: 45px 40px;
position: relative;
}
.solution-card h3 {
font-size: 26px;
font-weight: 700;
margin: 0 0 20px 0;
color: #1C1C1C;
letter-spacing: -0.5px;
}
.solution-card p {
font-size: 16px;
color: #666;
margin: 0 0 35px 0;
line-height: 1.7;
font-weight: 400;
} .combilift-section {
padding: 120px 5%;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
position: relative;
}
.combilift-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, rgba(247, 73, 0, 0.2) 50%, transparent 100%);
}
.combilift-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 80px;
align-items: center;
}
.combilift-text h2 {
font-size: 48px;
font-weight: 800;
margin: 0 0 35px 0;
color: #1C1C1C;
letter-spacing: -1px;
line-height: 1.2;
position: relative;
padding-bottom: 25px;
}
.combilift-text h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 120px;
height: 4px;
background: linear-gradient(90deg, #F74900 0%, #e04000 100%);
border-radius: 2px;
}
.combilift-text h2 .highlight {
color: #F74900;
}
.combilift-text p {
font-size: 18px;
color: #666;
line-height: 1.8;
margin: 0 0 25px 0;
font-weight: 400;
}
.combilift-badge {
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
padding: 50px 40px;
border-radius: 24px;
text-align: center;
color: #1C1C1C;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
border: 1px solid rgba(247, 73, 0, 0.1);
}
.combilift-badge::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegantdots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(247,73,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(//www.rmcargocontrol.com.br/wp-content/themes/rmcargo-control/%23elegantdots)"/></svg>');
opacity: 0.6;
}
.combilift-logo {
font-size: 32px;
font-weight: 800;
margin: 0 0 35px 0;
color: #F74900;
letter-spacing: -1px;
position: relative;
z-index: 2;
text-shadow: 0 2px 10px rgba(247, 73, 0, 0.1);
}
.badge-item {
display: flex;
align-items: center;
gap: 18px;
margin: 20px 0;
font-size: 16px;
font-weight: 500;
position: relative;
z-index: 2;
padding: 12px 20px;
background: rgba(247, 73, 0, 0.05);
border-radius: 12px;
transition: all 0.3s ease;
}
.badge-item:hover {
background: rgba(247, 73, 0, 0.1);
transform: translateX(5px);
}
.badge-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
color: #ffffff;
box-shadow: 0 4px 15px rgba(247, 73, 0, 0.2);
flex-shrink: 0;
} .about-section {
padding: 120px 5%;
background: linear-gradient(180deg, #f8f9fa 0%, #F5F5F5 100%);
position: relative;
}
.about-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, rgba(28, 28, 28, 0.1) 50%, transparent 100%);
}
.about-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.about-image {
width: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #1C1C1C 50%, #2a2a2a 100%);
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
font-size: 120px;
color: #ffffff;
position: relative;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-image img {
width: 100%;
}
.about-text h2 {
font-size: 48px;
font-weight: 800;
margin: 0 0 35px 0;
color: #1C1C1C;
letter-spacing: -1px;
line-height: 1.2;
position: relative;
padding-bottom: 25px;
}
.about-text h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 120px;
height: 4px;
background: linear-gradient(90deg, #F74900 0%, #e04000 100%);
border-radius: 2px;
}
.about-text h2 .highlight {
color: #F74900;
}
.about-text p {
font-size: 18px;
color: #666;
line-height: 1.8;
margin: 0 0 30px 0;
font-weight: 400;
}
.values-list {
margin-top: 40px;
}
.value-item {
display: flex;
align-items: flex-start;
gap: 20px;
margin: 25px 0;
padding: 0;
background: transparent;
border-radius: 0;
box-shadow: none;
border-left: none;
transition: all 0.3s ease;
}
.value-item:hover { }
.value-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #ffffff;
box-shadow: 0 4px 20px rgba(247, 73, 0, 0.2);
flex-shrink: 0;
}
.value-content h3 {
font-size: 20px;
font-weight: 700;
margin: 0 0 10px 0;
color: #1C1C1C;
}
.value-content p {
font-size: 15px;
color: #666;
margin: 0;
line-height: 1.6;
} .contact-section {
padding: 120px 5%;
background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(28, 28, 28, 0.85) 100%), 
url(//www.rmcargocontrol.com.br/wp-content/themes/rmcargo-control/assets/images/capa-contato.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
color: #ffffff;
position: relative;
}
.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactgrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(//www.rmcargocontrol.com.br/wp-content/themes/rmcargo-control/%23contactgrid)"/></svg>');
opacity: 0.4;
}
.contact-content {
max-width: 1400px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.contact-title {
font-size: 48px;
font-weight: 800;
margin: 0 0 80px 0;
text-align: center;
letter-spacing: -1px;
background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 100px;
}
.contact-info h3 {
font-size: 28px;
font-weight: 700;
margin: 0 0 40px 0;
color: #F74900;
letter-spacing: -0.5px;
}
.contact-item {
display: flex;
align-items: center;
gap: 25px;
margin: 35px 0;
font-size: 18px;
font-weight: 500;
padding: 25px;
background: rgba(255, 255, 255, 0.03);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.3s ease;
}
.contact-item:hover {
background: rgba(255, 255, 255, 0.06);
transform: translateX(10px);
}
.contact-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
flex-shrink: 0;
box-shadow: 0 8px 25px rgba(247, 73, 0, 0.3);
}
.contact-form {
background: rgba(255, 255, 255, 0.05);
padding: 50px 45px;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.contact-form h3 {
font-size: 28px;
font-weight: 700;
margin: 0 0 40px 0;
letter-spacing: -0.5px;
}
.form-group {
margin-bottom: 25px;
}
.form-group label {
display: block;
margin-bottom: 10px;
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, 0.8);
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 18px 22px;
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
font-size: 16px;
font-family: 'Poppins', sans-serif;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: #F74900;
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 0 20px rgba(247, 73, 0, 0.2);
}
.form-group select:focus option {
color: #F74900;
}
.submit-button {
width: 100%;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
padding: 20px;
border: none;
border-radius: 12px;
font-size: 17px;
font-weight: 600;
cursor: pointer;
transition: all 0.4s ease;
font-family: 'Poppins', sans-serif;
box-shadow: 0 8px 30px rgba(247, 73, 0, 0.3);
position: relative;
overflow: hidden;
}
.submit-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.submit-button:hover::before {
left: 100%;
}
.submit-button:hover {
background: linear-gradient(135deg, #e04000 0%, #d63f00 100%);
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(247, 73, 0, 0.4);
} .footer {
background: #ffffff;
color: #1C1C1C;
padding: 80px 5% 0;
position: relative;
border-top: 1px solid rgba(28, 28, 28, 0.1);
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
gap: 60px;
margin-bottom: 50px;
}
.footer-logo-section {
display: flex;
flex-direction: column;
}
.footer-logo {
font-size: 36px;
font-weight: 800;
color: #1C1C1C;
letter-spacing: -1px;
margin-bottom: 20px;
}
.footer-logo span {
color: #F74900;
}
.footer-logo .logo-brand {
height: 60px;
}
.footer-description {
font-size: 16px;
color: #666;
line-height: 1.7;
margin-bottom: 30px;
}
.footer-section h4 {
font-size: 20px;
font-weight: 700;
margin: 0 0 25px 0;
color: #1C1C1C;
letter-spacing: -0.5px;
}
.footer-menu {
list-style: none;
padding: 0;
margin: 0;
}
.footer-menu li {
margin-bottom: 12px;
}
.footer-menu a {
color: #666;
text-decoration: none;
font-size: 15px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.footer-menu a:hover {
color: #F74900;
transform: translateX(5px);
}
.footer-contact-item {
display: flex;
align-items: center;
gap: 12px;
margin: 15px 0;
font-size: 15px;
color: #666;
}
.footer-contact-icon {
width: 20px;
height: 20px;
color: #F74900;
flex-shrink: 0;
}
.social-links {
display: flex;
gap: 15px;
}
.social-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
text-decoration: none;
color: #ffffff;
transition: all 0.4s ease;
box-shadow: 0 4px 20px rgba(247, 73, 0, 0.2);
}
.social-icon:hover {
background: linear-gradient(135deg, #e04000 0%, #d63f00 100%);
transform: translateY(-5px) scale(1.1);
box-shadow: 0 8px 30px rgba(247, 73, 0, 0.4);
}
.footer-bottom {
border-top: 1px solid rgba(28, 28, 28, 0.1);
padding: 30px 0;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.footer-bottom-left {
color: #666;
font-size: 14px;
}
.footer-bottom-right {
display: flex;
gap: 30px;
align-items: center;
}
.footer-bottom-right a {
color: #666;
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}
.footer-bottom-right a:hover {
color: #F74900;
}
.developer-credit {
color: #F74900;
font-weight: 600;
font-size: 14px;
} .main-content {
margin-top: 90px;
padding: 80px 5%;
max-width: 1600px;
margin-left: auto;
margin-right: auto;
}
.main-content.produtos {
max-width: 1600px;
margin: 0 auto;
padding: 60px 5%;
display: grid;
grid-template-columns: 320px 1fr;
gap: 50px;
align-items: start;
}
.content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px; background: #ffffff;
border-radius: 30px;
padding: 80px;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.text-content {
display: flex;
flex-direction: column;
gap: 30px;
}
.page-title {
font-size: 56px;
font-weight: 800;
margin: 0;
color: #1C1C1C;
letter-spacing: -2px;
line-height: 1.1;
}
.page-subtitle {
font-size: 24px;
font-weight: 600;
margin: 0;
color: #F74900;
letter-spacing: -0.5px;
}
.page-paragraph {
font-size: 18px;
line-height: 1.8;
color: #666;
margin: 0;
}
.feature-list {
list-style: none;
padding: 0;
margin: 20px 0 0 0;
display: flex;
flex-direction: column;
gap: 15px;
}
.feature-item {
display: flex;
align-items: center;
gap: 15px;
font-size: 16px;
color: #1C1C1C;
}
.feature-icon {
width: 24px;
height: 24px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 12px;
flex-shrink: 0;
}
.image-content {
position: relative;
}
.featured-image {
width: 100%;
background: linear-gradient(135deg, #1a1a1a 0%, #1C1C1C 50%, #2a2a2a 100%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 200px;
color: #ffffff;
position: relative;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.featured-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(//www.rmcargocontrol.com.br/wp-content/themes/rmcargo-control/%23grid)"/></svg>');
opacity: 0.3;
}
.image-badge {
position: absolute;
bottom: 30px;
left: 30px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 20px 30px;
border-radius: 15px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.image-badge-text {
font-size: 18px;
font-weight: 700;
color: #1C1C1C;
margin: 0;
} .page-header {
margin-top: 90px;
padding: 80px 5% 60px;
background: linear-gradient(135deg, #0f0f0f 0%, #1C1C1C 50%, #2a2a2a 100%);
color: #ffffff;
text-align: center;
position: relative;
overflow: hidden;
}
.page-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(//www.rmcargocontrol.com.br/wp-content/themes/rmcargo-control/%23grid)"/></svg>');
opacity: 0.3;
}
.page-header-content {
max-width: 1600px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.page-header h1 {
font-size: 56px;
font-weight: 800;
margin: 0 0 20px 0;
letter-spacing: -2px;
background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.page-header p {
font-size: 20px;
margin: 0;
color: rgba(255, 255, 255, 0.85);
} .sidebar {
position: sticky;
top: 150px;
}
.sidebar-section {
background: #ffffff;
border-radius: 20px;
padding: 35px;
margin-bottom: 30px;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.sidebar-section h3 {
font-size: 22px;
font-weight: 700;
margin: 0 0 25px 0;
color: #1C1C1C;
letter-spacing: -0.5px;
position: relative;
padding-bottom: 15px;
}
.sidebar-section h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, #F74900 0%, #e04000 100%);
border-radius: 2px;
} .search-box {
position: relative;
}
.search-input {
width: 100%;
padding: 16px 50px 16px 20px;
border: 2px solid rgba(28, 28, 28, 0.1);
border-radius: 12px;
font-size: 15px;
font-family: 'Poppins', sans-serif;
transition: all 0.3s ease;
background: #fafafa;
}
.search-input:focus {
outline: none;
border-color: #F74900;
background: #ffffff;
box-shadow: 0 0 20px rgba(247, 73, 0, 0.1);
}
.search-icon {
position: absolute;
right: 18px;
top: 50%;
transform: translateY(-50%);
color: #F74900;
font-size: 18px;
pointer-events: none;
} .category-list {
list-style: none;
padding: 0;
margin: 0;
}
.category-item {
padding: 14px 18px;
margin: 8px 0;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 15px;
font-weight: 500;
color: #666;
background: #fafafa;
}
.category-item:hover {
background: rgba(247, 73, 0, 0.08);
color: #F74900;
transform: translateX(5px);
}
.category-item.active {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
box-shadow: 0 4px 15px rgba(247, 73, 0, 0.25);
}
.category-count {
background: rgba(255, 255, 255, 0.2);
padding: 4px 12px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
}
.category-item.active .category-count {
background: rgba(255, 255, 255, 0.25);
} .products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 35px;
}
.product-card {
background: #ffffff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(0, 0, 0, 0.05);
cursor: pointer;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.product-image {
width: 100%;
height: 260px;
background: linear-gradient(135deg, #1a1a1a 0%, #1C1C1C 50%, #2a2a2a 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 80px;
color: #ffffff;
position: relative;
overflow: hidden;
}
.product-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 30%, rgba(247, 73, 0, 0.1) 50%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
}
.product-card:hover .product-image::before {
opacity: 1;
}
.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(247, 73, 0, 0.3);
}
.product-content {
padding: 30px;
}
.product-category {
color: #F74900;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}
.product-title {
font-size: 20px;
font-weight: 700;
margin: 0 0 12px 0;
color: #1C1C1C;
letter-spacing: -0.5px;
line-height: 1.3;
}
.product-description {
font-size: 15px;
color: #666;
margin: 0 0 20px 0;
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.product-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid rgba(28, 28, 28, 0.08);
}
.product-button {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #ffffff;
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
}
.product-button:hover {
background: linear-gradient(135deg, #e04000 0%, #d63f00 100%);
transform: translateX(5px);
} .no-results {
grid-column: 1 / -1;
text-align: center;
padding: 80px 20px;
color: #666;
}
.no-results i {
font-size: 80px;
color: #ddd;
margin-bottom: 20px;
}
.no-results h3 {
font-size: 24px;
font-weight: 700;
margin: 0 0 10px 0;
color: #1C1C1C;
}
.no-results p {
font-size: 16px;
margin: 0;
} @media (max-width: 1024px) {
.main-content {
grid-template-columns: 1fr;
}
.sidebar {
position: static;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.products-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.content-wrapper {
grid-template-columns: 1fr;
gap: 50px;
padding: 50px;
}
.page-title {
font-size: 42px;
}
.page-subtitle {
font-size: 20px;
}
.featured-image {
font-size: 150px;
}
}
@media (max-width: 968px) {
.header-content {
flex-direction: column;
gap: 20px;
}
.nav {
flex-wrap: wrap;
justify-content: center;
}
.banner-slider {
height: 500px;
}
.slide h1 {
font-size: 38px;
text-align: center;
}
.slide p {
font-size: 17px;
text-align: center;
}
.slide-buttons {
flex-direction: column;
align-items: flex-start;
}
.slider-arrow-left {
left: 5px;
}
.slider-arrow-right {
right: 5px;
}
.section-title {
font-size: 32px;
}
.combilift-content,
.contact-grid,
.about-content {
grid-template-columns: 1fr;
}
.solutions-grid,
.why-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
}
@media (max-width: 768px) {
.header-content {  flex-direction: row;
justify-content: space-between;
}
.nav {
display: none;
}
.cta-button {
display: none;
}
.mobile-menu-toggle {
display: flex;
}
.mobile-menu-overlay {
display: block;
}
.logo .logo-brand {
height: 40px;
}
.header-fixed .logo .logo-brand {
height: 35px;
}
.content-wrapper {
padding: 30px;
}
.page-title {
font-size: 32px;
}
.page-subtitle {
font-size: 18px;
}
.page-paragraph {
font-size: 16px;
}
.featured-image {
font-size: 120px;
}
.image-badge {
bottom: 20px;
left: 20px;
padding: 15px 20px;
}
.image-badge-text {
font-size: 16px;
}
.page-header h1 {
font-size: 36px;
}
.page-header p {
font-size: 16px;
}
.sidebar {
grid-template-columns: 1fr;
}
.products-grid {
grid-template-columns: 1fr;
}
.slide-buttons {
align-items: center;
gap: 15px;
padding-bottom: 25px;
}
.slide-cta-button, .whatsapp-button {
font-size: 15px;
padding: 12px 20px; 
}
.why-section, .testimonial-section, .solutions-section, .combilift-section, .about-section, .contact-section {
padding: 50px 5%;
}
.combilift-content, .about-content, .contact-grid {
gap: 30px;
}
.contact-title {
font-size: 38px;
margin-bottom: 60px;
}
.contact-info {
overflow: hidden;
max-width: 100%;
}
.contact-item a {
font-size: 15px;
}
.contact-form h3 {
font-size: 24px;
}
.footer * {
align-items: center;
justify-content: center;
}
.footer-bottom {
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
text-align: center !important;
width: 100% !important;
gap: 20px;
}
.footer-bottom > * {
display: block !important;
width: 100% !important;
text-align: center !important;
}
.footer-bottom-right > a, .footer-bottom-right > span {
display: block;
}
.main-content.produtos {
grid-template-columns: 1fr;
}
} .wp-pagenavi {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 12px;
width: 100%;
padding: 40px 0;
margin-top: 60px;
} .wp-pagenavi a,
.wp-pagenavi span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 48px;
height: 48px;
padding: 0 20px;
border-radius: 50px;
background: #ffffff;
color: #1C1C1C;
font-weight: 600;
font-size: 15px;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
text-decoration: none;
transition: all 0.3s ease;
} .wp-pagenavi a:hover {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #fff;
box-shadow: 0 6px 18px rgba(247, 73, 0, 0.25);
transform: translateY(-2px);
} .wp-pagenavi span.current {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #fff;
border: none;
box-shadow: 0 6px 20px rgba(247, 73, 0, 0.3);
transform: scale(1.05);
} .wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
font-weight: 700;
border-radius: 50%;
width: 48px;
height: 48px;
padding: 0;
color: #F74900;
}
.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
background: linear-gradient(135deg, #F74900 0%, #e04000 100%);
color: #fff;
} .wp-pagenavi span.pages {
font-weight: 600;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.06);
color: #1C1C1C;
padding: 0 20px;
height: 48px;
line-height: 48px;
border-radius: 50px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
} @media (max-width: 768px) {
.wp-pagenavi {
gap: 8px;
padding: 30px 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
min-width: 42px;
height: 42px;
font-size: 14px;
padding: 0 15px;
}
}
.the_content p, .the_content li {padding-bottom: 15px;}
.the_content ul, ol {padding-left: 15px;}
.the_content ul {list-style: inside disc;}
.the_content ol {list-style: inside decimal;}