*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--text-color);
}

body{
    font-family: 'Poppins';
    background: var(--background);
    height: 100vh;
    color: var(--text-color);
}

p{
    letter-spacing: 0.5px;
    font-size: 1rem;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

p{
    line-height: 1.5;
}

:root{
    /* Dark Theme */
    --background: radial-gradient(circle, rgba(22,22,94,1) 0%, rgba(8,8,42,1) 100%);
    --menu-responsive-bg-color: var(--rosure-gradient-color);
    --rosure-gradient-color: linear-gradient(135deg, rgba(255, 0, 93, 0.5), rgba(7, 4, 180, 0.2));
    --background-hover: rgba(255, 255, 255, 0.1);
    --bg-color-input-form: rgba(255, 255, 255, 0.1);
    --highlight-color-content: #ff005d; 
    --text-color: #fff;
    --border-content-color: rgba(255, 255, 255, 0.3);
    --border-content-color-alt: rgba(255, 255, 255, 0.3);
    --text-color-alt: #fff;
    --line-color: #4a4a85;
    --stroke-icon-color: #fff;
    --index-color: rgba(255, 255, 255, 0.1);
    --succesful-msg: rgb(242, 255, 0);
    --border-color-primary: 1px solid var(--text-color);

    /* Global*/
    --loader-gradient-color: linear-gradient(135deg, var(--highlight-color), rgba(7, 4, 180, 0.8));
    --highlight-color: #ff005d;
    --font-size-sm: 0.9rem;
    --box-shadow: 0 4px 10px rgba(255, 0, 179, 0.25);
    --stroke-icon-color-except: #fff;
}

/*==== Text and heading animations ====*/
.slide-up {
    animation: slide-up 1s ease forwards;
}

.slide-right {
    animation: slide-right 1s ease forwards;
}

.slide-left {
    animation: slide-left 1s ease forwards;
}

.slide-down {
    animation: slide-down 1s ease forwards;
}

.fade-in {
    animation: fade-in 1.5s ease forwards;
}

/* Keyframes */
@keyframes slide-up {
    from {
        transform: translateY(20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-right {
    from {
        transform: translateX(5%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-left {
    from {
        transform: translateX(-5%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-down {
    from {
        transform: translateY(-20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0); 
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Observer animations */
.animated-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-up.animated-up-item {
    opacity: 1;
    transform: translateY(0);
}

.animated-scale {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-scale.animated-scale-item {
    opacity: 1;
    transform: scale(1);
}

/*==== Loader ====*/
#loader-overlay{
    width: 100vw;
    height: 100vh;
    background: var(--background);
    position: fixed;
    inset: 0;
    z-index: 999;
}

#loader-overlay h1{
    letter-spacing: 2.5px;
    font-size: 1.5rem;
}

.loader {
    display: block;
    --height-of-loader: 4px;
    --loader-color: var(--loader-gradient-color);
    width: 200px;
    height: var(--height-of-loader);
    border-radius: 40px;
    background-color: rgba(0,0,0,0.2);
}

.loader::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
    ;
}

@keyframes moving {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}

/*==== Header ====*/

header{
    height: 80px;
    padding: 0 40px 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter:blur(30px);
}


.logo-content h1{
    font-weight: 900;
    color: var(--text-color);   
    font-size: 2.5rem;
}

/* Theme btn (light/dark) */
.theme-toggle { 
    --switch-bg: rgb(135, 150, 165);
    --switch-width: 48px;
    --switch-height: 20px;
    /* circle */
    --circle-diameter: 32px;
    --circle-bg: var(--highlight-color);
    --circle-inset: calc((var(--circle-diameter) - var(--switch-height)) / 2);
}

.theme-toggle input {
    display: none;
}

.slider-btn-theme {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--switch-width);
    height: var(--switch-height);
    background: var(--switch-bg);
    border-radius: 999px;
}

.slider-btn-theme .circle {
    top: calc(var(--circle-inset) * -1);
    left: 0;
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    background: var(--circle-bg);
    border-radius: inherit;
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTkuMzA1IDEuNjY3VjMuNzVoMS4zODlWMS42NjdoLTEuMzl6bS00LjcwNyAxLjk1bC0uOTgyLjk4Mkw1LjA5IDYuMDcybC45ODItLjk4Mi0xLjQ3My0xLjQ3M3ptMTAuODAyIDBMMTMuOTI3IDUuMDlsLjk4Mi45ODIgMS40NzMtMS40NzMtLjk4Mi0uOTgyek0xMCA1LjEzOWE0Ljg3MiA0Ljg3MiAwIDAwLTQuODYyIDQuODZBNC44NzIgNC44NzIgMCAwMDEwIDE0Ljg2MiA0Ljg3MiA0Ljg3MiAwIDAwMTQuODYgMTAgNC44NzIgNC44NzIgMCAwMDEwIDUuMTM5em0wIDEuMzg5QTMuNDYyIDMuNDYyIDAgMDExMy40NzEgMTBhMy40NjIgMy40NjIgMCAwMS0zLjQ3MyAzLjQ3MkEzLjQ2MiAzLjQ2MiAwIDAxNi41MjcgMTAgMy40NjIgMy40NjIgMCAwMTEwIDYuNTI4ek0xLjY2NSA5LjMwNXYxLjM5aDIuMDgzdi0xLjM5SDEuNjY2em0xNC41ODMgMHYxLjM5aDIuMDg0di0xLjM5aC0yLjA4NHpNNS4wOSAxMy45MjhMMy42MTYgMTUuNGwuOTgyLjk4MiAxLjQ3My0xLjQ3My0uOTgyLS45ODJ6bTkuODIgMGwtLjk4Mi45ODIgMS40NzMgMS40NzMuOTgyLS45ODItMS40NzMtMS40NzN6TTkuMzA1IDE2LjI1djIuMDgzaDEuMzg5VjE2LjI1aC0xLjM5eiIgLz4KPC9zdmc+");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    -o-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: flex;
    justify-content: center;
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
    ;
}

.slider-btn-theme .circle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    border-radius: inherit;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    opacity: 0;
}

/* actions */
.theme-toggle input:checked+.slider-btn-theme .circle {
    left: calc(100% - var(--circle-diameter));
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTQuMiAyLjVsLS43IDEuOC0xLjguNyAxLjguNy43IDEuOC42LTEuOEw2LjcgNWwtMS45LS43LS42LTEuOHptMTUgOC4zYTYuNyA2LjcgMCAxMS02LjYtNi42IDUuOCA1LjggMCAwMDYuNiA2LjZ6IiAvPgo8L3N2Zz4=");
    background-color: rgb(0, 56, 146);
}

.theme-toggle input:active.slider-btn-theme .circle::before {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    opacity: 1;
    width: 0;
    height: 0;
}

.icon-menu-content{
    width: 50px;
    height: 50px;
    display: none !important;
}

.icon-menu-content:hover{
    background-color: rgba(255, 255, 255, 0.2);
}

.icon-menu-content svg{
    transform: rotate(-90deg);
    stroke: var(--stroke-icon-color);
}

#main{
    height: auto;
    flex-direction: row-reverse;
    margin-top: 10vh;
    max-width: 1200px;
}

/* ============================================ */


/*==== Menu ====*/
.aside-nav{
    top: 80px;
    right: 0;
    position: fixed;
    width: 23%;
    height: 90vh;
    border-left: 1px solid var(--text-color);
    justify-content: space-evenly;
    z-index: 3;
}

.aside-nav nav{
    height: 75%;
    top: 0;
    overflow-y: scroll;
    scrollbar-width: none;
}

.aside-nav nav ul{
    height: 100%;
    text-transform: uppercase;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 200;
}

.aside-nav nav ul li {
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0 14px 35px;
    width: 100%;
    font-weight: 400;
}

.aside-nav nav ul li:hover {
    width: 100%;
    background-color: var(--background-hover);
    transition: width 0.5s ease-in-out;
}

.ind{
    font-weight: 900;
    font-size: 1.2rem;
}

.close-icon{
    display: none;
    stroke: var(--stroke-icon-color);
}

.bottom-nav{
    width: 100%;
    height: auto;
    bottom: 0;
    padding: 10px 0 20px 30px;
    gap: 10px;
}

.contact-inf li{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: var(--border-color-primary);
    cursor: pointer;
}

.contact-inf li a{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.contact-inf li span .icon-contact-inf{
    stroke: #fff;
    fill: none;
    width: 18px;
    height: 18px;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================ */



/*==== All Sections ====*/
.content__sections{
    width: 77%;
    left: 0;
    top: 80px;
}

.section__tab {
    display: none !important;
    opacity: 0;
    width: 100%;
    padding: 80px 20px 0 20px;
}

.section__tab.section_tab--active{
    display: flex !important;
    opacity: 1;
}

.nav__tab.nav__tab--active{
   font-weight: 900;
   color: var(--highlight-color);
}

.index-section{
    top: 0;
    right: 4rem;
    font-size: 11rem;
    color: var(--index-color);
    user-select: none;
}

.title-section{
    font-size: clamp(3rem, 5vw, 5rem);
}


/* ============================================ */



/*==== 01 Top ====*/
#top{
    padding-top: 90px;
}

.text {
    width: 6ch;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.top-img-content {
    width: 350px;
    height: 350px;
    border-radius: 50%;
}

.top-img-content .my-webdev-pic{
    border-radius: 50%;
    width: 300px;
    height: auto;
    z-index: 100;
}

.top-text{
    width: 50%;
}

.top-text-span{
    color: var(--highlight-color);
}

.btns-content{
    margin-top: 40px;
}

.btn {
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center; 
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    padding: 0 10px;
    box-shadow: var(--box-shadow);
}


.btn h3 {
    z-index: 1;
    color:var(--text-color-alt);
    font-size: 0.8em;
    margin: 0;
}

.btn h3 span{
    padding: 0;
}

/* ============================================ */


/*==== 02 About ====*/

.about-text{
    width: 90%;
    height: auto;
    padding: 0 30px 0 0 ;
}

.p-about-text{
    padding: 0 0 50px 0;
    margin: 30px 0;
    border-bottom: 1px solid var(--line-color);
    width: 80%;
}


.socials-portfolio li{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.socials-portfolio li img{
    width: 18px;
    height: 18px;
}

.personal-inf{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 70%;
    height: auto;
    margin-bottom: 50px;
}

.personal-inf li{
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.personal-inf li .span-title{
    font-weight: 900;
}

.personal-inf li .span-title, .personal-inf li .span-inf{
    font-size: 1.2rem;
}

.lang-sect{
    width: 100%;
    margin-top: 120px;
}

.lang-sect h3{
    font-size: 3.3rem;
    padding: 10px;
    margin-bottom: 50px;
}

.lang-sect h3 svg{
    width: 30px;
    height: 30px;
    stroke: var(--stroke-icon-color);
}

.lang-sect .lang-list .lang{
    flex-direction: column;
    height: 230px;
    width: 190px;
    border-radius: 85px;
    border: var(--border-color-primary);
    font-size: 1rem;
}

.lang-percent{
    font-size: 2rem;
}

.download-cv-btn{
    text-transform: uppercase;
    border-radius: 20px;
    padding: 15px 40px;
    font-weight: 900;
    box-shadow: var(--box-shadow);
}

a.download-cv-btn{
    text-decoration: none;
    color: var(--text-color-alt);
}

.my-journey-section{
    margin-top: 100px;
    width: 100%;
}

.my-journey-section .title-journey{
    font-size: 3rem;
    padding: 10px;
}

.my-journey {
    margin-top: 50px;
    padding-bottom: 50px;
}

.my-journey h3{
    font-size: clamp(5rem, 6vw, 6rem);
}

/* ============================================ */



/*==== 03 What I do ====*/
#what-do-i-do{
    margin-bottom: 50px;
}

.services-content {
    height: auto;
}

.int-text{
    margin-top: 50px;
    width: 100%;
    padding: 0 20% 0 30px;
    border-left: 10px solid #fff;
    position: relative;
}

.int-text::after{
    content: '';
    position: absolute;
    left: -10px;
    bottom: 0;
    height: 50%;
    width: 10px;
    background-color: var(--highlight-color);
}

.int-text h4{
    font-size: 2rem;
}

.int-text p{
    line-height: 30px;
    
}

.services-section{
    margin-top: 50px;
}

.service{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: calc(50% - 30px);
    height: 350px;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    border: var(--border-color-primary);
    position: relative;
}

.service-index{
    bottom: 20px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.1;
    font-weight: 900;
}

.service .desc-serv{
    color: var(--text-color);
    font-size: 1.2rem ;
}

.service h4{
    font-size: 1.5rem;
    margin: 5px 0;
}

.service .icon-service{
    width: 100%;
}

.service .icon-service img{
    width: 50px;
    height: 50px;
}


/* ============================================ */



/*==== 04 Skills ====*/
#my-skills{
    padding-bottom: 20px;
}

.content-section-skills{
  height: 100%;
}

.skills-section{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    justify-content: start;
    margin-top: 50px;
}

.skills-section .skill, .content-img-percent{
    flex-direction: column;
}

.content-img-percent{
    height: 230px;
    width: 190px;
    border-radius: 85px;
    cursor: pointer;
    gap: 20px;
    z-index: 1;
    border: var(--border-color-primary);
}

.content-img-percent:hover{
    box-shadow: var(--box-shadow);
}

.skills-section .skill img{
    width: 60px;
    height: auto;
}

.skills-section .skill .no-bg-img{
    width: 90px;
    height: auto;
}

.skills-section .skill p{
    font-size: 2rem;
    color: var(--text-color);
}

.skills-section .skill h4{
    margin-top: 20px;
}

/* ============================================ */



/*==== Work Experience ====*/
.experience-section{
    margin-top: 100px;
    padding-bottom: 30px;
}

.exp{
    display: flex;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 95%;
    height: auto;
    padding: 0 20px 150px 20px;
    border-left: 1px solid var(--border-content-color-alt);
}

.dot{
    left: -10px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--highlight-color);
}

.dot::after{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--background);
}

.job-info{
    width: 30%;
    padding: 0 10px;
}

.job-info .job{
    color: var(--highlight-color);
    font-size: 1.3rem;
}

.job-info .company-name{
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.job-info .date{
    font-weight: 100;
}

.job-description{
    width: 70%;
}

.see-more-btn{
    text-decoration: none;
    color: var(--highlight-color);
    font-weight: 900;
    margin-top: 10px;
}

/* ============================================ */



/*==== 05 Projects ====*/

#projects{
    padding-bottom: 40px;
}

.filter-controls{
    margin: 60px 0 0 30px;
    z-index: 2;
}

.filter-btn {
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
}

.filter-btn.active {
    color: var(--highlight-color);
}

.projects-section{
    height: auto;
    margin-top: 30px;
    gap: 10px;
    padding-right: 30px;
}

.project-item {
    flex: 1 1 calc(50% - 30px);  
    max-width: 600px;
    height: auto;
    padding-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: -1;
    border-radius: 7.5px;
    margin-bottom: 50px;

}

.project-item .project-img-content{
    padding: 25px;
    z-index: 1;
    width: 100%;
    height: auto;
}

.project-item .project-img-content img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-content-color);
}

.info-project{
    text-align: left;
    margin-left: 30px;
    width: 90%;
}

.info-project h4{
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-project p{
    margin: 20px 0 20px 0;
    gap: 10px;
}

.technologies-content{
    flex-wrap: wrap;
}

.technologies-content .technology-pill{
    padding: 3px 10px;
    border-radius: 20px;
    gap: 10px;
    border: 1px solid #fff !important;
    font-size: 0.8rem;
}

.technologies-content .technology-pill img{
    width: 15px;
    height: 15px;
}

.preview-btn{
    width: 40px;
    height: 40px;
    padding: 5px 15px;
    border-radius: 50%;
    gap: 20px;
}

.preview-btn img{
    width: 20px;
    height: 20px;
}

.projects-footer{
    width: 100%;
    text-align: center;
}

.projects-footer a{
    color: yellow;
    text-decoration: underline;
    text-underline-offset: 5px;
}

@keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.project-item.scale-animation {
    animation: scale-up 0.5s ease-out;
}


/* ============================================ */



/*==== 07 Testimonial ====*/
.testimonial-section {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    padding-bottom: 40px;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.testimonial {
    border: var(--border-color-primary);
    border-radius: 40px;
    flex: 0 0 calc(100% - 20px);
    padding: 50px;
    box-sizing: border-box;
}

.top{
    display: flex;
    gap: 20px;
}

.top h3{
    display: flex;
    flex-direction: column;
}

.top h3 span{
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 5px;
}

.bottom{
    margin-top: 40px;
    width: 90%;
}

.review-image-content{
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
}

.review{
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.stars{
    font-size: 1.4rem;
    color: yellow;
}

.controls {
    display: flex;
    margin-top: 20px;
}

.controls .control {
    color: var(--text-color);
    background: none;
    border: var(--border-color-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

.currentIndex{
    font-size: 1.1rem;
    margin-left: 20px;
    color: var(--text-color);
}

/* ============================================ */



/*==== 08 Contact ====*/
.contact-content{
    width: 100%;
}

.contact-section {
    padding-bottom: 40px;
}

.ul--info-socials {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Columnas dinámicas */
    gap: 20px; /* Espacio entre columnas y filas */
    margin: 80px 0;
}

.li--info-social {
    flex-direction: column;
    padding: 30px;
    border-radius: 30px;
    border: 1.5px dotted var(--text-color);
    position: relative;
    box-sizing: border-box;
}

.li--info-social .info-type{
    font-weight: 900;
}

.li--info-social .info-value{
    font-weight: 100;
}

.icon-contact{
    top: -25px;
    left: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.title-form{
    font-size: 2.5rem;
    width: 90%;
}

.title-form .title-line{
    width: 65%;
    height: 1px;
    background: var(--text-color);
}

.contact-form{
    width: 90%;
    margin-top: 50px;
}

.contact-form  input{
    padding: 25px 10px;
    margin-bottom: 5px;
}

.contact-form  input, textarea{
    background-color: var(--bg-color-input-form);
    width: 100%;
    outline: none !important;
    border: 1px solid var(--border-content-color);
    font-family: 'Poppins';
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1rem;
}

textarea{
    height: 300px;
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
}

#submit-button{
    width: 50%;
    font-size: 1.1rem;
}

.form-response{
    color: var(--succesful-msg);
}
/* ============================================ */



/*==== Glass effect / gradient ====*/
.contact-inf li:hover, .btn, .socials-portfolio li, .download-cv-btn, .technologies-content .technology-pill, .preview-btn, .review-image-content, .controls button:hover, .contact-section ul li .img-content, .icon-contact, input#submit-button{
    background: var(--rosure-gradient-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter:blur(5px);
    border: 1px solid var(--border-content-color);
    color: var(--text-color-alt);
}


.contact-form li:hover, .btn:hover, .socials-portfolio li:hover, .download-cv-btn:hover, .lang-sect .lang-list .lang:hover, .service:hover, 
.content-img-percent:hover, #submit-button:hover, .technologies-content .technology-pill:hover, .preview-btn:hover{
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
}

/*==== font size 0.9rem ====*/
.copyrights, service .desc-serv, .download-cv-btn, .info-project p, .projects-footer p, .job-info .date, .preview-btn {
    font-size: var(--font-size-sm);
}


/*==== flex-center ====*/
.contact-inf li a, .top-img-content, .lang-sect .lang-list .lang, .skills-section .skill, .content-img-percent, .info-project p, .technologies-content .technology-pill, .preview-btn, .review-image-content, .li--info-social, .contact-section ul li .img-content{
    display: flex;
    justify-content: center;
    align-items: center;
}


@media screen and (max-width: 1150px){

    header{
        backdrop-filter: blur(30px);
    }

    .icon-menu-content{
        display: flex !important;
        border-radius: 15px;
    }

    #main{
        height: auto;
    }

    /* All sections */
    .section__tab{
        padding: 80px 20px !important;
        margin: auto;
    }

    .content__sections {
        width: 100%;
    }

    .index-section{
        left: initial;
        right: 10%;
    }
    

    /* Menu */

    .aside-nav {
        width: 35%;
        height: 100vh;
        border-left: 0;
        top: 0;
        right: -35%;
        z-index: 3;
        transition: 0.3s ease-in-out;
        background: var(--menu-responsive-bg-color);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter:blur(50px);
        color: #fff !important;
    }

    .aside-nav nav {
        height: 60%;
        padding-top: 0;
        margin-top: 80px;
    }

    .aside-nav.active {
        right: 0;
    }

    .aside-nav nav ul {
        margin-top: 20px;
    }

    .contact-inf{
        margin-top: 0;
    }

    .close-icon{
        display: block;
        position: absolute;
        left: 20px;
        top: 30px;
        stroke: var(--stroke-icon-color);
    }

    /* 01 TOP */
    #top{
        justify-content: initial;
        gap: 20px !important;
    }

    .top-text {
        width: 80%;
    }

    .top-img-content {
        width: 320px;
        height: 320px;
    }

    .top-img-content .my-webdev-pic{
        width: 280px;
    }

    /* 02 About */
    .about-text {
        width: 90%;
        margin-bottom: 100px;
        padding: 0;
    }

    .personal-inf {
        width: 100%;
        margin-left: 0;
        margin-top: 100px;
    }

    .lang-sect{
        width: 100%;
    }

    /* 03 What do I do */
    #what-do-i-do{
        padding-top: 80px;
    }

    /* 06 Projects */
    .projects-section{
        padding-right: 0;
    }

    .technologies-content {
        gap: 5px;
    }

    .technologies-content .technology-pill{
        font-size: 0.7rem;
        padding: 5px 10px;
        gap: 5px;
    }

    /* 07 Contact */
    .contact-form{
        width: 100%;
    }

    .ul--info-socials {
        width: 100%;
        gap: 50px;
    }

    .title-form{
        width: 100%;
    }
}

@media screen and (max-width: 801px) {
    /* Menu */
    .aside-nav {
        width: 60%;
        right: -60%;
    }

    .contact-inf li{
        width: 40px;
        height: 40px;
    }
    
    .contact-inf li span .icon-contact-inf{
        width: 18px;
        height: 18px;
    }

    .index-section{
        font-size: 9rem;
    }

    /* 01 Top */
    .top-text {
        width: 100%;
    }

    /* 02 About me*/
    .about-text {
        width: 100%;
    }

    .p-about-text {
        width: 100%;
    }

    .personal-inf {
        width: 100%;  
        margin-top: 50px;
    }

    .lang-sect h3{
        text-align: center;
        font-size: 2.5rem;
    }

    .lang-list {
        flex-direction: column;
    }

    .socials-portfolio li {
        width: 40px;
        height: 40px;
    }

    .download-cv-btn {
        font-size: 1rem;
    }

    .socials-portfolio{
        gap: 20px !important;
    }

    .my-joruney-content{
        justify-content: center;
    }

    .my-journey {
        margin-top: 50px;
    }

    .my-journey-section .title-journey {
        text-align: center;
        font-size: 2.5rem;
    }

    /* 03 What do I do */
    .services-section{
        padding: 0 20px;
    }

    .service {
        width: 100%;
    }

    /* 05 Experience */
    .exp{
        gap: 30px;
    }

    .job-info{
        padding: 0;
    }

    .job-description, .job-info{
        width: 100%;
    }

    /* 06 Projects */
    .project-item {
        max-width: 100%; /* Cada columna ocupa todo el ancho */
        flex: 1 1 100%; /* Ocupa el 100% del ancho en pantallas pequeñas */
    }  

    /* 07 Testimonial */
    .testimonial-content{
        width: 100%;
    }

    .testimonial {
        padding: 50px 10px 20px 20px; 
    }

    .review {
        font-size: 1rem;
    }

    /* 08 Contact*/
    .li--info-social {
        height: 150px;
    }

    .li--info-social .info-type {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 601px) {
    header{
        padding: 0 20px 0 0;
    }

    .logo-content h1{
        font-size: 1.7rem;
        margin-left: 20px;
    }

    .theme-toggle {
        /* switch */
        --switch-bg: rgb(135, 150, 165);
        --switch-width: 48px;
        --switch-height: 18px;
        /* circle */
        --circle-diameter: 28px;
    }

    /* Menu */
    .aside-nav {
        width: 80%;
        right: -80%;
    }

    /* 01 TOP */
    .top-img-content {
        width: 260px;
        height: 260px;
    }

    .top-img-content .my-webdev-pic{
        width: 220px;
    }

    /* 02 About */
    .personal-inf {
        grid-template-columns: 1fr;
    }

    .my-joruney-content {
        flex-direction: column;
    }

    /* 03 What do I do */
    .services-section{
        padding: 0;
        justify-content: center;
        gap: 50px !important;
    }

    .int-text {
        padding: 0 20px;
    }

    .service{
        padding: 10px 20px;
        font-size: 0.8rem;
    }


    /* 04 Skills */
    .skills-section{
        gap: 40px !important;
    }

    .content-img-percent {
        height: 275px;
        width: 70%;
        border-radius: 85px;
    }

    .skills-section .skill img {
        width: 80px;
        height: auto;
    }

    /* 06 Projects */
    .projects-section {
        margin: 40px auto 0 auto;
        padding-right: 0;
    }

    .filter-controls {
        margin: 60px 0 0 0;
    }

    .filter-btn{
        font-size: clamp(0.8rem, 0.7vw, 0.8rem);
    }

    .info-project {
        margin-top: 15px;
        margin-left: 0;
        width: 100%;
    }

    .project-item .project-img-content {
        padding: 0;
    }

    /* O8 Contact */
    .contact-form {
        min-width: 280px;
    }

    #submit-button {
        width: 100%;
    }
}
