/* =========================================
   GLOBALES
========================================= */
body {
    margin: 0;
    padding: 0;
    background-color: #050810; /* Fondo casi negro profundo */
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
}

/* =========================================
   BANNER SUPERIOR
========================================= */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background: radial-gradient(circle, #101626 0%, #050810 70%);
    overflow: hidden;
    padding: 20px;
}

.banner-animado {
    max-width: 80%;
    height: auto;
    /* Bloqueos anti-descarga fácil */
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    animation: pulsoCibernetico 6s ease-in-out infinite;
}

@keyframes pulsoCibernetico {
    0% { transform: translateY(0px); filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3)); }
    50% { transform: translateY(-15px); filter: drop-shadow(0 0 35px rgba(138, 43, 226, 0.7)); }
    100% { transform: translateY(0px); filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3)); }
}

/* =========================================
   DASHBOARD DE CRISTAL
========================================= */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: -40px auto 50px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.panel-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease;
	
}

.panel-glass:hover {
    border-color: rgba(138, 43, 226, 0.6);
}

.panel-largo {
    grid-column: 1 / -1;
	    /* ESTA ES LA LÍNEA MÁGICA QUE EVITA QUE SE ESTIREN */
    align-items: start; 
}

/* Textos y LEDs */
.panel-titulo {
    font-size: 1.1em;
    color: #fff;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.led {
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}
.verde { background: #00ff00; box-shadow: 0 0 8px #00ff00; }
.azul { background: #00ffff; box-shadow: 0 0 8px #00ffff; }
.morado { background: #8a2be2; box-shadow: 0 0 8px #8a2be2; }

/* =========================================
   HABILIDADES (Barras)
========================================= */
.skill-item {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.barra-fondo {
    width: 100%;
    height: 8px;
    background: #222;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.barra-progreso {
    height: 100%;
    background: linear-gradient(90deg, #8a2be2, #00ffff);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* =========================================
   EXPERIENCIA (Logs)
========================================= */
.log-row {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.95em;
    border-left: 2px solid #8a2be2;
    padding-left: 15px;
}
.log-time {
    color: #00ffff;
    min-width: 120px;
}

/* =========================================
   TARJETAS DE GITHUB
========================================= */
.grid-proyectos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.repo-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.repo-card h3 { margin-top: 0; color: #fff; font-size: 1.1em; }
.repo-card p { font-size: 0.85em; color: #aaa; }
.repo-card a { color: #8a2be2; text-decoration: none; font-weight: bold; }
.repo-card a:hover { color: #00ffff; }

/* =========================================
   BOTONES DE CONTACTO / CV
========================================= */
.botones-contacto {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cibernetico {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    border-radius: 5px;
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.btn-cibernetico:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.btn-destacado {
    border-color: #8a2be2;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.05);
}

.btn-destacado:hover {
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    color: #fff;
}
<style>
    .wrapper-cv {
        position: relative;
        width: 100%;
        max-width: 700px; /* Un poco más estrecho para que no agobie */
        height: 500px;    /* Altura más contenida */
        margin: 0 auto;
        border: 1px solid rgba(0, 255, 255, 0.2); /* Borde estilo tech */
        border-radius: 8px;
        overflow: hidden;
        background: #000; /* Fondo negro por si tarda en cargar */
    }

    .iframe-cv {
        width: 100%;
        height: 560px; /* Un poco más que el wrapper para compensar el margin-top */
        border: none;
        margin-top: -50px; /* Esconde la barra de Drive */
    }

    .bloqueo-superior {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: rgba(15, 15, 15, 0.95); /* Color oscuro para que pegue con tu web tech */
        z-index: 10;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    }

    .bloqueo-inferior {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 35px;
        background: rgba(15, 15, 15, 0.95);
        z-index: 10;
    }
    
    /* Ajuste para móviles */
    @media (max-width: 600px) {
        .wrapper-cv {
            height: 400px;
        }
    }
</style>