 /* tenho que ajeitar para as imagens se encaixarem no slide do modal */
 header {
           width: 100%;
            border-bottom: 1px solid #d1fae5;
            padding: 0 10px;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }

        .logo-icon{
            display: flex;
            align-items: center;
            gap: 36px;
        }
        .logo-icon img:nth-child(1n){
            width: 70px;
        }
        
        .logo-icon img:nth-child(3n){
            width: 130px;
        }

        .nav-links {
             font-size: 2.4rem;
             font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--emerald-600);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--emerald-500);
            transition: width 0.2s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-contact-btn {
            background: linear-gradient(135deg, var(--emerald-500), var(--primary-green-dark));
            color: var(--white);
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .nav-contact-btn:hover {
            background: linear-gradient(135deg, var(--emerald-600), var(--primary-green-darker));
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            display: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: var(--gray-700);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .menu-toggle:hover {
            color: var(--emerald-600);
        }

        .mobile-menu {
            display: none;
            margin-top: 16px;
            padding-bottom: 16px;
            border-top: 1px solid var(--gray-200);
            padding-top: 16px;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-link {
                         font-family: 'Inter', sans-serif;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            transition: color 0.2s ease;
            font-size: 2.4rem;
        }

        .mobile-nav-link:hover {
            color: var(--emerald-600);
        }

        .mobile-contact-btn {
            background: linear-gradient(135deg, var(--emerald-500), var(--primary-green-dark));
            color: var(--white);
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            font-size: 2.4rem;
        }
          /* Company Showcase Section */
       /* Company Showcase Section */
.company-showcase {
    padding: 20px 0;
    color: #1f2937;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-main-title {
    font-size: 4rem;
            font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
    font-style: normal;
    color: var(--primary-green-darker);

}

.showcase-subtitle {
    font-size: 1.7rem;
    margin-top: 5px;
             font-family: 'Inter', sans-serif;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500; 

}

/* Filter Section */
.filter-section {
    max-width: 800px;
    margin: 0 auto 30px;
    
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #10b981;
    background: white;
    color: #10b981;
    border-radius: 10px;
    cursor: pointer;
     font-family: 'Inter', sans-serif;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500; 
            font-size: 1.5rem;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #10b981;
    color: white;
}

.company-grid {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.company-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
    align-items: center;
}

.company-card:hover {
    background: rgba(16, 185, 129, 0.05);
}

.company-card:last-child {
    border-bottom: none;
}

.company-card.hidden {
    display: none;
}

.media-container {
    flex-shrink: 0;
    width: 240px;
}

.content-container {
    flex: 1;
    min-width: 0;
}

.company-logo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.company-title {
      font-family: 'Inter', sans-serif;
            color: var(--gray-700);
            text-decoration: none;
          font-size:1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 6px;
    line-height: 1.2;
}

.company-info {
    color: #6b7280;
     font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

.category-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 4px 10px;
    border-radius: 3px;
      font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.record-video {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    pointer-events: all;
}

.record-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #e5e7eb;
}

.gallery-counter {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.record-type {
    position: relative;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

/* Responsividade */
@media (max-width: 600px) {
    .company-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .media-container,
    .company-logo,
    .record-video,
    .record-gallery {
        width: 100%;
        height: auto;
    }

    .content-container {
        text-align: center;
    }
}
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .modal-content {
            position: relative;
            margin: auto;
            padding: 20px;
            width: 90%;
            max-width: 800px;
            top: 50%;
            transform: translateY(-50%);
        }

        .modal-image {
            width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 8px;
        }

        .modal-video {
            width: 100%;
            max-height: 70vh;
            border-radius: 8px;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #10b981;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(16, 185, 129, 0.8);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 50%;
        }

        .prev {
            left: 20px;
            z-index: 1000;
        }

        .next {
            right: 20px;
            z-index: 1000;
        }

        .modal-nav:hover {
            background: #10b981;
        }

        .modal-counter {
            text-align: center;
            color: white;
            margin-top: 10px;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .company-showcase {
                padding: 40px 0;
            }

            .showcase-main-title {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .showcase-subtitle {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .company-grid {
                padding: 0 16px;
            }

            .company-card {
                flex-direction: column;
                padding: 16px 0;
                gap: 12px;
            }

            .media-container {
                width: 100%;
                align-self: center;
            }

            .company-logo,
            .record-video {
                width: 100%;
                height: 200px;
                max-width: 300px;
                margin: 0 auto;
                display: block;
            }

            .record-gallery {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                grid-template-columns: repeat(2, 1fr);
                gap: 4px;
            }

            .gallery-image {
                height: 75px;
            }

            .company-title {
                font-size: 16px;
                text-align: center;
            }

            .company-info {
                text-align: center;
                font-size: 12px;
            }

            .category-tag {
                display: block;
                text-align: center;
                width: fit-content;
                margin: 0 auto 8px;
            }

            .filter-buttons {
                justify-content: center;
                gap: 6px;
            }

            .filter-btn {
                font-size: 12px;
                padding: 6px 12px;
            }

            .record-type {
                top: 8px;
                right: 8px;
                font-size: 9px;
                padding: 3px 6px;
            }

            .modal-content {
                width: 95%;
                padding: 10px;
            }

            .modal-nav {
                padding: 8px 12px;
                font-size: 16px;
            }

            .prev {
                left: 10px;
            }

            .next {
                right: 10px;
            }

            .close {
                top: 10px;
                right: 20px;
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .showcase-main-title {
                font-size: 24px;
            }

            .showcase-subtitle {
                font-size: 14px;
            }

            .company-card {
                padding: 12px 0;
            }

            .company-logo,
            .record-video {
                height: 180px;
            }

            .gallery-image {
                height: 60px;
            }

            .filter-btn {
                font-size: 11px;
                padding: 5px 10px;
            }
        }
        .footer {
            background-color: var(--gray-800);
            color: var(--white);
            padding: 24px 0;
        }

        .footer-content {
       display: flex;
       justify-content: space-between;
       padding: 0 20px;
       flex-wrap: wrap;
       align-items: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-icon {
            width: 70px;
        }

        .footer-title {
             font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
        }

        .footer-subtitle {
            font-size: 14px;
            opacity: 0.75;
        }


        .footer-copyright,
        .footer-location {
            font-size: 14px;
            opacity: 0.75;
        }