/* ============================================
   HERO PERSONAL STYLE - OPTIMIZADO
   ============================================ */

.hero-personal {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    overflow: hidden;
}

/* Fondo con Imagen Personal - Más visible */
.hero-bg-personal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-personal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) contrast(1.15);
    animation: zoomIn 1.5s ease-out;
    /* Optimizaciones para parallax suave */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.65) 100%);
}

/* Contenido del Hero - Reducido */
.hero-content-personal {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    animation: fadeInLeft 1s ease-out;
}

.hero-text-personal {
    max-width: 550px;
}

/* Etiqueta "MI NOMBRE ES:" - Más pequeña */
.hero-intro-label {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(230, 86, 22, 0.6);
}

/* Nombre Principal - Reducido */
.hero-name {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-light);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Título Profesional Principal - Reducido */
.hero-title-main {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-light);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Subtítulo Profesión - Reducido */
.hero-subtitle-profession {
    font-family: var(--font-secondary);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Información Personal del Fundador */
.hero-personal-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(230, 86, 22, 0.3);
    max-width: 500px;
}

.hero-founder-label {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.hero-founder-name {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(230, 86, 22, 0.5);
}

.hero-founder-titles {
    font-family: var(--font-secondary);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* Redes Sociales - Ocultas */
.hero-social-links {
    display: none;
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-personal {
        padding: 0 5%;
        justify-content: center;
        text-align: center;
    }

    .hero-text-personal {
        max-width: 100%;
    }

    .hero-intro-label {
        font-size: 0.7rem;
    }

    .hero-name {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-title-main {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .hero-subtitle-profession {
        font-size: 0.85rem;
    }

    .hero-personal-info {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .hero-founder-label {
        font-size: 0.65rem;
    }

    .hero-founder-name {
        font-size: 1rem;
    }

    .hero-founder-titles {
        font-size: 0.75rem;
    }

    .hero-overlay {
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.7) 100%);
    }
}