/* --- TARJETA PRINCIPAL TIPO IPHONE --- */
.sobre-mi-card {
    background: var(--fondo-modulo); /* Fondo sutil */
    backdrop-filter: blur(20px) saturate(180%); /* Efecto Cristal iOS */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px;
    margin: 20px;
    width: 85%;
    position: relative;
    top: 6%;
    left: 5%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* --- TÍTULO PRINCIPAL (Aseguramos visibilidad) --- */
.titulo-seccion {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--blaco-gradiente);
    -webkit-background-clip: text;
    margin-bottom: 0%;
    
    text-align: left;
}

/* --- GRID SYSTEM --- */
.grid-sobre-mi {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr; /* Proporciones para pegar skills a foto */
    gap: 60px; /* Gap generoso */
    align-items: center;
}

/* --- COLUMNA TEXTO Y BOTÓN --- */
.tagline {
    font-size: 1.5rem;
    color: var(--blaco-gradiente); /* Tu color principal */
    font-weight: 600;
    margin-bottom: 20px;
}

.descripcion {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-iphone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 15px 33%;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 3%;
    min-width: 135px;
}

.btn-iphone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* --- SKILLS GRANDES (Pegadas a la imagen) --- */
.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    transition: 0.4s;
}



/* --- FOTO Y AURA --- */
.foto-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.foto-container img {
    width: 125%;
    border-radius: 30px;
    position: relative;
    background-color: var(--blaco-gradiente);
    z-index: 2;
    
}

.aura-ios {
    position: absolute;
    top: 10%; left: 10%; width: 80%; height: 80%;
    background: var(--blaco-gradiente);
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}