.montagut-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    min-height: 450px;
}

.hero-left-pane {
    background-color: #FBF9F6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 500px;
    width: 100%;
}

.hero-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #C62828;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: #1A1A1A;
    margin: 0 0 24px 0;
}

.hero-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 32px 0;
}

.hero-button {
    background-color: #C62828;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #1A1A1A;
    transform: translateY(-2px);
}

.hero-right-pane {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image Overlay */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15); /* Color inicial de superposición */
    pointer-events: none;
    transition: background-color 0.3s ease;
}

/* Responsiveness */
@media (max-width: 768px) {
    .montagut-hero-section {
        grid-template-columns: 1fr;
    }
    .hero-left-pane {
        padding: 40px 20px;
    }
    .hero-right-pane {
        height: 350px !important;
    }
    .hero-title {
        font-size: 32px;
    }
}
