.page-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 54, 101, 0.75);
    z-index: 1;
}

.page-hero__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: -0.02em;
    user-select: none;
}

.page-hero__content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: flex;
    align-items: stretch;
    gap: var(--spacing-2xl);
}

.page-hero__text-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.page-hero__text-wrapper:last-child {
    flex: 1;
}

.page-hero__title {
    font-size: var(--font-size-xxl);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-hero__separator {
    width: 4px;
    min-height: 280px;
    background-color: var(--color-accent);
    flex-shrink: 0;
    border-radius: 2px;
    align-self: center;
}

.page-hero__description {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Tablets y dispositivos medianos */
@media (max-width: 1024px) {
    .page-hero {
        min-height: 280px;
    }

    .page-hero__bg-text {
        font-size: 10rem;
    }

    .page-hero__content {
        max-width: 900px;
        padding: var(--spacing-2xl) var(--spacing-md);
        gap: var(--spacing-xl);
    }

    .page-hero__title {
        font-size: var(--font-size-3xl);
    }

    .page-hero__separator {
        height: 200px;
    }

    .page-hero__description {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
    }

    .page-hero__bg-text {
        font-size: 5rem;
    }

    .page-hero__content {
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-xl) var(--spacing-md);
        gap: var(--spacing-lg);
        text-align: center;
    }

    .page-hero__text-wrapper {
        width: 100%;
        justify-content: center;
    }

    .page-hero__title {
        font-size: var(--font-size-3xl);
        text-align: center;
        width: 100%;
    }

    .page-hero__separator {
        width: 100%;
        max-width: 100%;
        height: 4px;
        min-height: 4px;
        align-self: center;
    }

    .page-hero__description {
        font-size: var(--font-size-base);
        line-height: 1.6;
        text-align: center;
        width: 100%;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .page-hero {
        min-height: 280px;
    }

    .page-hero__bg-text {
        font-size: 3.5rem;
    }

    .page-hero__content {
        padding: var(--spacing-xl) var(--spacing-md);
        gap: var(--spacing-md);
    }

    .page-hero__title {
        font-size: var(--font-size-2xl);
    }

    .page-hero__separator {
        width: 100%;
        max-width: 100%;
        height: 4px;
        min-height: 4px;
    }

    .page-hero__description {
        font-size: var(--font-size-base);
        line-height: 1.6;
    }
}
