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

           :root {
            --primary-color: #3D831E;
            --light-color: #f8f9fa;
            --dark-color: #333;
            --accent-color: #4a9c2a;
        }
    


        html {
            scroll-behavior: smooth;
        }

    /* Header styles */
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        background-color: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
    }
    
    .logo-image {
        height: 3rem;
        width: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    
    .logo-text {
        margin-left: 0.75rem;
    }
    
    .logo-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #1a202c;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
        color: #3D831E;
        font-weight: 500;
    }
    
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
    
    .nav-link {
        color: #4b5563;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    .nav-link:hover {
        color: #3D831E;
        font-weight: bold;
        
    }
    
    .mobile-menu-button {
        display: none;
        color: #4b5563;
        background: none;
        border: none;
        cursor: pointer;
    }
    
  /* Ajustes para o menu mobile */
.mobile-menu {
    display: none;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.mobile-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-container .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1.1rem;
    text-decoration: none;
}

.mobile-menu-container .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu-button {
    display: none;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button:focus {
    outline: 2px solid var(--primary-color);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
}

        #img-about {
            width: 100%;
            height: auto;
            max-width: 700px;
            margin: 0 auto;
        }

        .hero-pattern {
            background-color: #fff;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233d831e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .testimonial-card {
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .product-card {
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }

        .project-card {
            position: relative;
            overflow: hidden;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(61, 131, 30, 0.8);
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 1rem;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }
  
       
        
        .contact-section {
            background-color: var(--light-color);
            padding: 60px 0;
            text-align: center;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            font-weight: bold;
        }
        
        #span-contact {
            color: var(--primary-color);
            font-weight: bold;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .contact-item {
            flex: 1;
            padding: 25px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-text {
            color: var(--dark-color);
        }
        
        .social-media {
            margin-top: 30px;
        }
        
        .social-title {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        #map-link{
            font-weight: bold;
            color:#3D831E;
            margin-top: 8px;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--accent-color);
            transform: scale(1.1);
        }
        
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 25px 0;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-logo {
            color: var(--light-color);
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .footer-text {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .copyright {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
        }
        
        @media (max-width: 768px) {
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-item {
                width: 100%;
            }
        }

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float-button {
    width: 86px; /* Aumentado em mais 20% (de 72px) */
    height: 86px; /* Aumentado em mais 20% (de 72px) */
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float-button i {
    font-size: 46px; /* Aumentado em mais 20% (de 38px) */
    color: white;
}

.whatsapp-float-text {
    background-color: #25D366;
    color: white;
    padding: 12px 20px; /* Ligeiramente aumentado */
    border-radius: 24px; /* Ligeiramente aumentado */
    margin-right: 14px;
    font-weight: 500;
    font-size: 1.2rem; /* Adicionado para aumentar o texto */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    position: absolute;
    right: 100px; /* Ajustado para o novo tamanho do botão */
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-float-button {
    transform: scale(1.1);
}

/* Media Query para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-float-button {
        width: 72px; /* Aumentado em mais 20% (de 60px) */
        height: 72px; /* Aumentado em mais 20% (de 60px) */
    }
    
    .whatsapp-float-button i {
        font-size: 40px; /* Aumentado em mais 20% (de 34px) */
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Ferragens Section Styles */
.ferragens-section {
    padding: 5rem 0;
    background-color: white;
}

.ferragens-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.ferragens-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ferragens-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.ferragens-title span {
    color: var(--primary-color);
}

.ferragens-description {
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.ferragens-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.ferragens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ferragem-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ferragem-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.ferragem-icon-container {
    background-color: rgba(61, 131, 30, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ferragem-icon-container.large {
    width: 8rem;
    height: 8rem;
}

.ferragem-icon-container svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.ferragem-icon-container img {
    width: 180px;
    height: 180px;
}

.ferragem-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ferragem-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.ferragem-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ferragem-link:hover {
    text-decoration: underline;
}

.ferragens-cta {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
}

.ferragens-cta-content {
    text-align: center;
}

.ferragens-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ferragens-cta-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.ferragens-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.ferragens-btn-primary {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ferragens-btn-primary:hover {
    background-color: #2d6016;
}

.ferragens-btn-secondary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ferragens-btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.ferragens-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .ferragens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ferragens-title {
        font-size: 3rem;
    }
    
    .ferragens-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .ferragens-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ferragens-title {
        font-size: 3rem;
    }
    
    .ferragens-container {
        padding: 0 4rem;
    }
}