/* =============================================
   LINEE PRODUTTIVE - Page Specific Styles
   ============================================= */

/* Product Lines Grid */
.lines-grid {
    display: grid;
    gap: 0;
}

.line-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.line-item:nth-child(even) {
    direction: rtl;
}

.line-item:nth-child(even) > * {
    direction: ltr;
}

.line-image {
    position: relative;
    overflow: hidden;
}

.line-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.line-item:hover .line-image img {
    transform: scale(1.1);
}

.line-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--color-light);
}

.line-item:nth-child(even) .line-content {
    background: var(--color-white);
}

.line-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.line-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.line-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
    .line-item {
        grid-template-columns: 1fr;
    }

    .line-item:nth-child(even) {
        direction: ltr;
    }

    .line-image {
        height: 300px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 640px) {
    .line-content {
        padding: 2.5rem;
    }
}
