/* === Variables base === */
:root {
    --bg-dark: #1a132f;
    --purple: #9b78ff;
    --yellow: #ffcc01;
    --text-light: #f4f4f4;
}

/* === Reset general === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}






.header-title {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 1.2s ease-out forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Fondo animado pulsante === */
/* === Fondo animado pulsante === */
.background-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 204, 1, 0.24) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.background-circles {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}


.background-circles::before {
    content: "";
    position: absolute;
    width: 120vmax;
    height: 120vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(120, 75, 180, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-rings 5s ease-in-out infinite alternate;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.7;
}

@keyframes pulse-rings {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

/* === Animaciones fade up === */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.fade-delay-1 {
    animation-delay: 0.1s;
}

.fade-delay-2 {
    animation-delay: 0.2s;
}

.fade-delay-3 {
    animation-delay: 0.3s;
}

.fade-delay-4 {
    animation-delay: 0.4s;
}

/* === Encabezado principal === */
.main-header {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 96px 20px 24px;
    max-width: 1400px;
    margin: auto;
    display:flex;
    flex-direction: column;
            align-items: flex-start;
}

.avatar-container {
    position: relative;
    display: inline-block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}
.avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(255, 204, 1, 0.4);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 10%, transparent 70%);
    animation: shine 3s infinite linear;
    pointer-events: none;
    z-index: 1;
}
.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    background-color: var(--bg-dark);
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 204, 1, 0.4), 0 0 40px rgba(255, 204, 1, 0.15);
}
.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 204, 1, 0.6), 0 0 80px rgba(255, 204, 1, 0.25);
}

.avatar::after {
    content: '\1F60E';
    /* 😎 */
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--yellow);
    opacity: 0;
    transition: opacity 0.3s;
}

.avatar:hover::after {
    opacity: 1;
}

.avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 70%);
    animation: shine 3s infinite linear;
    pointer-events: none;
}
/* Gafas ocultas por defecto */



.sunglasses {
    position: absolute;
top: 20%;
    left: 52%;
    transform: translateX(-50%);
    width: 53%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-radius: 50%;
}

/* Mostrar gafas al hacer hover sobre el contenedor */
.avatar-container:hover .sunglasses {
    opacity: 1;
    z-index:3;
}


@media (max-width: 769px) {

.sunglasses {
            top: 15%;
                left: 39%;
                width: 39%;
    }

}


@keyframes shine {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.greeting {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: waveMove 1.2s infinite ease-in-out;
    font-size: 1em;
}

/* Animación más fluida de saludo */
@keyframes waveMove {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    60% {
        transform: rotate(8deg);
    }

    80% {
        transform: rotate(-4deg);
    }
}

@keyframes fist-bump {
    0% {
        transform: scale(1) rotate(0deg);
    }

    30% {
        transform: scale(1.15) rotate(-10deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    70% {
        transform: scale(1.15) rotate(-8deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.badge:hover .fa-hand-fist {
    animation: fist-bump 0.6s ease-in-out;
    transform-origin: center center;
}
/* Al hacer hover, cambia por un puño 👊 más grande */
.wave:hover {
    content: '👊';
    /* Esto no funcionará con solo CSS — ver nota abajo */
    transform: scale(1.1);
}
.subtitle {
    font-size: 2.24rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 1400px;
        text-align: left;
   
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--yellow);
}

/* === Responsividad === */
@media (max-width: 768px) {
    .greeting {
        font-size: 2.2rem;
       
        gap: 0.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 0.95rem;
    
    }

    .avatar {
        width: 120px;
        height: 120px;
    }
}

.icon-link {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.15);
    color: #ffcc00;
    animation: grow-shake 0.4s ease;
  
}
@keyframes grow-shake {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: scale(1.04) translate(-1px, 0.5px);
    }

    50% {
        transform: scale(1.08) translate(1px, -0.5px);
    }

    75% {
        transform: scale(1.12) translate(-0.5px, 1px);
    }

    100% {
        transform: scale(1.14) translate(0, 0);
    }
}


/* EXPERIENCE AND EDUCATION CSS */
#experience-education {
    padding: 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0.24rem;
    background-color: #2d204a;
    border-radius: 12px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #c9b8f2;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width:50%;
}
.tab-btn {
    --background-color-hover: #3a2f4e !important;
    --text-color-hover: #fff !important;
    --border-color-hover: #bfa2ff !important;
    
}
.tab-btn:hover{
    opacity: 0.7;
}


.tab-btn.active {
    background-color: #3a2b5f;
        color: #ffcc01;
}



.timeline-entry:last-child {
   margin-bottom: 0px;
}

.tab-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 0px;
    padding-left: 42px;
   border: 1px solid #403656;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.timeline {
    position: relative;
    padding: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-entry {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-left: 30px;
    margin-left: -30px;
}

.timeline-icon {
    position: absolute;
        left: -20px;
            top: 25%;
    width: 50px;
    height: 50px;
    background-color: #1e1e2f;
    border: 2px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    margin-left: -16px;
}

.timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
}

.timeline-content .date {
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
}

.timeline-content .entry-title {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px 0;
}

.timeline-content p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #cbd5e0;
    margin: 0;
}


/* Responsive */
@media (max-width: 600px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-entry {
        flex-direction: column;
        padding-left: 12px;
        margin-left: 0px;
    }

    .timeline-icon {
        left: -30px;
      
    }

    .timeline-content {
        padding: 10px 12px;
    }
}

.entry-role {
    color: #aaa !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
}

.timeline-icon a {
    display: inline-block;
    width: 100%;
    height: 100%;
    width: 50px;
        height: 50px;
}

.timeline-icon img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.timeline-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    border: 2px solid #444;
    background-color: #1e1e2f;
    border-radius: 50%;
}

.timeline-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px var(--purple), 0 6px 20px rgba(155, 120, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.04);
}
.timeline-entry:hover .timeline-content {
    background-color: rgba(155, 120, 255, 0.05);
    /* un ligero tono púrpura */
    border: 1px solid var(--purple);

    box-shadow: 0 0 10px rgba(155, 120, 255, 0.2);
    transition: all 0.5s ease;
}
.timeline-entry:hover .timeline-icon {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px var(--purple), 0 6px 20px rgba(155, 120, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.timeline-entry:has(.timeline-icon:hover) .timeline-content {
    background-color: rgba(155, 120, 255, 0.05);
    /* un ligero tono púrpura */
    border: 1px solid var(--purple);

    box-shadow: 0 0 10px rgba(155, 120, 255, 0.2);
    transition: all 0.5s ease;
}

.highlighted-entry {
    background-color: rgba(155, 120, 255, 0.05);
    border: 1px solid var(--purple);
    box-shadow: 0 0 10px rgba(155, 120, 255, 0.2);
    transition: all 0.5s ease;
}



/* TECH STACK */ 
/* === Sección Tech Stack === */



.yellow-custom-svg{
    height:16px; 
    width: 16px; 
    filter: brightness(0) invert(73%) sepia(65%) saturate(647%) hue-rotate(358deg) brightness(101%) contrast(100%);
        
}
#tech-stack {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

#tech-stack .section-title, #certifications .section-title {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--yellow);
    /* Usa el amarillo temático */
    text-shadow: 0 0 4px rgba(255, 204, 1, 0.2);
}

/* Contenedor de badges */
.custom-tech-badges {
    display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
        margin-top: 20px;
        flex-direction: row;
}

/* Estilo individual de badge */
.custom-tech-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Icono dentro de la badge */
.custom-tech-badges .badge i {
    font-size: 1rem;
    color: var(--yellow);
    transition: transform 0.3s;
}

/* Hover animado con vibración y brillo */
.custom-tech-badges .badge:hover {
    background-color: rgba(255, 204, 1, 0.08);
    transform: scale(1.06);
    box-shadow: 0 0 10px rgba(255, 204, 1, 0.3);
    animation: subtle-grow-shake 0.6s ease forwards;
}

@keyframes subtle-grow-shake {
    0% {
        transform: scale(1) translate(0, 0);
    }

    20% {
        transform: scale(1.02) translate(-1px, 0.5px);
    }

    40% {
        transform: scale(1.04) translate(1px, -0.5px);
    }

    60% {
        transform: scale(1.05) translate(-0.5px, 1px);
    }

    80% {
        transform: scale(1.06) translate(0.5px, -1px);
    }

    100% {
        transform: scale(1.06) translate(0, 0);
    }
}

/* Responsivo */
@media (max-width: 600px) {
    #tech-stack .section-title {
        font-size: 1.8rem;
    }

    .custom-tech-badges .badge {
        font-size: 13px;
        padding: 5px 12px;
    }
}

.custom-tech-badges .badge.highlight-badge {
    background-color: #ffd7001f;
    /* sutil dorado translúcido */
    border: 1px solid #ffc107;
    /* dorado */
    font-weight: 600;
    color: #212121;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.2);
}

.highlight-badge {
    background: linear-gradient(135deg, var(--yellow), #ffd633);
    color: #1a132f;
    /* Contraste alto */
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 204, 1, 0.3);
    transform: none;
    transition: transform 0.3s ease;
}

.highlight-badge i {
    color: #1a132f !important;
}

.highlight-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 204, 1, 0.45);
}

.highlight-badge {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Fondo: barra ancha y suave */
.highlight-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: golden-shine 1.6942s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Frente: línea delgada y más brillante */


/* Contenido encima de los brillos */
.highlight-badge>* {
    position: relative;
    z-index: 3;
}

@keyframes golden-shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes sparkle-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 130%;
    }
}

@keyframes golden-shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* PROJECT STUFF*/

/* === Sección Proyectos === */
#projects {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

#projects .section-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--yellow);
    text-shadow: 0 0 4px rgba(255, 204, 1, 0.2);
}

/* Contenedor de tarjetas */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

/* Estilo tarjeta */
.project-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 24px);justify-items: stretch;
        justify-content: start;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(255, 204, 1, 0.2);
    background-color: rgba(255, 204, 1, 0.08);
        
}

/* Imagen del proyecto */
.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contenido del proyecto */
.project-content {
    padding: 16px 20px;
    flex: 1;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.project-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 12px;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-light);
}


/* Image overlay */

/* Fondo oscuro que cubre toda la pantalla */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 204, 1, 0.3);
    transition: transform 0.3s ease;
}

.lightbox-overlay img:hover {
    transform: scale(1.02);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/* Imagen dentro de la tarjeta: aplica efecto hover solo si NO está dentro del overlay */
.project-card:hover img:not(.lightbox-overlay img) {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Alternativamente, evita que se aplique cualquier efecto dentro del overlay */
.lightbox-overlay img {
    transform: none !important;
    transition: none !important;
    pointer-events: none;
}

/* footer*/

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    margin-top: 60px;
    background-color: transparent;
}


.footer-note{
    color: #999;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    gap:20px;
}

.footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.footer-social a {
    color: var(--text-light);
    font-size: 20px;
    margin-left: 16px;
    transition: color 0.3s, transform 0.3s;
}
.footer-social a:first-child {
    margin-left: 0;
}
.footer-social a:hover {
    color: var(--yellow);
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }
}

/* CERTIFICATION */

#certifications {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 16px;
    margin-top: 24px;
    justify-items: center;
    justify-items: stretch;
        justify-content: start;
}

.cert-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 10px;
    text-align: left;
    width: 100%;
    color: var(--text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
    max-width: calc(100% - 24px);
}

.cert-item h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--text-light);
}

.cert-item p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.cert-item.highlight {
    border: 1px solid var(--yellow);
    box-shadow: 0 0 8px rgba(255, 204, 1, 0.1);
}

.cert-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 204, 1, 0.15);
}

/* Enlaces como tarjetas */
.cert-item.highlight:hover {
    cursor: pointer;
    text-decoration: none;
        background-color: rgba(255, 204, 1, 0.08);
         
            box-shadow: 0 0 10px rgba(255, 204, 1, 0.3);
}

/* Estilo enlaces */
.cert-item.highlight {
    text-decoration: none;
}

@keyframes purplePulse {
    0% {
        text-shadow: 0 0 0 rgba(155, 120, 255, 0);
    }

    50% {
        text-shadow: 0 0 12px rgba(155, 120, 255, 0.7);
    }

    100% {
        text-shadow: 0 0 0 rgba(155, 120, 255, 0);
    }
}

@keyframes fadeUpSubtitleGlow {
    0% {
        opacity: 0;
        transform: translateY(15px);
        text-shadow: none;
    }

    70% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: none;
    }
}


.subtitle {
    animation: fadeUpSubtitleGlow 1s ease-out forwards,  purplePulse 5s ease-in-out infinite;
}

/* Animación sutil para el título */
.colombia-gradient {
    background: linear-gradient(to right,
            #fcd116 0%,
            /* Amarillo */
            #fcd116 33.3%,
            #003893 33.3%,
            /* Azul */
            #003893 66.6%,
            #ce1126 66.6%,
            /* Rojo */
            #ce1126 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
  .hidden-experience {
      display: none;
  }
.show-more-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #c9b8f2;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: 20px;
    background-color: #3a2b5f;
    color: var(--yellow);
    border: 1px solid #bfa2ff;
    animation: none;
}

.show-more-btn:hover {
    animation: subtle-shake-scale 0.6s ease forwards;
    border: 1px solid #9b78ff !important;
    background-color: #362b4d !important;
    box-shadow: 0 0 12px rgba(155, 120, 255, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@keyframes subtle-shake-scale {
    0% {
        transform: scale(1) translateX(0);
    }

    20% {
        transform: scale(1.03) translateX(-2px);
    }

    40% {
        transform: scale(1.04) translateX(2px);
    }

    60% {
        transform: scale(1.05) translateX(-1.5px);
    }

    80% {
        transform: scale(1.06) translateX(1.5px);
    }

    100% {
        transform: scale(1.06) translateX(0);
    }
}