/* =========================================
   HERO LUMINOSO (PERSONAL)
========================================= */
.personal-hero-light {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.9) 45%, rgba(255, 255, 255, 0) 100%),
        url("img/headpersonal1.webp") center/cover no-repeat;
    border-bottom: 1px solid #e2e8f0;
}

.hero-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-content {
    max-width: 650px;
    padding: 4rem 0;
}

.hero-eyebrow {
    color: var(--accent-premium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.personal-hero-light h1 {
    font-family: var(--font-headers);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.personal-hero-light h1 span {
    color: var(--accent-premium);
}

.personal-hero-light p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* =========================================
   GALERÍA VISUAL DE USOS
========================================= */
.usos-visuales {
    padding: 7rem 5%;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-headers);
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.usos-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta con imagen y panel offset */
.uso-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem; /* Espacio para que el panel baje */
    transition: transform 0.4s ease;
}

.uso-showcase:hover {
    transform: translateY(-8px);
}

.uso-img {
    width: 85%; /* No ocupa todo el ancho para dejar espacio al panel */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 350px;
}

.uso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.uso-showcase:hover .uso-img img {
    transform: scale(1.05);
}

.uso-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%; /* Se superpone a la imagen */
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-premium);
    z-index: 2;
}

.uso-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.uso-panel h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.uso-panel p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   BENEFICIOS LIMPIOS
========================================= */
.personal-beneficios {
    padding: 6rem 5%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.beneficio-item {
    text-align: center;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    color: var(--accent-premium);
    transition: all 0.3s ease;
}

.beneficio-item:hover .icon-wrapper {
    background: var(--accent-premium);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
}

.beneficio-item h4 {
    color: var(--text-main);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.beneficio-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   PROCESO: TIMELINE (4 PASOS)
========================================= */
.personal-proceso {
    padding: 7rem 5%;
    background: #ffffff;
}

.personal-steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Línea conectora */
.timeline-connector {
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 0 10px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 2px solid var(--accent-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-family: var(--font-headers);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-premium);
    transition: all 0.3s ease;
}

.step-card:hover .step-circle {
    background: var(--accent-premium);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}

.step-card h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   RESPONSIVIDAD
========================================= */
@media (max-width: 992px) {
    .personal-hero-light {
        background:
            linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
            url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .usos-grid-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .uso-img {
        width: 100%;
        height: 300px;
    }
    .uso-panel {
        width: 90%;
        right: 5%;
        bottom: -20px;
    }
    .personal-steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
    .timeline-connector {
        display: none; 
    }
}

@media (max-width: 768px) {
    .personal-hero-light h1 {
        font-size: 2.6rem;
    }
    .personal-steps-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}