/* ===================================
   SEÇÃO NOSSAS LINHAS DE PRODUTOS
   Estilo elegante e consistente
   =================================== */

.product-lines-area {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-lines-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(2, 90, 151, 0.05) 50%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

.product-lines-area .section-header {
    position: relative;
    z-index: 2;
}

.product-lines-area .section-title {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #002257 0%, #025a97 50%, #002257 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 8s ease infinite;
}

.product-lines-area .section-description {
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Estilo para os cards de produtos */
.product-lines-area .ft-product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 2;
    height: 100%;
}

.product-lines-area .ft-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(2, 90, 151, 0.2);
    border-color: #025a97;
}

.product-lines-area .product-image {
    position: relative;
    overflow: hidden;
}

.product-lines-area .product-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-lines-area .ft-product:hover .product-image img {
    transform: scale(1.1);
}

.product-lines-area .product-info {
    padding: 25px;
    background: white;
    height: calc(100% - 250px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-lines-area .product-category {
    margin-bottom: 10px;
}

.product-lines-area .product-category a {
    color: #025a97;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.product-lines-area .product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-lines-area .product-title a {
    color: #002257;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-lines-area .product-title a:hover {
    color: #025a97;
}

.product-lines-area .product-info-bottom {
    margin-top: auto;
}

.product-lines-area .add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #025a97 0%, #002257 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 90, 151, 0.3);
}

.product-lines-area .add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 90, 151, 0.4);
    color: white;
    text-decoration: none;
}

.product-lines-area .add-to-cart i {
    font-size: 1.1rem;
}

/* Responsividade para Linhas de Produtos */
@media (max-width: 991px) {
    .product-lines-area {
        padding: 60px 0;
        margin: 30px 0;
    }
    
    .product-lines-area .section-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .product-lines-area .section-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .product-lines-area {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .product-lines-area .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .product-lines-area .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .product-lines-area .product-info {
        padding: 20px;
    }
    
    .product-lines-area .product-title {
        font-size: 1.1rem;
    }
}
