.mk-hero-img {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #020617;
}

.mk-hero-img__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.mk-hero-img__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.mk-hero-img__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 0; 
}

.mk-hero-logo {
    width: 100%;
    height: auto;
    display: block;
}

.mk-hero-text-wrapper {
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin-top: -40px; 
}

.mk-hero-img__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #cbd5e1; 
    margin-bottom: 2rem; 
    opacity: 0.9;
    
    /* Efecto de texto flotante sutil */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); 
}

.mk-hero-img__cta {
    display: inline-block;
    padding: 1.2rem 3.5rem; /* Un poco más amplio para que se vea más premium */
    background: rgba(255, 255, 255, 0.05); /* Fondo casi transparente */
    backdrop-filter: blur(5px); /* Efecto vidrio esmerilado */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    
    /* Propiedades para el efecto flotante */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

/* Estado Hover: El botón "flota" y se ilumina */
.mk-hero-img__cta:hover {
    transform: translateY(-8px); /* Desplazamiento hacia arriba */
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Sombra más profunda */
    color: #fff;
}

/* Efecto de clic para mayor respuesta */
.mk-hero-img__cta:active {
    transform: translateY(-2px);
}

.mk-hero-img__cta:hover {
    background: #fff;
    color: #006481;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
