/* Seção Produtos */
.products-section {
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.company-video {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.company-video video {
    width: 100%;
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeDown 1s ease-out;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}