/* Header Hero Section */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://pages.lenovo.com/rs/183-WCT-620/images/people-migracion-11.png?version=0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Content */
.hero__content {
    position: relative;
    width: 100%;
    padding: var(--spacing-2xl) 0;
    z-index: var(--z-index-base);
}

/* Grid Layout */
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Text Content */
.hero__text-content {
    color: var(--color-text-light);
    max-width: 680px;
}

.hero__title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-black);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
}

.hero__subtitle {
    font-size: 1.875rem;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
}

.hero__description {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-loose);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.hero__cta-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
}

/* Branding Section */
.hero__branding {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.hero__windows-logo {
    width: 280px;
    height: 80px;
    object-fit: contain;
}

.hero__branding-text {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
}

/* Logo Lenovo */
.hero__logo {
    position: absolute;
    top: var(--spacing-lg);
    right: 0;
    z-index: calc(var(--z-index-base) + 1);
}

.hero__logo img {
    width: 47px;
    height: 140px;
    object-fit: contain;
}

/* Form Wrapper */
.hero__form-wrapper {
    position: relative;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero__grid {
        grid-template-columns: 1fr 380px;
        gap: var(--spacing-xl);
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.625rem;
    }
}

@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero__text-content {
        max-width: 100%;
    }
    
    .hero__form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero__logo {
        top: var(--spacing-md);
        right: 0;
    }
    
    .hero__logo img {
        width: 40px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    
    .hero__content {
        padding: var(--spacing-xl) 0;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.375rem;
    }
    
    .hero__cta-text {
        font-size: 1.125rem;
    }
    
    .hero__branding {
        margin-top: var(--spacing-lg);
    }
    
    .hero__windows-logo {
        width: 160px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero__logo {
        top: var(--spacing-sm);
        right: 0;
    }
    
    .hero__logo img {
        width: 35px;
        height: 100px;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__subtitle {
        font-size: 1.25rem;
    }
    
    .hero__description {
        font-size: 0.9375rem;
    }
}

