@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* HERE WE STYLING THE HOLE PAGE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
@keyframes opacityVariation__desktop {
    0% { opacity: 0.30; }
    10% { opacity: 0.45; }
    20% { opacity: 0.60; }
    30% { opacity: 0.75; }
    40% { opacity: 0.90; }
    50% { opacity: 1; }
    60% { opacity: 0.90; }
    70% { opacity: 0.75; }
    80% { opacity: 0.60; }
    90% { opacity: 0.45; }
    100% { opacity: 0.30; }
}

@keyframes opacityVariation__mobile {
    0% { opacity: 0.80; }
    10% { opacity: 0.85; }
    20% { opacity: 0.90; }
    30% { opacity: 0.95; }
    40% { opacity: 1; }
    50% { opacity: 1; }
    60% { opacity: 1; }
    70% { opacity: 0.95; }
    80% { opacity: 0.90; }
    90% { opacity: 0.85; }
    100% { opacity: 0.80; }
}

@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@keyframes aumentarEscala {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.6);
    }
    100% {
        transform: scale(1);
    }
}


#unsupported-message {
    display: none !important;
}

body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.tema-oscuro {
    background-color: #111111;
}




/**//**//**//**//*               MOBILE NAVIGATOR             *//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/* CLEAR MODE */
#mobile-nav {
    display: flex;
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: -2px;
    background-color: #fff;  /* Ajusta el color de fondo según tus necesidades */
    z-index: 1000;  /* Ajusta el índice Z según sea necesario */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#mobile-nav label {
    display: flex;
    align-items: center;
}
#mobile-nav a {
    transition: all 2s ease;
}
#mobile-nav a:hover {
    scale: 1.1;
}
#mobile-nav .logo {
    color: #111111;
    font-weight: bold;
    transition: color 2s ease;
    display: inline-block;
}
#mobile-nav .logo span {
    display: inline-block;
    animation: opacityVariation__desktop 3s ease-in-out infinite;
}

/* DARK MODE*/
.tema-oscuro #mobile-nav {
    background-color: #111111; /* Ajusta el color de fondo según tus necesidades */
    z-index: 1000; /* Ajusta el índice Z según sea necesario */
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1); /* Opcional: sombra para resaltar el navbar */
}
.tema-oscuro #mobile-nav .logo {
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
    transition: color 2s ease;
}











/**//**//**//**//*              DESKTOP NAVIGATOR             *//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* Ajusta el color de fondo según tus necesidades */
    z-index: 1000; /* Ajusta el índice Z según sea necesario */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Opcional: sombra para resaltar el navbar */
}
#desktop-nav label {
    display: flex;
    align-items: center;
}
#desktop-nav a {
    position: relative;
    text-decoration: none;
    color: #111111;
    transition: color 2s ease;
}
#desktop-nav a:after {
    content: "";
    position: absolute;
    background-color: #15ab72;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
#desktop-nav a:hover {
    color: #15ab72;
}
#desktop-nav a:hover::after {
    width: 100%;
}
#desktop-nav label {
    display: flex;
    align-items: center;
}
#desktop-nav .logo {
    color: #111111;
    font-weight: bold;
    display: inline-block;
    transition: color 2s ease;
}
#desktop-nav .logo span {
    display: inline-block;
    animation: opacityVariation__desktop 3s ease-in-out infinite;
}

nav,
.nav-links{
    display: flex;
}
nav{
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}
.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}
.logo{
    font-size: 2rem;
}
.logo:hover{
    cursor: pointer;
}
.app-header a{
    text-decoration: none;
}

/* DARK THEME */
.tema-oscuro #desktop-nav {
    background-color: #111111; /* Ajusta el color de fondo según tus necesidades */
    z-index: 1000; /* Ajusta el índice Z según sea necesario */
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1); /* Opcional: sombra para resaltar el navbar */
}
.tema-oscuro #desktop-nav a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    transition: color 2s ease;
}
.tema-oscuro #desktop-nav .logo {
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
    transition: color 2s ease;
}














/**//**//**//**//*            MAIN PROFILE SECTION            *//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#profile {
    display: flex;
    justify-content: center;
    gap: 10%;
    height: 80vh;
    color: #111111;
}
#profile .section__pic-container {
    display: flex;
    height: 400px;
    width: auto;
    margin: auto 0;
}
#profile .section__text {
    display: flex;
    flex-direction: column; /* Ajusta según sea necesario */
    align-self: center;
    text-align: center;
}
#profile .section__text p {
    font-weight: 600;
    color: #535353;
    transition: color 2s ease-in-out;
}
#profile .section__text__p1 {
    text-align: center;
}
#profile .section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
#profile .title {
    font-size: 3rem;
    text-align: center;
    transition: color 2s ease;
}
#profile #socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/* DARK THEME */
.tema-oscuro #profile {
    background: #111111;
}

.tema-oscuro #profile .title {
    color: #ffffff;
    transition: color 2s ease;
}
.tema-oscuro #profile .section__text p {
    color: #7e7e7e;
    transition: color 2s ease-in-out;
}


/**//**//**//**//* IMAGEN DE PERFIL *//**//**//**//**//**/
/**//**//**//**//*      FINISHED    *//**//**//**//**//**/

/* CLEAR THEME */
#profile .section__pic-container img {
    border-radius: 250px;
    display: block;
    transition: background-color 2s ease; /* Agregado para animar el fondo */
    background-color: rgb(0, 0, 0);
}

/* DARK THEME */
.tema-oscuro #profile .section__pic-container img {
    transition: background-color 2s ease; /* Agregado para animar el fondo */
    background-color: rgb(255, 255, 255);
}


/**//**//**//**//**//* BUTTONS *//**//**//**//**//**/
/**//**//**//**//*    FINISHED *//**//**//**//**//**/

/* CLEAR THEME */
.btn-container{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn{
    font-weight: 600;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
}
.btn-color-1,
.btn-color-2{
    border: #15ab72 0.1 rem solid;
}
.btn-color-1{
    background: #111111;
    color: #fff;
    
}
.btn-color-1:hover{
    background: #15ab72;
    cursor: pointer;
    transform: scale(1.1);
}
.btn-color-2{
    background: none;
}
.btn-color-2:hover{
    background: #15ab72;
    color: #fff;
    border: #fff 0.1 rem solid;
    cursor: pointer;
    transform: scale(1.1);
}
.btn-container{
    gap: 1rem;
}

/* DARK THEME */
.tema-oscuro .btn-color-1{
    background: #15ab72;
    color: #fff;
}
.tema-oscuro .btn-color-1:hover{
    background: none;
    color: #fff;
    transform: scale(1.1);
}
.tema-oscuro .btn-color-2{
    background: #fff;
}
.tema-oscuro .btn-color-2:hover{
    background: #15ab72;
    color: #fff;
    border: #fff 0.1 rem solid;
    transform: scale(1.1);
}


/**//**//**//**//**//* SOCIAL ICONS *//**//**//**//**//**/
/**//**//**//**//*      FINISHED    *//**//**//**//**//**/

/* CLEAR THEME */
#profile .social--icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
#profile .social--icon {
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 2px solid #565656;
    font-size: 1.2rem;
    color: #000000;
    transition: color 0.5s ease-in-out;
    text-decoration: none;
}
#profile .social--icon:hover {
    color: #15ab72;
    border-color: #15ab72;
    transition: 0.3s;
    scale: 1.1;
}

/* DARK THEME */
.tema-oscuro #profile .social--icon {
    border: 2px solid #565656;
    color: #15ab72;
    transition: color 0.5s ease-in-out;
}
.tema-oscuro #profile .social--icon:hover {
    color: #15ab72;
    border-color: #15ab72;
    transition: 0.3s;
    scale: 1.1;
}



















/**//**//**//**//**//*           CLEAR/DARK BUTTON        *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/* this hiddes the ugly iphone day/night checkbox on the main menu */
input[type="checkbox"]
{
    -webkit-appearance: none;
    visibility: hidden;
    display: none;
    transition: all 0.3s ease-in-out;
}
/* this gives iphone day/night button a cool style 
    - Redondea los bordes
    - Pone el marco del color que queremos
    - Le da las medidas
*/
.check
{
    position: relative;
    display: block;
    width: 42px;
    height: 21px;
    background: #111111;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: ease-in 0.5s;
}
/* we giving instructions on how we want to see it when checked and
   also setting the background color 
*/
input[type="checkbox"]:checked ~ .check
{
    background: #fff;
}
/* this creates the circle inside the frame
    - instructions on how we want it to be before checked
*/
.check:before
{
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: 0.5s;
}
/* cool rolling sideways effect for the circle inside the frame */
input[type="checkbox"]:checked ~ .check:before
{
    /*transform: translateX(-50px);*/
    scale: (1.01, 1);
    transform: rotate3d();
    translate: 50px;
}
/* this creates the dark circle for the dark theme, despite we cannot see it yet */
.check:after
{
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    background: #111111;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    transition: 0.5s;
    /*transform: translateX(50px);*/
    transform: rotate3d(50px);
    translate: -50px;
    scale: (1.01, 1);
}
/* cool rolling sideways effect for the dark circle inside the frame */
input[type="checkbox"]:checked ~ .check:after
{
    /*transform: translateX(0px);*/
    scale: (1.01, 1);
    transform: rotate3d();
    translate: 0px;
}






















/**//**//**//**//*              SPOTIFY SETTINGS              *//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#spotify h1 {
    color: #111111;
}
#spotify h2 {
    color: #111111;
}
#spotify h3 {
    color: #111111;
}
#spotify p {
    color: #999;
}
#spotify a {
    text-decoration: none;
}
#spotify img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#spotify .container {
    padding: 5rem;
    margin-right: 3rem;
}
#spotify .main {
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    display: flex;
    background-color: #fff;
}
#spotify .main--content {
    width: 100%;
    margin-top: 5rem; /* Adjust the value based on your needs */
    padding: 20px; /* Add padding if needed */
    flex-grow: 1;
}
#spotify .top--title {
    color: #111111;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 5px 16px;
    border: 1px solid #565656;
    width: fit-content;
    border-radius: 2rem;
}
#spotify .title{
    margin-top: 2rem;
    margin-bottom: 3rem;
}
#spotify .title span{
    color: #15ab72;
}
#spotify span {
    color: #15ab72;
}

/* DARK THEME */
.tema-oscuro #spotify h1 {
    color: #ffffff;
}
.tema-oscuro #spotify h2 {
    color: #ffffff;
}
.tema-oscuro #spotify h3 {
    color: #ffffff;
}
.tema-oscuro #spotify p {
    color: #999;
}
.tema-oscuro #spotify .main {
    background-color: #111111;
}
.tema-oscuro #spotify .top--title {
    color: #ffffff;
}
.tema-oscuro #spotify .title span{
    color: #15ab72;
}
.tema-oscuro #spotify span {
    color: #15ab72;
}

/**//**//**//**//*      SIDEMENU NAV PERFECTOOO POR FIN!      *//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .main {
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    display: flex;
    background-color: #fff;
}
#spotify .sidemenu {
    height: 100.5vh; /*valores grandes lo baja, valores grandes lo sube*/
    min-width: 300px;
    max-width: 300px;
    padding: 2rem;
    position: fixed;
    position: sticky;
    top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -100px;
}
#spotify .main--content {
    width: 100%;
    margin-top: 5rem; /* Adjust the value based on your needs */
    padding: 20px; /* Add padding if needed */
    flex-grow: 1;
}
/* DARK THEME */
.tema-oscuro #spotify .main {
    background-color: #111111;
}


/**//**//**//**//**//*    AVATAR      *//**//**//**//**//**/
/**//**//**//**//*        FINISHED    *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .avatar img {
    width: 100%; /* Ajusta el ancho al 100% del contenedor */
    height: 100%; /* Ajusta la altura al 100% del contenedor */
    object-fit: cover; /* Mantiene la relación de aspecto y cubre completamente el contenedor */
    object-position: center center; /* Centra la imagen dentro del contenedor */
}
#spotify .avatar {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #cacaca;
    filter: grayscale(100%)
}
#spotify .name {
    margin-top: 2rem;
    text-align: center;
}
#spotify .position {
    margin-top: 0.2rem;
    text-align: center;
    color: #000000;
}

/* DARK THEME */
.tema-oscuro #spotify .position {
    color: #ffffff;
}


/**//**//**//**//**//*    SOCIAL ICONS sidenav      *//**//**//**//**//**/
/**//**//**//**//*              FINISHED            *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .social--icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.6rem;
}
#spotify .social--icon {
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 2px solid #565656;
    font-size: 1.2rem;
    color: #999;
    text-decoration: none;
}
#spotify .social--icon:hover {
    color: #15ab72;
    border-color: #15ab72;
    transition: 0.3s;
}

/* DARK THEME NO HACE FALTA! */


/**//**//**//**//**//*    BUTTONS sidenav      *//**//**//**//**//**/
/**//**//**//**//*            FINISHED         *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .btn__1 {
    padding: 8px 18px;
    background-color: #15ab72;
    border-radius: 2rem;
    text-align: center;
    font-weight: bold;
    color: #111111;
    border: 2px solid #15ab72;
    cursor: pointer;
}
#spotify .btn__1:hover {
    background-color: #ffffff;
    color: #15ab72;
    transition: 0.5s;
}
#spotify .btn__2 {
    padding: 8px 18px;
    border-radius: 2rem;
    text-align: center;
    font-weight: bold;
    color: #111111;
    border: 2px solid #565656;
    cursor: pointer;
}
#spotify .btn__2:hover {
    background-color: #15ab72;
    border-color: #15ab72;
    color: #ffffff;
    transition: 0.5s;
}
#spotify .sidemenu .btn__1 {
    margin-top: 2rem;
}
#spotify .sidemenu .btn__2 {
    margin-top: 1rem;
}

/* DARK THEME */
.tema-oscuro #spotify .btn__1:hover {
    background-color: #000000;
    color: #15ab72;
}
.tema-oscuro #spotify .btn__2 {
    color: #15ab72;
    border: 2px solid #565656;
}
.tema-oscuro #spotify .btn__2:hover {
    background-color: #000000;
    border-color: #15ab72;
    color: #ffffff;
}


/**//**//**//**//*                     SECTIONS               *//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/
section{
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rep;
    box-sizing: border-box;
    min-height: fit-content;
}
.section-container{
    display: flex;
}





/**//**//**//**//*     INTRO CONTAINER PERFECTOOO POR FIN!    *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .intro {
    width: 100%;
}
#spotify .intro h1 {
    margin-top: 2rem;
}
#spotify .intro p {
    margin-top: 2rem;
}
#spotify h1 span {
    color: #15ab72;
}
#spotify .intro--flex--container {
    display: flex;
    align-items: center;
    gap: 3rem;
}
#spotify .intro--flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
#spotify .intro--flex h1 {
    color: #15ab72;
}
#spotify .intro--flex p {
    color: #111111;
}

/* DARK THEME */
.tema-oscuro #spotify .intro--flex h1 {
    color: #15ab72;
}
.tema-oscuro #spotify .intro--flex p {
    color: #ffffff;
}





/**//**//**//**//*     ABOUT CONTAINER PERFECTOOO POR FIN!    *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/
#spotify #about {
    scroll-margin-top: 9.5rem;
}






/**//**//**//**//*    RESUME CONTAINER PERFECTOOO POR FIN!    *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .experience,
#spotify .education {
    position: relative;
    padding-left: 20px; /* Ajusta el valor según tu preferencia para la posición horizontal */
    margin-bottom: 20px; /* Ajusta el valor según tu preferencia para la separación vertical */
}
#spotify .experience:before,
#spotify .education:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #cacaca;
    left: 0;
    top: 1px;
}
#spotify .experience:last-child,
#spotify .education:last-child {
    padding-bottom: 0;
}
#spotify .date {
    margin-bottom: 0.5rem;
}
#spotify .company {
    font-size: 0.75rem;
    font-weight: 900;
    margin-top: 0.4rem;
}
#spotify .circle {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #15ab72;
    top: 0.4rem;
    left: -9.2px; /* Ajusta el valor según tu preferencia para la posición horizontal */
    transform: translateY(-30%);
    z-index: 1; /* Asegura que los círculos estén encima de las líneas */
}
#spotify .education:before,
#spotify .experience:before {
    height: calc(100% + 25px); /* Ajusta el valor según la altura de tus cajas de educación y la separación vertical */
}
#spotify #experience {
    scroll-margin-top: 9.5rem;
}
#spotify .container-resume {
    display: flex;
    gap: 2rem;
}
#spotify .container-education {
    width: 70%;
    position: relative;
}
#spotify .container-experience {
    width: 50%;
    position: relative;
}

/* DARK THEME */
.tema-oscuro #spotify .experience:before,
.tema-oscuro #spotify .education:before {
    background-color: #525252;
}






/**//**//**//**//*     SERVICES CARDS PERFECTOOO POR FIN!     *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/
#spotify .services {
    display: grid;
    gap: 1rem;
}
#spotify .service {
    padding: 2rem;
    border: 2px solid #565656;
    border-radius: 1rem;
}
#spotify .proyects {
    color: #111111;
    display: inline-block;
    margin-top: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}







/**//**//**//**//*      SKILLS CARDS PERFECTOOO POR FIN!      *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
#spotify .big-skill {
    flex: 1 1 200px;
    max-width: 50%;
}
#spotify .skill {
    box-sizing: border-box;
    border: 2px solid #565656;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-block: 1.5rem;
    border-radius: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
#spotify .skill img {
    width: auto; /* Ajusta el ancho de la imagen según sea necesario */
}
#spotify .skill h3,
#spotify .skill p {
    text-align: center;
}
#spotify .skill--img--cover {
    position: relative;
    height: 5rem;
    width: 5rem;
}
#spotify .pecent-circle {
    background: #15ab72;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 10rem;
}
#spotify .skill h3 {
    color: #fff;
}
#spotify .skills p {
    color: #111111;
    font-weight: 900;
    text-align: center;
    margin-top: 0rem;
}

/* DARK THEME */
.tema-oscuro #spotify .skill {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}
.tema-oscuro #spotify .skill--img--cover {
    filter: invert(1);
}
.tema-oscuro #spotify .skill h3 {
    color: #111111;
}
.tema-oscuro #spotify .skills p {
    color: #ffffff;
}






/**//**//**//**//*    CERTIFICATE CARDS PERFECTOOO POR FIN!   *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
/**//**//**//**//*                  FINISHED                  *//**//**//**//**//**/

/* CLEAR THEME */
#spotify .certificates {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1rem;
}
#spotify .certificate,
.certificate-no-disp {
    position: relative;
    flex: 1 1 200px;
    max-width: 50%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #282828;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

/*delete?*/
#spotify .certificate::before{
    content: '';
    position: absolute;
    width: 130px;
    margin-top: -40%;
    height: 165%;
    background: linear-gradient(#1DB954, #ffffff);
    animation: rotate 4s linear infinite;
    overflow: hidden;
}
#spotify .certificate::after,
.certificate-no-disp::after {
    content: '';
    position: absolute;
    background-color: #282828;
    inset: 4px;
    border-radius: 50px;
}
#spotify .cover-image {
    z-index: 2;
    position: relative;
    height: 7.5rem;
    width: 7.5rem;
    border-radius: 10px;
    margin-bottom: 10px;
}
/*
#spotify .cover-image-no-certificate {
    z-index: 2;
    position: relative;
    height: 7.5rem;
    width: 7.5rem;
    border-radius: 10px;
    margin-bottom: 10px;
    filter: grayscale(100%)
}*/
#spotify .song-details {
    z-index: 2;
    text-align: center;
    margin-bottom: 10px;
}
#spotify .song-title {
    z-index: 2;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}
#spotify .artist {
    z-index: 2;
    font-size: 12px;
    color: #b3b3b3;
}
#spotify .controls {
    z-index: 2;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
#spotify .control-button {
    z-index: 2;
    background-color: #1DB954;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    cursor: default;
}
#spotify .control-button#pause {
    font-size: 18px;
}
#spotify .control-button#play {
    padding-left: 2px;
    font-size: 13px;
}
#spotify .control-button#double_play {
    padding-left: 2px;
    padding-top: 2px;
    font-size: 13px;
}
#spotify .control-button#reverse_play {
    padding-left: 2px;
    padding-top: 2px;
    font-size: 13px;
    transform: rotate(180deg);
}
#spotify .control-button:nth-child(2) {
    background-color: #15ab72;
    transform: scale(1.2);
}
#spotify #control-button-available {
    padding-left: 2px;
    background-color: #15ab72;
    font-size: 18px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 3s infinite;
    animation: aumentarEscala 3s infinite;
}
/*
#spotify .control-button-no-certificate {
    z-index: 2;
    background-color: #7e7e7e;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    cursor: default;
}
*/
#spotify .progress-bar {
    z-index: 2;
    width: 60%;
    height: 5px;
    background-color: #535353;
    border-radius: 5px;
    position: relative;
}
#spotify .progress-bar .progress {
    z-index: 2;
    height: 100%;
    background-color: #1DB954;
    border-radius: 5px;
    width: 50%; 
}
/*
#spotify .progress-bar .progress-no-certificate {
    z-index: 2;
    height: 100%;
    background-color: #adadad;
    border-radius: 5px;
    width: 50%; 
}
*/
#spotify .my--certificates h2 {
    z-index: 2;
    padding-top: 2rem;
}

/* DARK THEME */
.tema-oscuro #spotify .certificate {
    z-index: 2;
    background-color: #282828;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
}
.tema-oscuro #spotify .certificate-no-disp {
    z-index: 3;
    background-color: #282828;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}
.tema-oscuro #spotify .close-button {
    color: #ffffff;
}
.tema-oscuro #spotify .no-valid-certification-msg p {
    color: #ffffff;
}
.fecha-pevista {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.45); /* Fondo semitransparente */
    color: white;
    font-size: 1.5rem; /* Ajusta el tamaño del texto según tus necesidades */
    transform: rotate(-45deg);
    z-index: 4; /* Asegura que el overlay esté por encima de todo */
    pointer-events: none; /* Asegura que el overlay no interfiera con la interacción de otros elementos */
}







/**//**//**//**//*      CONTACT CARDS PERFECTOOO POR FIN!     *//**//**//**//**//**/
/*   No hace falta incluirlo en "@media screen" porque ya adapta solo el tamaño   */
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
#spotify .contact--cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    justify-content: flex-start;
}
#spotify .contact--card {
    flex: 1 1 250px; /* Establece un crecimiento flexible con un ancho mínimo de 250px */
    box-sizing: border-box;
    border: 2px solid #565656;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}
#spotify .contact--card p {
    font-size: 1.3rem;
    margin: 0;
}
#spotify .contact--card i {
    font-size: 2rem;
    color: #15ab72;
    margin-bottom: 0.5rem;
    display: inline-block;
}



/**//**//**//**//**//*            VIEWS SYMBOL        *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
#spotify .views p {
    text-align: center;
}
#spotify .views {
    padding-bottom: 2rem;
    overflow: hidden;
}







/**//**//**//**//**//*            COPYRIGHT SYMBOL        *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
#spotify .copyright p {
    text-align: center;
}
#spotify .copyright {
    padding-bottom: 7rem;
    overflow: hidden;
}









/**//**//**//**//**//*    DISPOSITIVOS NO SOPORTADOS!!    *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media screen and (max-width: 299px) {
    /* ESCONDER */
    #desktop-nav,
    #mobile-nav,
    #profile,
    #spotify,
    #contact .top--title,
    #contact .title {
        display: none !important;
    }

    #unsupported-message {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column;
        height: 100vh;
        background: #111111;
        color: #fff;
        font-size: 1rem;
        text-align: center;
    }
    #unsupported-message .ordenador{
        font-weight: bold;
    }

    /* Mostrar contact y copyright debajo de unsupported-message */
    #unsupported-message .contact,
    #unsupported-message .copyright {
        display: block;
        margin-top: 50px; /* Puedes ajustar el margen según sea necesario */
        text-align: center;
    }
    #unsupported-message .contact--cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 0; /* Elimina el relleno para que los elementos estén pegados al borde izquierdo */
    }
    #unsupported-message .contact--card {
        border: 2px solid #565656;
        padding: 0.5rem;
        border-radius: 1rem;
        display: flex; /* Usa flexbox para controlar el diseño interno */
        align-items: center; /* Centra verticalmente el contenido */
    }
    #unsupported-message .contact--card p {
        font-size: 0.7rem;
        margin-left: 1rem; /* Agrega un margen izquierdo para separar el icono del texto */
    }
    #unsupported-message .contact--card i {
        font-size: 1.2rem;
        color: #15ab72;
        display: inline-block;
    }


    #unsupported-message .copyright p {
        font-size: 0.7rem;
        text-align: center;
    }
    #unsupported-message .copyright {
        padding-bottom: 2rem;
        overflow: hidden;
    }
}


/**//**//**//**//**//*         entre 300px y 320px          *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media only screen and (min-width: 300px) and (max-width: 320px) {

	#unsupported-message {
		display: none !important;
	}

    #mobile-nav {
        display: flex;
    }
    #desktop-nav {
        display: none !important;
    }

    #profile {
        display: none !important;
    }
    /*
    #profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    */

    #spotify .main {
        padding: 0;
        display: block;
    }
    #spotify .sidemenu {
        position: relative;
        margin: auto;
        border-right: none;
        border-left: none;
        margin-top: -3.45rem;
        padding: 1rem;
    }
    #spotify .avatar {
        align-self: center;
        width: 175px; /* Ajusta el ancho al 100% del contenedor */
        height: 160px; /* Ajusta la altura al 100% del contenedor */
    }
    #spotify .avatar img {
        width: 100%; /* Ajusta el ancho al 100% del contenedor */
        height: 115%; /* Ajusta la altura al 100% del contenedor */
    }
    #spotify .name {
        margin-top: 0.5rem;
    }
    #spotify .social--icons {
        margin-top: 0.8rem;
    }
    #spotify .social--icon {
        height: 2rem;
        width: 2rem;
    }
    #spotify .sidemenu .btn__1 {
        margin: 0 2rem;
        padding: 6px;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    #spotify .sidemenu .btn__2 {
        margin: 0 2rem;
        padding: 6px;
        margin-top: 0.3rem;
        font-size: 0.9rem;
    }

	.logo{
        font-size: 1.2rem;
    }
    #spotify .main--content {
        margin-top: 1rem;
    }

    #spotify h1 {
        font-size: 1.9rem;
    }
    #spotify h2 {
        font-size: 1.5rem;
    }
    #spotify h3 {
        font-size: 1.3rem;
    }
    #spotify .container {
        padding: 1rem;
        padding-block: 2.5rem;
        margin-right: 1rem;
    }

    #spotify .intro--flex--container {
        flex-direction: column;
        align-items: start;
        gap: 0;
        margin-top: 1rem;
    }
    
    #spotify .skills {
        gap: 1rem;
    }
    #spotify .big-skill {
        flex: 1 1 175px;
        max-width: 100%;
    }

    #spotify .certificates {
        gap: 1rem;
    }
    #spotify .certificate {
        flex: 1 1 175px;
        max-width: 100%;
    }

    
    #spotify .contact {
        margin-top: 50px; /* Puedes ajustar el margen según sea necesario */
    }
    
    #spotify .contact--cards-container {
        margin-left: 0; /* Fija el margen izquierdo del contenedor */
    }
    
    #spotify .contact--cards {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    #spotify .contact--card {
        display: flex;
        flex-direction: row;
        min-width: 245px;
        margin-left: 0;
        padding: 0.8rem;
    }
    
    #spotify .contact--card p {
        font-size: 0.8rem;
        margin-left: 0.5rem;
        margin-top: 2px;
    }
    
    #spotify .contact--card i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    #spotify .container-resume {
        display: flex;
        flex-direction: column; /* Cambiado de row a column */
        gap: 2rem;
    }

    #spotify .title {
        margin-bottom: 1rem;
    }

}


/**//**//**//**//**//*         entre 321px y 406px          *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media only screen and (min-width: 321px) and (max-width: 406px) {

	#unsupported-message {
		display: none !important;
	}

    #mobile-nav {
        display: flex;
    }
    #desktop-nav {
        display: none !important;
    }

    #profile {
        display: none !important;
    }
    /*
    #profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    */

    #spotify .main {
        padding: 0;
        display: block;
    }
    #spotify .sidemenu {
        position: relative;
        margin: auto;
        border-right: none;
        border-left: none;
        margin-top: -5.5rem;
        padding: 1rem;
    }
    #spotify .avatar {
        align-self: center;
        width: 200px; /* Ajusta el ancho al 100% del contenedor */
        height: 200px; /* Ajusta la altura al 100% del contenedor */
    }
    #spotify .avatar img {
        width: 100%; /* Ajusta el ancho al 100% del contenedor */
        height: 100%; /* Ajusta la altura al 100% del contenedor */
    }
    #spotify .name {
        margin-top: 1rem;
    }
    #spotify .social--icons {
        margin-top: 0.8rem;
    }
    #spotify .sidemenu .btn__1 {
        margin: 0 2rem;
        padding: 6px;
        margin-top: 1rem;
    }
    #spotify .sidemenu .btn__2 {
        margin: 0 2rem;
        padding: 6px;
        margin-top: 0.5rem;
    }


	.logo{
        font-size: 1.5rem;
    }

    #spotify .main--content {
        margin-top: 1rem;
    }
    #spotify h1 {
        font-size: 1.9rem;
    }
    #spotify h2 {
        font-size: 1.5rem;
    }
    #spotify h3 {
        font-size: 1.3rem;
    }
    #spotify .container {
        padding: 1rem;
        padding-block: 2.5rem;
        margin-right: 1rem;
    }

    #spotify .intro--flex--container {
        flex-direction: column;
        align-items: start;
        gap: 0;
        margin-top: 1rem;
    }
    
    #spotify .skills {
        gap: 1rem;
    }
    #spotify .big-skill {
        flex: 1 1 175px;
        max-width: 100%;
    }

    #spotify .certificates {
        gap: 1rem;
    }
    #spotify .certificate {
        flex: 1 1 175px;
        max-width: 100%;
    }

    
    #spotify .contact {
        margin-top: 50px; /* Puedes ajustar el margen según sea necesario */
    }
    
    #spotify .contact--cards-container {
        margin-left: 0; /* Fija el margen izquierdo del contenedor */
    }
    
    #spotify .contact--cards {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    #spotify .contact--card {
        display: flex;
        flex-direction: row;
        min-width: 245px;
        margin-left: 0;
        padding: 0.8rem;
    }
    
    #spotify .contact--card p {
        font-size: 0.92rem;
        margin-left: 0.5rem;
        margin-top: 2px;
    }
    
    #spotify .contact--card i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    #spotify .container-resume {
        display: flex;
        flex-direction: column; /* Cambiado de row a column */
        gap: 2rem;
    }

    #spotify .title {
        margin-bottom: 1rem;
    }

}


/**//**//**//**//**//*         entre 407px y 499px          *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media only screen and (min-width: 407px) and (max-width: 489px) {

	#unsupported-message {
		display: none !important;
	}

    #mobile-nav {
        display: flex;
    }
    #desktop-nav {
        display: none !important;
    }

    #profile {
        display: none !important;
    }
    /*
    #profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    */

    #spotify .main {
        padding: 0;
        display: block;
    }
    #spotify .sidemenu {
        position: relative;
        margin: auto;
        border-right: none;
        border-left: none;
        margin-top: -2.15rem;
        padding: 1rem;
    }
    #spotify .avatar img {
        width: 100%; /* Ajusta el ancho al 100% del contenedor */
        height: 115%; /* Ajusta la altura al 100% del contenedor */
    }

	.logo{
        font-size: 1.5rem;
    }
    #spotify .main--content {
        margin-top: 1rem;
    }

    #spotify h1 {
        font-size: 1.9rem;
    }
    #spotify h2 {
        font-size: 1.5rem;
    }
    #spotify h3 {
        font-size: 1rem;
    }
    #spotify p {
        font-size: 0.9rem;
    }
    #spotify .container {
        padding: 1rem;
        margin-right: 1rem;
    }

    #spotify .intro--flex--container {
        flex-direction: column;
        align-items: start;
        gap: 0;
        margin-top: 1rem;
    }
    
    #spotify .skills {
        gap: 1rem;
    }
    #spotify .big-skill {
        flex: 1 1 175px;
        max-width: 100%;
    }

    #spotify .certificates {
        gap: 1rem;
    }
    #spotify .certificate,
	#spotify .certificate-no-disp {
        flex: 1 1 175px;
        max-width: 100%;
    }

    
    #spotify .contact {
        margin-top: 50px; /* Puedes ajustar el margen según sea necesario */
    }
    #spotify .contact--cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    #spotify .contact--card {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        min-width: 270px; /* o el valor que mejor se ajuste a tu diseño */
    }
    
    #spotify .contact--card:last-child {
        margin-right: 0; /* Elimina el margen derecho del último elemento */
    }
    
    #spotify .contact--card p {
        font-size: 1rem;
        margin-left: 0.5rem;
        margin-top: -1px;
    }
    
    #spotify .contact--card i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    #spotify .container-resume {
        display: flex;
        flex-direction: column; /* Cambiado de row a column */
        gap: 2rem;
    }

    #spotify .views {
        padding-top: 2rem;
        overflow: hidden;
    }

}


/**//**//**//**//**//*         entre 407px y 499px          *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media only screen and (min-width: 490px) and (max-width: 520px) {

	#unsupported-message {
		display: none !important;
	}

    #mobile-nav {
        display: flex;
    }
    #desktop-nav {
        display: none !important;
    }

    #profile {
        display: none !important;
    }
    /*
    #profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    */

    #spotify .main {
        padding: 0;
        display: block;
    }
    #spotify .sidemenu {
        position: relative;
        margin: auto;
        border-right: none;
        border-left: none;
        margin-top: -2.15rem;
        padding: 1rem;
    }
    #spotify .avatar img {
        width: 100%; /* Ajusta el ancho al 100% del contenedor */
        height: 115%; /* Ajusta la altura al 100% del contenedor */
    }

	.logo{
        font-size: 1.5rem;
    }

    #spotify h1 {
        font-size: 1.9rem;
    }
    #spotify h2 {
        font-size: 1.5rem;
    }
    #spotify h3 {
        font-size: 1rem;
    }
    #spotify p {
        font-size: 0.9rem;
    }
    #spotify .container {
        padding: 1rem;
        margin-right: 1rem;
    }

    #spotify .intro--flex--container {
        flex-direction: column;
        align-items: start;
        gap: 0;
        margin-top: 1rem;
    }
    
    #spotify .skills {
        gap: 1rem;
    }
    #spotify .big-skill {
        flex: 1 1 175px;
        max-width: 100%;
    }

    #spotify .certificates {
        gap: 1rem;
    }
    #spotify .certificate,
    #spotify .certificate-no-disp {
        flex: 1 1 175px;
        max-width: 100%;
    }

    
    #spotify .contact {
        margin-top: 50px; /* Puedes ajustar el margen según sea necesario */
    }
    #spotify .contact--cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    #spotify .contact--card {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        min-width: 270px; /* o el valor que mejor se ajuste a tu diseño */
    }
    
    #spotify .contact--card:last-child {
        margin-right: 0; /* Elimina el margen derecho del último elemento */
    }
    
    #spotify .contact--card p {
        font-size: 1rem;
        margin-left: 0.5rem;
        margin-top: -1px;
    }
    
    #spotify .contact--card i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    #spotify .views {
        padding-top: 2rem;
        overflow: hidden;
    }
}


/**//**//**//**//**//*         entre 500 y 849px          *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media only screen and (min-width: 521px) and (max-width: 849px) {

	#unsupported-message {
		display: none !important;
	}

    #mobile-nav {
        display: flex;
    }
    #desktop-nav {
        display: none !important;
    }

    #profile {
        display: none !important;
    }
    /*
    #profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    */

    #spotify .main {
        padding: 0;
        display: block;
    }
    #spotify .sidemenu {
        position: relative;
        margin: auto;
        border-right: none;
        border-left: none;
        margin-top: -2.15rem;
        padding: 1rem;
    }
    #spotify .avatar img {
        width: 100%; /* Ajusta el ancho al 100% del contenedor */
        height: 115%; /* Ajusta la altura al 100% del contenedor */
    }

	.logo{
        font-size: 1.5rem;
    }

    #spotify h1 {
        font-size: 3rem;
    }
    #spotify h2 {
        font-size: 2rem;
    }
    #spotify h3 {
        font-size: 1.2rem;
    }
    #spotify p {
        font-size: 1rem;
    }
    #spotify .container {
        padding: 1rem;
        margin-right: 1rem;
    }

    #spotify .intro--flex--container {
        flex-direction: column;
        align-items: start;
        gap: 0;
        margin-top: 1rem;
    }
    
    #spotify .skills {
        gap: 1rem;
    }
    #spotify .big-skill {
        flex: 1 1 195px;
        max-width: 50%;
    }

    #spotify .certificates {
        gap: 1rem;
    }
    #spotify .certificate,
    #spotify .certificate-no-disp {
        flex: 1 1 175px;
        max-width: 50%;
    }

    #spotify .views {
        padding-top: 2rem;
        overflow: hidden;
    }
}



/**//**//**//**//**//*         entre 850 y 1199px         *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media only screen and (min-width: 850px) and (max-width: 1199px) {

	#unsupported-message {
		display: none !important;
	}

    /* QUITAMOS EL MOBILE-NAV */
    #mobile-nav {
        display: none;
    }

    #profile {
        margin-top: 140px; /* Ajusta el valor según la altura de tu navbar */
    }
    /*
    #profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    */

    .nav-links{
        gap: 1.2rem;
        font-size: 1.2rem;
    }
    .logo{
        font-size: 1.5rem;
    }

    #profile {
        gap: 7.5%;
    }

    #profile .section__pic-container {
        height: 350px;
    }

    #profile .section__text__p2 {
        font-size: 1.4rem;
    }

    #profile .title {
        font-size: 2.5rem;
    }
    

    .btn{
        font-size: 0.77rem;
    }

    #spotify .sidemenu h3{
        font-size: 1.4rem;
    }
    
    #spotify .skills {
        gap: 1rem;
    }
    #spotify .big-skill {
        flex: 1 1 180px;
        max-width: 50%;
    }

    #spotify .certificates {
        gap: 1rem;
    }
    #spotify .certificate,
	#spotify .certificate-no-disp {
        flex: 1 1 180px; /* Crece automáticamente, pero con un ancho mínimo de 200px */
        max-width: 50%; /* Ancho máximo de 200px */
    }


    #spotify .contact--card p {
        font-size: 1.2rem;
    }
    
    #spotify h3 {
        font-size: 1.11rem;
    }
    #spotify p {
        font-size: 0.9rem;
    }
}


/**//**//**//**//**//*         por encima de 1200px       *//**//**//**//**//**//**/
/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/
@media screen and (min-width: 1200px) {

	/*Añadido hoy*/
	/**/
	#unsupported-message {
		display: none !important;
	}

    /* QUITAMOS EL MOBILE-NAV */
    #mobile-nav {
        display: none;
    }

    #profile {
        margin-top: 140px; /* Ajusta el valor según la altura de tu navbar */
    }
    /*profile .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }*/


    #spotify h1 {
        font-size: 4rem;
    }
    #spotify h2 {
        font-size: 3rem;
    }
    #spotify h3 {
        font-size: 1.2rem;
    }
}

