@font-face {
    font-family: 'Cooper Hewitt';
    src: url(../fonts/CooperHewitt-Light.woff) format("woff"), url(../fonts/CooperHewitt-Thin.woff) format("woff")
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

p {
    font-size: 1.6rem;
    line-height: 1.5;
}

h1, h2 {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
}

:root {
    --white: #f8fafc;
    --text-body: #e2e8f0;
    --light-grey: #cbd5e1;
    --beaver: #06b6d4;
    --accent-cyan: #22d3ee;
    --accent-secondary: #0891b2;
    --accent-success: #059669;
    --black: #0b1220;
    --eerie-black: #111827;
    --jet: #0f172a;
    --card-bg: #1e293b;
    --border-subtle: rgba(148, 163, 184, 0.18);
    --section-max: 1100px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

z html {
    font-size: 62.5%;
    scrollbar-width: thin;
    scrollbar-color: var(--beaver) var(--eerie-black);
    scroll-behavior: smooth
}

html::-webkit-scrollbar {
    width: 8px
}

html::-webkit-scrollbar-track {
    background-color: var(--eerie-black)
}

html::-webkit-scrollbar-thumb {
    background-color: var(--beaver)
}

::selection {
    background-color: #3e473e
}

.header {
    background-color: var(--jet);
    padding: .8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transition: .5s
}

.header.abajo {
    backdrop-filter: blur(15px);
    background: #2929294d
}

.header .logo__header {
    width: 4.5rem
}

nav.nav_menu.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 6.3rem;
    width: 100%;
    height: auto;
    background-color: var(--eerie-black);
    box-shadow: 0 10px 16px -6px #050505ff 0 25px 10px -24px #0505051a;
    animation: ease .4s left forwards
}

@keyframes left {
    0% {
        left: 100%
    }

    100% {
        left: 0
    }
}

nav.nav_menu.active a {
    padding: 2rem;
    font-family: 'Cooper Hewitt';
    letter-spacing: .1rem;
    text-decoration: none;
    color: var(--white);
    font-size: 2rem;
    width: 100%;
    text-align: center
}

nav.nav_menu.active a:hover {
    color: var(--beaver);
    background-color: var(--black);
    transition: all .4s
}

nav.nav_menu.not-active a {
    display: none
}

nav.nav_menu.active .flags {
    width: 12rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0
}

nav.nav_menu.active .flags__item {
    margin: 0 .3rem;
    filter: contrast(65%);
    cursor: pointer
}

nav.nav_menu.not-active .flags {
    display: none
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-left: .5rem;
    padding: .25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle)
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--light-grey);
    font-family: 'Cooper Hewitt', sans-serif;
    font-size: 1.25rem;
    letter-spacing: .08rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease
}

.lang-btn:hover {
    color: var(--white)
}

.lang-btn.active {
    background: var(--beaver);
    color: #fff
}

.skills-empty,
.experience-empty {
    text-align: center;
    color: var(--light-grey);
    padding: 2rem
}

.btn {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(-50%, -50%);
    width: 3rem;
    cursor: pointer
}

#button span {
    display: block;
    width: 100%;
    box-shadow: 0 2px 10px 0 #0000004d;
    border-radius: 3px;
    height: .3rem;
    background: var(--beaver);
    transition: all .3s;
    position: relative
}

span+span {
    margin-top: .6rem
}

.active span:nth-child(1) {
    animation: ease .7s top forwards
}

.not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards
}

.active span:nth-child(2) {
    animation: ease .7s scaled forwards
}

.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards
}

.active span:nth-child(3) {
    animation: ease .7s bottom forwards
}

.not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0)
    }

    50% {
        top: 1rem;
        transform: rotate(0)
    }

    100% {
        top: 1rem;
        transform: rotate(45deg)
    }
}

@keyframes top-2 {
    0% {
        top: .8rem;
        transform: rotate(45deg)
    }

    50% {
        top: .8rem;
        transform: rotate(0deg)
    }

    100% {
        top: 0;
        transform: rotate(0deg)
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0)
    }

    50% {
        bottom: .8rem;
        transform: rotate(0)
    }

    100% {
        bottom: .8rem;
        transform: rotate(135deg)
    }
}

@keyframes bottom-2 {
    0% {
        bottom: .8rem;
        transform: rotate(135deg)
    }

    50% {
        bottom: .8rem;
        transform: rotate(0)
    }

    100% {
        bottom: 0;
        transform: rotate(0)
    }
}

@keyframes scaled {
    50% {
        transform: scale(0)
    }

    100% {
        transform: scale(0)
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

.site-main {
    width: 100%
}

.section-inner {
    width: min(100%, var(--section-max));
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem
}

.home-inner {
    width: min(100%, var(--section-max));
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 8rem 2.5rem 4rem
}

.profile-showcase {
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 0 0
}

.profile-frame {
    width: min(100%, 320px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-subtle)
}

.profile-card {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    padding: 0 0 2rem;
    text-align: center
}

.profile-card__bar {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .75rem 1rem;
    background: #12151a;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem
}

.profile-card__logo {
    display: block;
    margin: 0 auto 1.2rem;
    width: 7.5rem;
    height: 7.5rem;
    filter: drop-shadow(0 4px 12px rgba(34, 211, 238, 0.25))
}

.profile-card__name {
    color: var(--white);
    font-family: 'Cooper Hewitt', system-ui, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: .04rem;
    margin-bottom: .35rem
}

.profile-card__role {
    color: var(--accent-cyan);
    font-family: 'PT Sans', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .5rem;
    padding: 0 1rem
}

.profile-card__tag {
    color: var(--light-grey);
    font-family: monospace;
    font-size: 1.05rem;
    letter-spacing: .03rem
}

.profile-photo,
.profile-brand {
    display: block;
    width: 100%;
    height: auto
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none
}

.image_home {
    max-width: 65%;
    transition: .4s;
    animation: image 2s
}

.home_info {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 1.5rem 0 0.5rem
}

.home_text-1 {
    font-family: 'Cooper Hewitt';
    color: var(--white);
    font-size: 2rem
}

.home_text-2 {
    font-family: 'PT Sans';
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: .5rem
}

.home_text-3 {
    font-family: 'Cooper Hewitt';
    color: var(--accent-cyan);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .15rem;
    margin-bottom: 1.5rem
}

.text-type {
    position: relative
}

.text-type::after {
    content: '|';
    font-weight: 700;
    position: absolute;
    right: 0;
    color: var(--beaver);
    background-color: var(--jet);
    width: 100%;
    animation: typing 4s steps(28) alternate infinite
}

@keyframes typing {
    to {
        width: 0
    }
}

.container_parrafo-info {
    display: block;
    text-align: left;
    margin-left: 0;
    padding-left: 0
}

.cv_button {
    background-color: var(--beaver);
    border-radius: 3rem;
    padding: .6rem 2rem .5rem;
    color: #fff;
    font-family: 'Cooper Hewitt';
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin: 2rem 0;
    border: none;
    cursor: pointer
}

.cv_button:hover {
    background-color: var(--accent-secondary);
    color: #fff;
    transition: background-color .3s ease
}

.contact_button {
    display: none
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: .5rem;
    padding-bottom: 1rem;
    flex-shrink: 0
}

.links img {
    width: 2.6rem;
    margin: .5rem 0;
    transition: transform .2s ease, opacity .2s ease;
    opacity: .9
}

.links a:hover img {
    transform: scale(1.08);
    opacity: 1
}

.sobreMi {
    background-color: var(--eerie-black);
    width: 100%;
    padding: 0 0 4rem
}

.sobreMi h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    font-size: 2.4rem;
    letter-spacing: .1rem;
    padding: 6rem 0 2rem
}

.container_content-sobreMi {
    margin: 0 auto
}

.container_texto-sobreMi {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--beaver);
    border-radius: 12px;
    padding: 2.4rem 2.6rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25)
}

.about-content,
.about-content p,
.about-content li,
.about-content span,
.sobreMi .container_texto-sobreMi,
.sobreMi .container_texto-sobreMi .about-content,
.sobreMi .container_texto-sobreMi p,
.sobreMi .container_texto-sobreMi li {
    color: #f8fafc !important;
    font-family: 'PT Sans', system-ui, sans-serif;
    font-size: 1.65rem;
    letter-spacing: .02rem;
    line-height: 1.8;
    text-align: left
}

.about-content strong,
.sobreMi .container_texto-sobreMi strong {
    color: var(--accent-cyan) !important;
    font-weight: 700
}

.texto_sobreMi {
    color: #f8fafc !important;
    font-family: 'Cooper Hewitt';
    font-size: 1.5rem;
    letter-spacing: .1rem;
    white-space: pre-line;
    text-align: justify;
    line-height: 2.2rem
}

.container_image-sobreMi {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 1rem 0
}

.image_sobreMi {
    width: 65%;
    margin-bottom: 5rem;
    border-bottom: 2px solid var(--jet)
}

.habilidades {
    background-color: var(--jet);
    width: 100%;
    height: auto;
    padding: 0 1rem 1rem
}

.habilidades h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    font-size: 2.4rem;
    letter-spacing: .1rem;
    padding: 6rem 0 5rem
}

.cards_container--habilidades {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto 2.5rem;
    padding-bottom: 1rem
}

.cards--habilidades {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 12rem;
    padding: 1rem .5rem;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease
}

.cards--habilidades:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.1)
}

.skill-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
    width: 100%
}

.cards--habilidades img {
    width: 4.8rem;
    height: 4.8rem;
    object-fit: contain
}

.skill-fa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 12px;
    background: rgba(66, 133, 244, 0.12);
    color: var(--accent-cyan);
    font-size: 2.2rem
}

.cards--habilidades p {
    color: var(--white);
    font-family: 'Cooper Hewitt';
    letter-spacing: .1rem;
    font-size: 1.4rem;
    margin-bottom: .7rem
}

.skills-group-title {
    width: 100%;
    text-align: left;
    color: var(--accent-cyan);
    font-family: 'Cooper Hewitt', sans-serif;
    letter-spacing: .12rem;
    margin: 2.5rem 0 1.2rem;
    font-size: 1.15rem;
    text-transform: uppercase;
    border-left: 3px solid var(--beaver);
    padding-left: .85rem
}

.experiencia {
    background-color: var(--eerie-black);
    width: 100%;
    padding-bottom: 4rem
}

.experiencia h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    font-size: 2.4rem;
    letter-spacing: .1rem;
    padding: 6rem 0 3rem
}

.experience-timeline {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.experience-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.6rem 1.8rem;
    border-left: 3px solid var(--beaver);
    transition: box-shadow .15s ease, border-color .15s ease
}

.experience-card:hover {
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.12);
    border-color: rgba(66, 133, 244, 0.35)
}

.experience-role {
    color: var(--white);
    font-family: 'Cooper Hewitt', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .05rem;
    margin-bottom: .4rem
}

.experience-meta {
    color: var(--light-grey);
    font-size: 1.35rem;
    margin-bottom: 1rem
}

.experience-meta a {
    color: var(--beaver);
    text-decoration: none
}

.experience-meta a:hover {
    color: var(--accent-cyan)
}

.experience-period {
    color: var(--accent-cyan)
}

.experience-summary {
    color: var(--light-grey);
    font-size: 1.45rem;
    line-height: 1.65;
    margin-bottom: 1rem
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.experience-tag {
    background: rgba(66, 133, 244, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 999px;
    padding: .25rem .75rem;
    font-size: 1.15rem;
    letter-spacing: .03rem
}

.formacion {
    background-color: var(--jet);
    width: 100%;
    padding-bottom: 4rem
}

.formacion h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    font-size: 2.4rem;
    letter-spacing: .1rem;
    padding: 6rem 0 3rem
}

.formation-timeline {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.formation-block {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.6rem 1.8rem;
    border-left: 3px solid var(--accent-cyan)
}

.formation-heading {
    color: var(--white);
    font-family: 'Cooper Hewitt', sans-serif;
    font-size: 1.6rem;
    letter-spacing: .05rem;
    margin-bottom: 1rem
}

.formation-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.formation-item {
    color: var(--light-grey);
    font-size: 1.4rem;
    line-height: 1.55;
    padding-left: 1rem;
    border-left: 2px solid rgba(34, 211, 238, 0.2)
}

.formation-item strong {
    color: var(--white)
}

.formation-period {
    color: var(--accent-cyan)
}

.container_text--contacto p {
    line-height: 1.65
}

.sobreMi .container_texto-sobreMi ol {
    text-align: left;
    margin: 1rem 0 1rem 1.4rem;
    line-height: 1.65;
    padding-left: 0
}

.sobreMi .container_texto-sobreMi ol li {
    margin-bottom: .45rem
}

.sobreMi .container_texto-sobreMi ul {
    text-align: left;
    margin: 1rem 0 1rem 1.2rem;
    line-height: 1.6
}

.sobreMi .container_texto-sobreMi li {
    margin-bottom: .6rem
}

.sobreMi .container_texto-sobreMi p {
    line-height: 1.65;
    margin-bottom: .8rem
}

img.logo-unal {
    width: 24rem
}

img.logo-one {
    width: 21rem;
    margin: 7rem 0 6rem
}

img.logo-sena {
    width: 18rem;
    margin: 2.4rem 0
}

.proyectos {
    background-color: var(--jet);
    width: 100%;
    height: auto;
    padding: 0 1rem 1rem
}

.proyectos h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    font-size: 2.4rem;
    letter-spacing: .1rem;
    padding: 6rem 0 5rem
}

.cards_container--proyectos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    padding-bottom: 4rem
}

.cards--proyectos {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0 0 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, border-color .15s ease
}

.cards--proyectos:hover {
    transform: translateY(-2px);
    border-color: rgba(66, 133, 244, 0.35)
}

.card_JuegoAhorcado {
    margin-bottom: 4rem
}

.card_portafolio {
    margin-bottom: 4rem;
    border: 1px solid var(--eerie-black)
}

.container_imgCard--proyectos {
    margin-bottom: 1rem;
    border-radius: 20px 20px 0 0
}

.container_imgCard--proyectos img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    display: block
}

.project-thumb--placeholder {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px 12px 0 0;
    color: var(--accent-cyan);
    font-family: 'Cooper Hewitt', sans-serif;
    font-size: 1.6rem;
    letter-spacing: .08rem
}

.project-thumb--placeholder i {
    font-size: 2.4rem;
    opacity: .85
}

.container_textCard--proyectos {
    padding: 0 2rem;
    margin-bottom: 2rem
}

.container_textCard--proyectos h2 {
    font-family: 'Cooper Hewitt';
    letter-spacing: .1rem;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    display: inline
}

.container_textCard--proyectos p {
    color: var(--light-grey);
    font-family: 'Cooper Hewitt';
    letter-spacing: .1rem;
    font-size: 1.4rem;
    margin-top: 1rem
}

.container_btn--proyectos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    padding: 0 1rem
}

.container_btn--proyectos a {
    text-decoration: none;
    display: inline-block;
    margin: 0 1.5rem
}

.container_btn--proyectos button {
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 13rem;
    padding: .85rem 1rem;
    letter-spacing: .08rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.25rem
}

.btn_demo {
    padding: .9rem 0;
    border: none;
    background-color: var(--beaver);
    color: var(--eerie-black)
}

.btn_demo:hover {
    background-color: gray;
    color: var(--white);
    transition: background-color .3s ease
}

.btn_repo {
    padding: .8rem 0;
    background: none;
    color: var(--beaver);
    border: 1px solid var(--beaver)
}

.btn_repo:hover {
    background-color: gray;
    color: var(--white);
    transition: background-color .3s ease
}

.btn_demo img {
    width: 2rem;
    margin-right: .8rem
}

.btn_repo img {
    width: 2rem;
    margin-right: .8rem
}

.contacto {
    background-color: var(--eerie-black);
    width: 100%;
    height: auto;
    padding: 0 2rem 5rem
}

.contacto h1 {
    display: block;
    text-align: center;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    font-size: 2.4rem;
    letter-spacing: .1rem;
    padding: 6rem 0 4rem
}

.container_img--contacto {
    display: none
}

.container--contacto {
    background-color: #000;
    border-radius: 24px;
    padding: 3rem;
    position: relative
}

.btn_form--contacto button {
    background: var(--beaver);
    border: none;
    font-family: 'Cooper Hewitt';
    width: 20rem;
    padding: .8rem 1rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease, box-shadow .2s ease
}

.btn_form--contacto button:hover,
.btn_form--contacto button:focus-visible {
    background: var(--accent-secondary);
    color: #fff;
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35)
}

.btn_form--contacto button:active {
    background: var(--accent-secondary);
    transform: translateY(0)
}

.container_text--contacto {
    width: 100%
}

.container_text--contacto p {
    font-size: 1.6rem;
    font-family: 'Cooper Hewitt';
    color: var(--white);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    line-height: 2.3rem
}

.form-contact input {
    font-family: 'Cooper Hewitt';
    background: transparent;
    border: 1px solid var(--light-grey);
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--white);
    font-size: 1.6rem;
    outline: none;
    margin-bottom: 2rem;
    letter-spacing: 1px
}

.form-contact input::placeholder {
    color: var(--light-grey)
}

.form-contact .input-invalid {
    border: 1px solid #4285f4;
    color: #4285f4
}

.form-contact textarea {
    background: transparent;
    border: 1px solid var(--light-grey);
    font-family: 'Cooper Hewitt';
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--white);
    font-size: 1.6rem;
    outline: none;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    resize: none
}

.form-contact textarea::placeholder {
    color: var(--light-grey)
}

.form-contact textarea::-webkit-scrollbar {
    width: 8px
}

.form-contact textarea::-webkit-scrollbar-track {
    background-color: #3e473e
}

.form-contact textarea::-webkit-scrollbar-thumb {
    background-color: #4285f4
}

.form-contact input,
.form-contact textarea {
    border: 1px solid #4285f4;
    background-color: transparent;
    color: #4285f4;
    font-family: 'Cooper Hewitt'
}

.form-contact input::placeholder,
.form-contact textarea::placeholder {
    color: #4285f4
}

.btn_form--contacto {
    display: flex;
    justify-content: center
}

/* reglas duplicadas de hover eliminadas — ver bloque .btn_form--contacto button arriba */

footer {
    background-color: var(--eerie-black)
}

.contianer--footer {
    border-top: 1px solid var(--border-subtle);
    width: 100%;
    margin: 0 auto;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center
}

.container_redes-footer {
    display: flex;
    justify-content: center;
    gap: .5rem
}

.container_redes-footer a {
    text-decoration: none
}

.container_redes-footer img {
    width: 3.5rem;
    margin: 0 .5rem 1.5rem;
    transition: transform .2s ease
}

.container_redes-footer a:hover img {
    transform: scale(1.08)
}

.container_text--footer {
    padding-bottom: 1rem
}

.container_text--footer span {
    font-family: 'Cooper Hewitt';
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #4285f4
}

.footer-updated,
.site-meta-updated {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.15rem;
    color: var(--light-grey);
    letter-spacing: .03rem;
    margin-top: .6rem
}

.footer-updated time,
.site-meta-updated {
    color: var(--accent-cyan)
}

.site-meta-updated {
    margin-top: 1.4rem;
    text-align: center;
    font-style: italic
}

.container_text--footer img {
    width: 1.2rem;
    margin: 0 .2rem
}

.go-top-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 6rem;
    height: 6rem;
    z-index: -1
}

.go-top-button {
    width: 0;
    height: 0;
    background: #3e473e;
    box-shadow: 0 6px 22px -6px #000000bf;
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: .2s
}

.go-top-button i {
    position: absolute;
    font-size: 1.7rem;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    transition: .2s
}

.show {
    z-index: 10
}

.show .go-top-button {
    animation: popup .3s ease-in-out;
    width: 6rem;
    height: 6rem;
    z-index: 11
}

.show i {
    transform: translate(-50%, -50%) scale(1)
}

.texto_bash {
    background-color: #1a1d24;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--light-grey);
    font-family: 'Courier New', Courier, monospace;
    max-width: 600px;
    width: 85%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 1rem;
    min-height: 200px;
    height: auto;
    overflow: hidden
}

.terminal-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    background: #12151a;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: .8rem
}

.terminal-dot {
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    display: inline-block
}

.terminal-dot--red { background: #ff5f57 }
.terminal-dot--yellow { background: #febc2e }
.terminal-dot--green { background: #28c840 }

.terminal-title {
    margin-left: .5rem;
    color: #8b949e;
    font-size: 1.1rem
}

.direccion_bash,
.terminal-body {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box
}

.direccion_bash {
    color: #4fa8fd;
    font-size: 1.15rem;
    margin-bottom: .6rem;
    font-weight: 700
}

.terminal-body {
    min-height: 9rem;
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.terminal-output {
    width: 100%;
    max-height: 11rem;
    overflow-y: auto;
    scrollbar-width: thin
}

.terminal-line {
    font-size: 1.25rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word
}

.terminal-line--cmd {
    color: #e6edf3
}

.terminal-line--out {
    color: var(--accent-cyan);
    padding-left: .2rem
}

.terminal-line--dim {
    color: #8b949e
}

.terminal-active-line {
    display: flex;
    align-items: center;
    min-height: 1.6rem
}

.terminal-prompt {
    color: #3fb950;
    flex-shrink: 0
}

.terminal-cursor {
    color: var(--accent-cyan);
    animation: terminal-blink 1s step-end infinite
}

@keyframes terminal-blink {
    50% { opacity: 0 }
}

.t-caret_bash {
    font-size: 1.2rem;
    color: #ff69b4;
    animation: blink 1s step-start infinite
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

.git-status {
    color: #ff0;
    font-weight: 700;
    margin-left: 10px
}

.user-info {
    color: #4fa8fd
}

.dir-info {
    color: #b58900
}

@keyframes popup {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 7rem;
        height: 7rem
    }

    100% {
        width: 6rem;
        height: 6rem
    }
}

.header {
    justify-content: space-between;
    padding: .8rem 3rem;
    z-index: 2
}

@media (min-width: 769px) {

    /* Mantener el menú de navegación normal visible en pantallas grandes */
    .nav_menu {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-end
    }

    /* Ocultar el botón de hamburguesa en pantallas grandes */
    .hamburger-btn {
        display: none;
    }
}

nav.nav_menu a {
    font-size: 1.35rem;
    padding: .5rem;
    color: var(--white);
    font-family: 'Cooper Hewitt';
    text-decoration: none;
    letter-spacing: .12rem;
    right: 0;
    margin-right: 1.2rem
}

nav.nav_menu a:hover,
nav.nav_menu a.active {
    color: var(--accent-cyan);
    padding: .5rem;
    border-bottom: 1px solid var(--beaver);
    transition: all .5s
}

nav.nav_menu.not-active a {
    display: flex
}

nav.nav_menu.active .lang-switcher {
    margin: 1.5rem 0 .5rem
}

nav.nav_menu.not-active .lang-switcher {
    display: flex
}

div.btn {
    display: none
}

.home {
    background-color: var(--jet);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: flex-start
}

.profile-showcase {
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2rem
}

.profile-frame {
    width: min(100%, 340px)
}

.home_info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 1rem 0 0.5rem
}

.container_text-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: .2rem;
    text-align: start;
    margin-top: 0
}

.home_text-1 {
    font-size: 3.5rem;
    margin-left: .4rem;
    font-weight: 700
}

.home_text-2 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--white)
}

.home_text-3 {
    margin: 0 0 2rem;
    font-size: 1.8rem;
    width: 35rem;
    letter-spacing: .2rem
}

.container_parrafo-info {
    display: block;
    text-align: left;
    margin-left: 0;
    padding-left: 0
}

.container_parrafo-info p {
    font-family: 'Cooper Hewitt';
    color: var(--light-grey);
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 2rem
}

.container_button {
    display: flex
}

.contact_button {
    display: inline-block;
    background-color: #4285f4;
    border-radius: 3rem;
    padding: .7rem 4rem .6rem;
    color: var(--jet);
    font-family: 'Cooper Hewitt';
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin: 2rem 0 2rem 1rem;
    border: none;
    cursor: pointer;
    transition: .4s
}

.contact_button:hover {
    background-color: #3e473e;
    box-shadow: 0 2px 10px #141414;
    transition: 1s transform
}

.links {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 1rem
}

.links img {
    margin: .7rem 0
}

.links .icon-CodePen {
    margin: .7rem 0 .7rem .2rem
}

.sobreMi {
    display: block;
    text-align: center;
    padding: 0 0 4rem;
    margin: 0 auto;
    width: 100%
}

.sobreMi h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    padding-top: 6rem
}

.sobreMi p,
.sobreMi .about-content,
.sobreMi .about-content p,
.sobreMi .about-content li {
    color: #f8fafc !important
}

.habilidades {
    padding-bottom: 8rem;
    position: relative
}

.cards_container--habilidades {
    grid-template-columns: 13rem 13rem 13rem 13rem;
    grid-template-rows: 14rem 14rem;
    padding: 0;
    margin-top: 2rem
}

.cards--habilidades:hover {
    filter: saturate(100%);
    border: 1px solid var(--beaver);
    transition: all 1s
}

.cards--habilidades p {
    font-size: 1.6rem;
    margin-top: .8rem
}

.proyectos h1 {
    padding-top: 8rem;
    font-size: 3rem
}

.cards_container--proyectos {
    flex-direction: row;
    justify-content: center
}

.cards--proyectos {
    width: 40rem;
    height: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 1.5rem;
    z-index: 1
}

.text-portafolio {
    margin-top: -3rem
}

.container_btn--proyectos button {
    width: auto;
    padding-left: 3.5rem;
    padding-right: 3.5rem
}

.contacto h1 {
    padding: 8rem 0 2.5rem;
    font-size: 3rem
}

.container_box--contacto {
    margin-top: 2rem;
    display: flex;
    justify-content: space-evenly
}

.container_img--contacto {
    display: inline-block;
    width: 60rem;
    display: flex;
    justify-content: center
}

.container_img--contacto img {
    width: 50rem;
    object-fit: contain
}

.container--contacto {
    background-color: #000;
    border-radius: 24px;
    padding: 3rem;
    position: relative
}

.btn_form--contacto button {
    background: var(--beaver);
    border: none;
    font-family: 'Cooper Hewitt';
    width: 20rem;
    padding: .8rem 1rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease, box-shadow .2s ease
}

.btn_form--contacto button:hover,
.btn_form--contacto button:focus-visible {
    background: var(--accent-secondary);
    color: #fff;
    font-weight: 700;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35)
}

.btn_form--contacto button:active {
    background: var(--accent-secondary);
    transform: translateY(0)
}