/**
 * ESTILOS: mk-hero-cinematic
 * METODOLOGÍA: BEM
 */

/* Contenedor Principal */
.mk-hero {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
}



/* Modificador: Altura total (Optimizado para Hero) */
.mk-hero--full-height {
    height: 100vh; /* Cambiado a 100vh para impacto total */
    min-height: 600px;
}

/* Elemento: Background e Imagen (Ajuste 1920x1080) */
.mk-hero__background {
    position: absolute;
    inset: 0;
    background-size: cover;      /* Ajusta la imagen sin deformar */
    background-position: center; /* Mantiene el centro de la foto a la vista */
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay Profesional (Verdoso para centrar la vista) */
.mk-hero__overlay {
    position: absolute;
    inset: 0;
    /* Cambiamos rgba(0,0,0,...) por un tono verde oscuro. 
       RGBA Sugerido: rgba(10, 25, 20, 0.4) -> Un verde petróleo oscuro.
    */
    background: 
        radial-gradient(circle, rgba(20, 45, 35, 0.2) 0%, rgba(5, 15, 10, 0.85) 100%),
        linear-gradient(0deg, rgba(5, 15, 10, 0.9) 0%, transparent 60%);
    z-index: 2;
    
    /* Mix-blend-mode opcional: ayuda a que el color se funda con la foto del teclado */
    mix-blend-mode: multiply; 
}

/* Contenedor de Elementos */
.mk-hero__container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.mk-hero__content-center {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los hijos horizontalmente */
    text-align: center;
    gap: 2.5rem;         /* Espacio entre logo y botón */
}

/* El Logo de la Mascota */
.mk-hero__logo-img {
    width: 100%;
    max-width: 400px;    /* Tamaño controlado del logo */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
    transition: transform 0.4s ease;
}

.mk-hero__logo-img:hover {
    transform: scale(1.05);
}

/* El Botón Master Kit - Estructura Base */
.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 42px;
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Variante Primary: Estilo Translúcido / Ghost */
.mk-btn--primary {
    background-color: rgba(255, 255, 255, 0.08); /* Fondo sutil translúcido */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7); /* Borde blanco fino */
    backdrop-filter: blur(4px); /* Efecto cristal sobre el fondo */
}

/* Estado Hover */
.mk-btn--primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}


/* Ajustes para Móviles */
@media (max-width: 768px) {
    .mk-hero--full-height {
        /* Restamos la altura del header para que Header + Hero ocupen exactamente 1 pantalla */
        height: calc(100dvh - var(--header-height, 70px)) !important;
        min-height: auto !important;
    }
    
    .mk-hero__logo-img {
        max-width: 200px;
    }
}
