/* ===== COLOR BASE ===== */
body {
    background-color: var(--color-turquesa);
    color: #fff;
}

/* ===== TEXTO FONDO ===== */
.texto-fondo-fijo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: -1;
    pointer-events: none;
    line-height: 0.8;
}

.texto-fondo-fijo span {
    font-size: 4rem;
    opacity: 0.2;
    margin-right: 55%;
}

.texto-fondo-fijo h1 {
    font-size: 18vw;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    margin: 0;
}

/* ===== WRAPPER ===== */
.contenedor-sobremi {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 60px;
    position: relative;
    z-index: 1;
}

/* ===== HERO ===== */
.hero-sobremi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.info-hero {
    flex: 1;
    opacity: 0;
    transform: translateY(25px);
    transition: all .8s ease;
}
.info-hero.visible { opacity: 1; transform: translateY(0); }

.saludo {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
}

.nombre-principal {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 5px 0;
}

.etiqueta-profesion {
    color: var(--color-amarillo);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 25px;
}

.descripcion-intro {
    max-width: 480px;
    line-height: 1.5;
    opacity: 0.9;
}

.resumen-perfil {
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    border-left: 4px solid var(--color-amarillo);
    padding: 18px;
    border-radius: 0 12px 12px 0;
}

/* FOTO */
.imagen-hero-contenedor {
    flex: 0 0 450px;
    opacity: 0;
    transform: scale(1.3);
    transition: all .8s ease .2s;
}
.imagen-hero-contenedor.visible { opacity:1; transform: scale(1); }

.imagen-perfil {
    width: 100%;
    border-radius: 20px;
}

/* ===== SECCIONES ===== */
.encabezado-seccion {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}
.encabezado-seccion h3 { font-size: 2rem; }
.linea { flex: 1; height: 1px; background: rgba(255,255,255,0.3); }

/* GRID EXPERIENCIA */
.grid-tarjetas {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.tarjeta-info {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: .6s ease;
}
.tarjeta-info.visible { opacity:1; transform: translateY(0); }

.cabecera-tarjeta h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.lugar {
    color: var(--color-amarillo);
    font-size: 0.9rem;
    font-weight: 600;
}

/* EDUCACIÓN + SKILLS */
.seccion-doble {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.tarjeta-simple {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.lista-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.skill {
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.skill:hover {
    background: var(--color-amarillo);
    border-color: var(--color-amarillo);
    color: #fff;
    transform: scale(1.05);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .hero-sobremi {
        flex-direction: column-reverse;
        text-align: center;
    }

    .imagen-hero-contenedor {
        width: 100%;
        max-width: 400px;
        overflow: visible;
    }

    .nombre-principal {
        font-size: 3.2rem;
    }

    .seccion-doble {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .texto-fondo-fijo h1 {
        font-size: 15vw;
    }
}
