@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;700;800;900&display=swap');

:root {
    --primary: #031063;
    --primary-dark: #021050;
    --accent: #F05621;
    --accent-dark: #D94B1A;
    --primary-light: #F05621;
    --white: #FFFFFF;
    --gray-100: #F4F7FA;
    --gray-200: #E2E8F0;
    --text-body: #334155;
    --text-light: #64748B;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-heading); 
    font-weight: 800; 
    color: var(--primary-dark); 
    line-height: 1.2; 
    margin-bottom: 16px; 
}
a { text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

.bg-primary-dark { background-color: var(--primary-dark); color: var(--white); }
.bg-primary-dark h2, .bg-primary-dark h3 { color: var(--white); }
.bg-light { background-color: var(--gray-100); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.bg-primary h2, .bg-primary h3 { color: var(--white); }

.bg-pattern { position: relative; z-index: 1; }
.bg-pattern::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('../imagem/padrao.webp'); background-size: 160px; background-repeat: repeat; opacity: 0.08; filter: brightness(0) invert(1); z-index: -1; pointer-events: none; }

.bg-pattern-dark { position: relative; z-index: 1; }
.bg-pattern-dark::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('../imagem/padrao.webp'); background-size: 160px; background-repeat: repeat; opacity: 0.01; filter: brightness(0) invert(1); z-index: -1; pointer-events: none; }

/* Changed from 120px to 80px for better vertical rhythm */
.section-padding { padding: 80px 0; }

.section-label {
    display: flex; align-items: center; gap: 15px;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--primary); margin-bottom: 20px;
}
.section-label::before {
    content: ''; display: block; width: 40px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}
.section-label.light { color: var(--white); }
.section-label.light::before { background: linear-gradient(90deg, var(--accent), #FF8A5C); }

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 15px;
    letter-spacing: -0.5px; color: var(--primary-dark); line-height: 1.2;
}
.bg-primary-dark .section-title { color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 13px 28px; font-family: var(--font-heading); font-weight: 700;
    font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px;
    border: none; cursor: pointer; position: relative; overflow: hidden; z-index: 1;
    border-radius: 8px; /* Added softer corners */
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.1); transform: scaleX(0); transform-origin: right;
    transition: transform 0.3s ease; z-index: -1;
    border-radius: 8px;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

/* Disable hover effects on touch devices */
@media (hover: none) {
    .btn::before { display: none; }
}
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.btn-outline { background-color: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline::before { background-color: var(--white); }
.btn-outline:hover { color: var(--primary-dark); }

/* Header & Nav */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; transition: var(--transition-base);
}
.header.scrolled {
    background-color: var(--white); padding: 15px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.logo { justify-self: flex-start; }
.header nav { justify-self: center; }
.nav-actions { display: flex; align-items: center; gap: 20px; justify-self: flex-end; }

.logo img { height: 60px; transition: var(--transition-base); }
.header.scrolled .logo img { height: 50px; }

.nav-links { display: flex; gap: 24px; list-style: none; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 8px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; z-index: 100; list-style: none; will-change: opacity, transform; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li a { display: block; padding: 10px 20px; color: var(--text-body) !important; font-size: 0.9rem; text-transform: none; font-weight: 500; font-family: var(--font-body); }
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover { color: var(--primary) !important; background: var(--gray-100); }
.nav-links a {
    color: var(--white); font-family: var(--font-heading); font-weight: 600;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; position: relative;
}
.header.scrolled .nav-links a, 
.header.scrolled .btn-mobile-trigger { color: var(--primary-dark); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent)); transition: var(--transition-base);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions .btn { padding: 9px 20px; font-size: 0.78rem; }
.btn-mobile-trigger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* Mobile Menu Base */
.mobile-menu { display: none; }

/* Hero Section with KEN BURNS effect */
.hero {
    height: 85vh; min-height: 600px; position: relative; display: flex; align-items: center; background-color: var(--primary-dark); overflow: hidden;
}
.hero-video-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; background-color: var(--primary-dark);
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; opacity: 0.8;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(2,16,80,0.97) 0%, rgba(3,16,99,0.82) 50%, rgba(3,16,99,0.35) 100%);
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; max-width: 800px; color: var(--white); margin-top: 50px; }
.hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; }
.hero p { font-size: clamp(1rem, 1.25vw, 1.1rem); color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 650px; line-height: 1.5; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7); animation: fadeIn 3s ease-in-out;
}
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-heading); font-weight: 600; }
.scroll-indicator .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.7); border-radius: 14px; position: relative; }
.scroll-indicator .mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background-color: rgba(255,255,255,0.7); border-radius: 4px;
    animation: scrollWheel 2s infinite ease-in-out;
}
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 22px; opacity: 0; } }
@keyframes fadeIn { 0%, 50% { opacity: 0; } 100% { opacity: 1; } }

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .scroll-indicator .mouse::before { animation: none; top: 6px; }
    .scroll-indicator { animation: none; opacity: 1; }
}

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } /* Gap reduced */
.about-image { position: relative; }
.about-image img { box-shadow: 20px 20px 0 var(--primary-light); position: relative; z-index: 2; border-radius: 12px; }
.about-image::before {
    content: ''; position: absolute; top: -30px; left: -30px; width: 50%; height: 50%;
    background-color: var(--gray-200); z-index: 1; border-radius: 12px;
}
.about-text h2 { margin-bottom: 30px; }
.about-text p { font-size: 1.05rem; margin-bottom: 24px; color: var(--text-body); }

/* Services Section Watermark */
#especialidades { position: relative; overflow: hidden; }
#especialidades::before {
    content: ''; position: absolute; bottom: -80px; right: -80px;
    width: 700px; height: 700px; background-image: url('imagem/logobranca.png');
    background-size: contain; background-position: bottom right; background-repeat: no-repeat;
    opacity: 0.05; filter: grayscale(100%); pointer-events: none; z-index: 0;
}
#especialidades .container { position: relative; z-index: 1; }

/* Services Carousel */
.services-header { margin-bottom: 50px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.services-header p { max-width: 600px; font-size: 1.05rem; color: var(--text-light); }

.carousel-wrapper { position: relative; padding: 0 50px; margin-top: 40px; }
.services-carousel {
    display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
    padding-bottom: 20px;
}
.services-carousel::-webkit-scrollbar { display: none; }

.service-item { 
    position: relative; height: 450px; background-color: var(--primary-dark); 
    overflow: hidden; border-radius: 12px;
    flex: 0 0 calc(33.333% - 20px); scroll-snap-align: start;
}

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background-color: var(--white); color: var(--primary-dark);
    border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 1.2rem; cursor: pointer; z-index: 10;
    transition: var(--transition-base); display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); transform: translateY(-50%) scale(1.05); }
@media (hover: none) {
    .carousel-btn:hover { transform: translateY(-50%); }
}
.carousel-btn:active { transform: translateY(-50%) scale(0.95); }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

/* Carousel Dots (Mobile Only) */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 0 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.carousel-dot:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

@media (max-width: 768px) {
    .carousel-dots {
        display: flex;
    }
}

.service-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
}

.service-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(2,16,80,0.97) 0%, rgba(3,16,99,0.55) 50%, rgba(3,16,99,0) 100%);
    z-index: 1;
}

.service-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
}

.service-content h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; display: flex; align-items: center; gap: 0; }
.service-content h3 i { display: none; }
.service-content p { color: rgba(255,255,255,0.95); font-size: 1rem; line-height: 1.5; margin-bottom: 0; }

/* Diferenciais Section (Now White Background) */
.why-section { background-color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.stat-box { border-top: 1px solid var(--gray-200); padding-top: 24px; }
.stat-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; }
.stat-text { font-size: 0.95rem; font-weight: 600; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 1px; }

/* Compromisso */
.compromise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.comp-item { display: flex; gap: 30px; }
.comp-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary-light); opacity: 1; line-height: 1.1; flex-shrink: 0; }
.comp-item h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.comp-item p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.6; }

/* CTA Split Layout */
.cta-split { display: flex; flex-wrap: wrap; overflow: hidden; border-top: 1px solid var(--gray-200); }
.cta-image { flex: 1; min-width: 300px; background-size: cover; background-position: center; min-height: 450px; }
.cta-content, .cta-text { flex: 1; min-width: 300px; padding: 80px 6%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.cta-content p, .cta-text p { font-size: 1.05rem; margin-bottom: 30px; color: var(--text-body); max-width: 500px; }

/* Footer & CTA */
.footer-cta { text-align: center; }
.footer-cta h2 { color: var(--white); margin-bottom: 20px; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -1px; line-height: 1.2; }
.footer-cta p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto;}

footer { background: linear-gradient(135deg, var(--primary-dark) 0%, #010d40 60%, #021050 100%); color: var(--white); position: relative; overflow: hidden; }
footer::before {
    content: ''; position: absolute; bottom: -100px; right: -50px;
    width: 800px; height: 800px; background-image: url('imagem/logobranca.png');
    background-size: contain; background-position: bottom right; background-repeat: no-repeat;
    opacity: 0.03; filter: grayscale(100%) invert(1); pointer-events: none; z-index: 0;
}
.footer-main { position: relative; z-index: 1; padding: 80px 5% 60px; display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; max-width: 1280px; margin: 0 auto; }
.footer-map iframe { width: 100%; height: 200px; border-radius: 8px; filter: grayscale(10%) contrast(1.1); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.footer-logo img { height: 70px; margin-bottom: 24px; }
.footer-desc { color: rgba(255,255,255,0.7); max-width: 400px; font-size: 1rem; }
.footer-title { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; color: var(--white); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.4; }
.footer-contact i { color: var(--primary-light); margin-top: 4px; font-size: 1.1rem; }
.footer-bottom { background-color: #010d40; padding: 30px 5%; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; position: relative; z-index: 1; }

/* Animations - Removed for performance */
.reveal { 
    opacity: 1; 
    transform: none;
}
.reveal.active { 
    opacity: 1; 
    transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-text { order: -1; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .service-item { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .header .container { display: flex; justify-content: space-between; }
    .nav-links, .header .btn-accent { display: none; }
    .btn-mobile-trigger { display: block; }
    .header.mobile-open { background-color: var(--white); }
    .header.mobile-open .btn-mobile-trigger, .header.mobile-open .logo img { color: var(--primary-dark); }
    .header.mobile-open .logo img { filter: none; }

    /* Mobile Menu Drawer */
    .mobile-menu {
        display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background-color: var(--white); padding: 20px 5% 40px;
        flex-direction: column; gap: 15px;
        transform: translateX(100%); transition: var(--transition-base); z-index: 1010;
        overflow-y: auto; text-align: left;
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--gray-200); padding-bottom: 15px; }
    .mobile-menu-logo { height: 45px; }
    .mobile-menu #mobile-close {
        color: var(--primary-dark); font-size: 2rem; display: block; background: none; border: none; cursor: pointer;
    }
    .mobile-menu a:not(.btn) {
        font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
        color: var(--primary-dark); text-transform: uppercase;
        border-bottom: 1px solid var(--gray-100); padding-bottom: 12px; margin-bottom: 5px;
        text-decoration: none;
    }

    .carousel-wrapper { padding: 0; margin-right: -5%; /* Break container boundary for snap */ overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-padding-left: 20px; }
    .carousel-btn { display: none; }
    .service-item { flex: 0 0 85%; height: auto; min-height: 380px; margin-right: 15px; scroll-snap-align: start; }
    .service-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
    .service-content h3 i { display: none; } /* Remove icons */
    .why-grid { gap: 30px; }
    .compromise-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Subpages & Specialty Grid */
.page-hero { height: 45vh; min-height: 450px; position: relative; display: flex; align-items: flex-start; justify-content: flex-start; background-color: var(--primary-dark); color: var(--white); overflow: hidden; padding-top: 180px; }
.page-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(2,16,80,0.97), rgba(3,16,99,0.7)); z-index: 1; }
.page-hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; background-position: center; 
    filter: grayscale(100%); opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: left; }
.page-hero h1 { font-size: clamp(2rem, 3vw, 2.4rem); margin-bottom: 15px; letter-spacing: -1px; line-height: 1.15; color: var(--white); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.9); max-width: 650px; line-height: 1.5; }
.breadcrumb { font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 25px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: rgba(0,0,0,0.25); padding: 8px 16px; border-radius: 4px; border-left: 3px solid var(--primary-light); width: fit-content; max-width: 100%; }
.breadcrumb a { color: var(--white); text-decoration: none; opacity: 0.8; transition: var(--transition-fast); }
.breadcrumb a:hover { opacity: 1; color: var(--primary-light); }
.breadcrumb i { font-size: 0.7rem; opacity: 0.5; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
@media (max-width: 992px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-card { border-radius: 12px; overflow: hidden; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; text-decoration: none; }
.spec-card:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.spec-card-img { height: 250px; background-size: cover; background-position: center; }
.spec-card-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.spec-card-body h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary-dark); }
.spec-card-body h3 i { color: var(--primary); margin-right: 10px; }
.spec-card-body p { color: var(--text-body); margin-bottom: 25px; flex-grow: 1; }
.spec-single-content h2.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.spec-single-content h2.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.spec-single-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 80px; align-items: stretch; overflow: hidden; }
.spec-images-grid {
    position: relative;
    width: 100%; max-width: 400px;
    height: 550px;
    margin: 0 auto;
}
.spec-images-grid img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Overlapping configuration */
.spec-images-grid img:nth-child(1) { top: 0; left: 0; width: 65%; height: 220px; z-index: 2; }
.spec-images-grid img:nth-child(2) { top: 60px; right: 0; width: 55%; height: 260px; z-index: 1; }
.spec-images-grid img:nth-child(3) { bottom: 80px; left: 10%; width: 50%; height: 220px; z-index: 3; }
.spec-images-grid img:nth-child(4) { bottom: 0; right: 5%; width: 68%; height: 240px; z-index: 2; border: 3px solid var(--white); }
.wpp-form-wrapper { margin-top: 40px; background: rgba(3,16,99, 0.04); padding: 30px; border-radius: 12px; border: 1px solid var(--gray-200); }
.wpp-form-wrapper h4 { margin-bottom: 20px; color: var(--primary-dark); font-family: var(--font-heading); }
.wpp-form { display: flex; flex-direction: column; gap: 15px; }
.wpp-form input, .wpp-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 6px; font-family: var(--font-body); font-size: 1rem; color: var(--primary-dark); transition: var(--transition-base); }
.wpp-form input:focus, .wpp-form textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(3,16,99,0.12); }
.spec-feature-list { list-style: none; margin-top: 30px; margin-bottom: 40px; }
.spec-feature-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 500; font-size: 1.05rem; color: var(--primary-dark); }
.spec-feature-list i { color: var(--primary); font-size: 1.2rem; }
@media (max-width: 900px) { .spec-single-grid { grid-template-columns: 1fr; } .page-hero { min-height: 350px; height: auto; padding-bottom: 70px; padding-top: 140px; } .spec-images-grid { margin: 40px auto; } }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 15px; z-index: 1000; text-decoration: none; }
.whatsapp-message { background-color: var(--white); color: var(--primary-dark); padding: 10px 18px; border-radius: 20px; font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); box-shadow: 0 5px 15px rgba(0,0,0,0.15); position: relative; display: inline-block; opacity: 0; transform: translateX(20px); visibility: hidden; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.whatsapp-float:hover .whatsapp-message { opacity: 1; visibility: visible; transform: translateX(0); }
.whatsapp-message::after { content: ''; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); border-width: 8px 0 8px 8px; border-style: solid; border-color: transparent transparent transparent var(--white); }
.whatsapp-icon { background-color: #25D366; color: var(--white); width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: transform 0.3s ease; position: relative; will-change: transform; }

/* Only animate on desktop */
@media (min-width: 769px) {
    .whatsapp-icon { animation: wppPulse 2s infinite; }
}
.whatsapp-icon::after { content: '1'; position: absolute; top: -2px; right: -2px; background-color: #FF3B30; color: white; width: 22px; height: 22px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 12px; font-weight: bold; font-family: sans-serif; border: 2px solid white; z-index: 2; }
.whatsapp-float:hover .whatsapp-icon { transform: scale(1.1); animation: none; }
@keyframes wppPulse { 0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } 50% { transform: scale(1.05); box-shadow: 0 5px 25px rgba(37,211,102,0.6); } 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } }
@media (max-width: 768px) { .whatsapp-message { display: none; } .whatsapp-float { bottom: 20px; right: 20px; } .whatsapp-icon { width: 50px; height: 50px; font-size: 26px; } }

/* Quem Somos - MVV Grid */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.mvv-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; border-bottom: 4px solid var(--primary); transition: var(--transition-base); }
.mvv-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(3,16,99,0.08); border-bottom-color: var(--primary-light); }
.mvv-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--gray-100); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: var(--transition-base); }
.mvv-card:hover .mvv-icon { background: var(--primary); color: var(--white); }
.mvv-icon i { font-size: 1.8rem; }
.mvv-card h3 { color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 15px; }
.mvv-card p { color: var(--text-body); line-height: 1.6; margin: 0; font-size: 1rem;}

/* Valores List */
.values-list { text-align: left; list-style: none; margin-top: 20px; }
.values-list li { padding: 10px 0; border-bottom: 1px dashed var(--gray-200); color: var(--text-body); font-weight: 500; font-size: 0.95rem; display: flex; gap: 10px; align-items: flex-start; }
.values-list li:last-child { border-bottom: none; }
.values-list i { color: var(--primary-light); margin-top: 4px; font-size: 1.1rem; flex-shrink: 0; }

/* Stats Grid Full */
.stats-grid-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.stats-grid-full .stat-box { background: var(--white); border-top: none; padding: 40px 20px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; border-bottom: 4px solid var(--primary); transition: var(--transition-base); }
.stats-grid-full .stat-box:hover { transform: translateY(-5px); border-bottom-color: var(--primary-light); box-shadow: 0 15px 40px rgba(3,16,99,0.12); }

/* Diferenciais Grid */
.diferenciais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.diferencial-item { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition-base); display: flex; flex-direction: column; align-items: flex-start; }
.diferencial-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(3,16,99,0.08); }
.diferencial-icon { width: 60px; height: 60px; border-radius: 12px; background: linear-gradient(135deg, rgba(2,16,80,0.05), rgba(2,16,80,0.1)); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: var(--transition-base); }
.diferencial-item:hover .diferencial-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.diferencial-icon i { font-size: 1.6rem; }
.diferencial-item h3 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 15px; }
.diferencial-item p { color: var(--text-body); font-size: 1rem; line-height: 1.6; }

/* Responsividade Quem Somos */
@media (max-width: 1024px) {
    .mvv-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .stats-grid-full { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 768px) {
    .mvv-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .mvv-card { padding: 30px 20px; }
    .stats-grid-full { grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
    .stats-grid-full .stat-box { padding: 25px 15px; }
    .diferenciais-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .diferencial-item { padding: 25px 20px; }
}

@media (max-width: 480px) {
    .stats-grid-full { grid-template-columns: 1fr; }
}

/* Clientes Section - Carrossel Automático Infinito */
.clients-section {
    background-color: var(--gray-100);
    overflow: hidden;
}
.clients-header {
    text-align: center;
    margin-bottom: 60px;
}
.clients-header .section-label {
    justify-content: center;
}
.clients-header .section-label::before {
    display: none;
}
.clients-header .section-title {
    margin-top: 20px;
}
.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}
.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--gray-100) 0%, transparent 100%);
}
.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--gray-100) 0%, transparent 100%);
}
.clients-carousel-track {
    display: flex;
    gap: 100px;
    animation: scrollClients 25s linear infinite;
    width: max-content;
}
.clients-carousel-track:hover {
    animation-play-state: paused;
}
.client-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    transition: var(--transition-base);
}
.client-logo-item img {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-base);
}
.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}
@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Clientes Section - Layout Split (Logos Esquerda / Texto Direita) */
.clients-section-split { 
    background-color: var(--gray-100);
    color: var(--text-dark);
    overflow: hidden;
}
.clients-split-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.clients-grid-split { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}
.clients-split-text .section-label { color: var(--accent); margin-bottom: 15px; }
.clients-split-text .section-title { 
    color: var(--primary-dark); 
    margin-bottom: 25px;
    font-size: 2.2rem;
}
.clients-split-text p { 
    color: var(--text-body); 
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.client-logo-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition-base);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100px;
    width: 100%;
}
.client-logo-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--accent);
}
.client-logo-alt img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    transition: var(--transition-base);
}
.client-logo-alt:hover img {
    transform: scale(1.05);
}

/* Clientes Section - Opção 3: Lista Vertical com Ícones */
.clients-list { max-width: 1000px; margin: 0 auto; }
.client-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: var(--transition-base);
    border: 2px solid var(--gray-200);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.client-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(3,16,99,0.15);
}
.client-item-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 12px;
    flex-shrink: 0;
}
.client-item-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.client-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}
.client-item-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}
.client-item-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade para Layout de Clientes */
@media (max-width: 1024px) {
    .clients-split-container {
        gap: 30px;
    }
    .clients-grid-split {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .clients-split-text {
        order: -1;
        text-align: left;
    }
    .clients-split-text .section-label {
        justify-content: flex-start;
    }
    .clients-split-text .section-label::before {
        display: block;
    }
    .clients-grid-split {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-grid-split {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .client-logo-alt {
        height: 80px;
        padding: 15px;
    }
}

/* Filtros de Equipamentos */
.equip-filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.equip-filter-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.equip-filter-btn.active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 86, 33, 0.3);
}
