/* Hero Section */
.hero {
    position: relative;
    min-height: 620px;
    background-color: var(--color-white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 5% 50% 45%;
    /* Proporciones originales de Elementor */
    min-height: 620px;
    padding: 0;
    max-width: 100vw;
    margin: 0;
}

.hero-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 80px;
    /* Mas espacio a la izquierda para el inicio del texto */
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 500px;
}

.hero-col-center h3 {
    font-family: var(--font-subheading);
    font-size: 26px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.hero-col-center h1 {
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.hero-col-right {
    position: relative;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Offset para efecto parallax opcional */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Botón Hero Especial */
.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-image: linear-gradient(180deg, #272E2770 0%, #29F2D01C 100%);
    background-color: transparent;
    border: 0;
    color: var(--color-white);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    font-weight: 600;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row-reverse;
}

/* Mercado Link */
.mercado-link {
    background-color: var(--color-bg-alt);
    margin: 30px 0;
    padding: 20px 0;
}

.mercado-link h2 {
    font-family: var(--font-subheading);
    font-size: 27px;
    font-weight: 600;
    color: var(--color-white);
    background-color: #000;
    padding: 10px 20px;
}

.mercado-link a {
    color: white;
}

/* Otros ajustes... */
.link-item .btn-link {
    background-color: var(--color-accent);
    font-family: var(--font-body);
}

/* Responsivo */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 0.2fr 1.8fr 1fr;
    }

    .hero-col-center h1 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-col-left {
        display: none;
    }

    .hero-col-center {
        padding: 50px 20px;
        order: 1;
        text-align: center;
    }

    .hero-col-right {
        height: 400px;
        order: 2;
    }

    .hero-image-layer {
        height: 100%;
    }

    .hero-col-center h1 {
        font-size: 36px;
    }
}