  :root {
            --primary: #274496; /* Azul AcheMaq */
            --secondary: #fbd037; /* Amarelo AcheMaq */
            --accent: #fbd037;
            --light: #f8f9fa;
            --dark: #231f20;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
           width: 300px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .header-btns {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-color1 {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #1d3575;
        }
        
        .btn-color2{
            background-color: var(--primary);
            color: var(--dark);
        }
        
        .btn-secondary:hover {
            background-color: #e6b82e;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(39, 68, 150, 0.8), rgba(39, 68, 150, 0.8)), url('https://images.unsplash.com/photo-1601579530964-491a0afd5b0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 20px 0;
            background-color: #e9ecef;
        }
        
        .breadcrumb-container {
            display: flex;
            gap: 10px;
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: var(--gray);
        }
        
        /* Main Content */
        .main-content {
            padding: 0px 0;
        }
        
        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .section-title {
            color: var(--primary);
            font-size: 2rem;
        }
        
        .view-all {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Filter Section */
        .filter-section {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .filter-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid #dee2e6;
        }
        
        .filter-tab {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            color: var(--gray);
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .filter-tab.active {
            color: var(--primary);
            border-bottom: 3px solid var(--primary);
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        
        .filter-group {
            margin-bottom: 15px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .filter-group select, 
        .filter-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--gray);
            border-radius: 4px;
        }
        
        .filter-btn {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            grid-column: 1 / -1;
        }
        
        .filter-btn:hover {
            background-color: #e6b82e;
        }
        
        /* Machines Grid */
        .machines-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .machine-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .machine-card:hover {
            transform: translateY(-5px);
        }
        
        .machine-img {
            height: 200px;
            background-color: var(--gray);
            position: relative;
        }
        
        .machine-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .machine-price {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .machine-info {
            padding: 20px;
        }
        
        .machine-info h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .machine-details {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .machine-detail-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .machine-location {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .machine-contact {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #1d3575;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .page-item.active {
            background-color: var(--primary);
            color: white;
        }
        
        .page-item:not(.active):hover {
            background-color: #e9ecef;
        }
        
        /* Sidebar */
        .content-wrapper {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 30px;
        }
        
        .sidebar {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            padding: 25px;
            height: fit-content;
        }
        
        .sidebar-title {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #dee2e6;
        }
        
        .sidebar-group {
            margin-bottom: 25px;
        }
        
        .sidebar-group h4 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .sidebar-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        /* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.footer-column ul li a:hover {
    color: white;
}
.footer-column ul li a {
    position: relative;
}

.footer-column ul li a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    text-decoration: none;
color: white;    font-family: 'Font Awesome', sans-serif;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
}
        
        /* Responsive */
        @media (max-width: 992px) {
            .filter-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .machines-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .filter-grid {
                grid-template-columns: 1fr;
            }
            
            .machines-grid {
                grid-template-columns: 1fr;
            }
        }