.montagut-prod-section {
    padding: 80px 40px;
    background-color: #FBF9F6;
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

.montagut-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.header-left {
    flex: 1;
    max-width: 60%;
}

.header-right {
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.montagut-sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #C62828;
    display: block;
    margin-bottom: 15px;
}

.montagut-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.montagut-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.montagut-link {
    font-size: 14px;
    font-weight: 700;
    color: #C62828;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.montagut-link:hover {
    border-color: currentColor;
}

/* Cards Grid */
.montagut-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.montagut-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.montagut-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card-image-wrapper {
    width: 100%;
    height: 250px; /* Sobre-escrito por controles de Elementor */
    overflow: hidden;
    background: #f0f0f0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.montagut-card:hover .card-image {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 40px 0;
}

.card-arrow-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.montagut-card:hover .card-arrow-btn {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .montagut-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .montagut-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .header-left, .header-right {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .montagut-cards-grid {
        grid-template-columns: 1fr;
    }
    .montagut-prod-section {
        padding: 40px 20px;
    }
    .montagut-title {
        font-size: 32px;
    }
}
