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

/* ----- VARIABLES ----- */
:root{
    --body-color: linear-gradient(180deg, rgb(15, 15, 15), rgb(25, 25, 30)); /* Degradado negro con gris azulado */
    --color-white: rgb(247, 243, 243); /* Color blanco para el texto */
    
    --text-color-second: rgb(181, 194, 137); /* Un color claro que contraste bien con el negro */
    --text-color-third: rgb(30, 159, 171); /* Un color brillante que contraste bien, como un verde azulado */
    
    --first-color: rgb(0, 74, 247); /* Un color vibrante que se ve bien sobre negro */
    --first-color-hover: rgb(40, 91, 212); /* Un color más claro para hover que contrasta bien */
    
    --second-color: rgb(148, 75, 115); /* Un azul brillante que se ve bien sobre negro */
    --third-color: rgb(192, 166, 49); /* Un color dorado que contrasta bien con el negro */
    --first-shadow-color: rgba(255, 255, 255, 0.1); /* Sombra clara para dar profundidad */

}

/* ----- BASE ----- */
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    max-width: 100vw; /* Limita el ancho máximo al viewport */
    overflow-x: hidden; /* Prevenir desbordes horizontales */
}

/* ----- SMOOTH SCROLL ----- */
html{
    scroll-behavior: smooth;
}

/* ----- CHANGE THE SCROLL BAR DESIGN ----- */
::-webkit-scrollbar{
    width: 10px;
    border-radius: 25px;
}
::-webkit-scrollbar-track{
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover{
    background: #bbb;
}


/* ---##-- REUSABLE CSS --##--- */

/* ----- GLOBAL BUTTON DESIGN ----- */


.btn {
    font-weight: 500;
    padding: 12px 20px;
    color: var(--color-white);
    background: #c4302b;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s;
    box-sizing: border-box;
    max-width: 100%; /* Asegura que el botón no exceda el ancho de su contenedor */
    width: auto; /* Se adapta al contenido sin causar desbordamiento */
    white-space: nowrap; /* Evita que el texto se divida */
}

.btn>i{
    margin-left: 10px;
}
.btn:hover{
    background: var(--second-color);
    color: var(--color-white);
}

/* ----- GLOBAL ICONS DESIGN ----- */
i{
    font-size: 20px;
}

/* ------- BASE -------- */
body{
    background: var(--body-color);
    overflow-y: hidden; /* Elimina el desplazamiento vertical */

}
.container{
    width: 100%;
    position: relative;
}

/* ----- NAVIGATION BAR ----- */
nav{
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    line-height: 90px;
    background: var(--body-color);
    padding-inline: clamp(16px, 5vw, 80px); /* Se adapta automáticamente al tamaño de pantalla */
    transition: .3s;
    z-index: 100;
}
.nav-logo{
   position: relative;
}
.nav-name {
    font-size: clamp(16px, 4vw, 30px); /* Ajusta el tamaño del texto de forma responsiva */
    font-weight: 600;
    color: var(--text-color-third);
    white-space: nowrap; /* Previene que el texto se divida en varias líneas */
    overflow: hidden; /* Evita desbordamiento */
    text-overflow: ellipsis; /* Añade puntos suspensivos si el texto es muy largo */
}
.nav-logo span{
    position: absolute;
    top: -15px;
    right: -20px;
    font-size: 5em;
    color: var(--text-color-second);
}
.nav-menu, .nav_menu_list{
    display: flex;
}
.nav-menu .nav_list{
    list-style: none;
    position: relative;
}
.nav-link {
    text-decoration: none;
    color: var(--text-color-third);
    font-weight: 500;
    padding: 0 10px; /* Reduce el padding horizontal */
    margin: 0; /* Elimina márgenes para evitar acumulación */
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
    max-width: calc(100% - 20px); /* Evita que cada enlace exceda el contenedor */
    overflow: hidden; /* Oculta contenido sobrante */
    text-overflow: ellipsis; /* Agrega puntos suspensivos si es necesario */
}

.nav-menu-btn{
    display: none;
    color: var(--color-white);
}
.nav-menu-btn i{
    font-size: 30px;
    cursor: pointer;
}


/* Estilo para el botón de Spotify */





.spotify-button {
    background-color: #1DB954; /* Color verde de Spotify */
    color: white; /* Color del texto */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el texto y el ícono */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.spotify-button:hover {
    background-color: #1ed760; /* Color verde más claro */
}

.spotify-button i {
    font-size: 20px; /* Tamaño del ícono */
}


/* Estilo para el botón de cierre */
.close-btn {
    display: none;
    position: absolute;
    top: 80px; /* Mueve la "X" más abajo si es necesario */
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    cursor: pointer;
}



/* Estilo para cuando el menú está abierto */
.nav-menu.responsive .close-btn {
    display: block; /* Mostrar la X cuando el menú es abierto */
}


.active-link{
    position: relative;
    color: var(--first-color);
    transition: .3;
}
.active-link::after{
    content: '';
    position: absolute;
    left: 45%;
    bottom: -20px;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--second-color);
    border-radius: 50%;
}

/* ----- WHATSAPP BUTTOMN ----- */

/* Estilo para el botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 90px; /* Espaciado desde la parte inferior */
    right: 40px;  /* Espaciado desde la parte derecha */
    background-color: #25D366; /* Color de fondo de WhatsApp */
    border-radius: 50%; /* Forma circular */
    width: 60px; /* Ancho del botón */
    height: 60px; /* Altura del botón (igual que el ancho para que sea un círculo) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para efecto flotante */
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 30px; /* Tamaño del icono */
    color: white; /* Color del icono */
    text-decoration: none; /* Elimina subrayado del enlace */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    animation: pulse 1.5s infinite; /* Animación de pulsación */
}

/* Animación de pulsación */
@keyframes pulse {
    0% {
        transform: scale(1);  /* Tamaño original */
    }
    50% {
        transform: scale(1.1);  /* Aumenta el tamaño */
    }
    100% {
        transform: scale(1);  /* Vuelve al tamaño original */
    }
}



/* Efecto hover (cuando el usuario pasa el mouse por encima) */
.whatsapp-btn:hover {
    background-color: #128C7E;  /* Cambia el color de fondo al pasar el mouse */
    transform: scale(1.1);  /* Aumenta ligeramente el tamaño del botón */
}

/* Estilo para el icono dentro del botón */
.whatsapp-btn i {
    font-size: 34px;  /* Ajusta el tamaño del icono */
}




/* ----- WRAPPER DESIGN ----- */
.wrapper{
    padding-inline: 10vw;
}

/* ----- FEATURED BOX ----- */
.featured-box{
    position: relative;
    display: flex;
    height: 100vh;
    min-height: 700px;
}

/* ----- FEATURED TEXT BOX ----- */
.featured-text{
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}
.featured-text-card span{
    background: var(--third-color);
    color: var(--color-white);
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 5px;
}
.featured-name{
    font-size: 50px;
    font-weight: 600;
    color: var(--text-color-second);
    margin-block: 20px;
}
.typedText{
    text-transform: capitalize;
    color: var(--text-color-third);
}
.featured-text-info{
    font-size: 15px;
    margin-bottom: 30px;
    color: var(--text-color-second);
}
.featured-text-btn{
    display: flex;
    gap: 20px;
}
.featured-text-btn>.blue-btn{
    background: var(--first-color);
    color: var(--color-white);
}
.featured-text-btn>.blue-btn:hover{
    background: var(--first-color-hover);
}
.social_icons{
    display: flex;
    margin-top: 3em;
    gap: 30px;
    color: var(--color-white);
}
.icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 0px rgb(255, 255, 255);
    cursor:crosshair;
    color:azure;
    
}
.icon:hover{
    color: var(--third-color);
}

/* ----- FEATURED IMAGE BOX ----- */
.featured-image {
    display: flex;
    justify-content: right; /* Asegura que la imagen se centre horizontalmente */
    align-items: center; /* Centra verticalmente */
    min-height: 70vh; /* Mantiene una altura proporcional */
    width: 100%; /* Usa todo el ancho disponible */
    padding: 0 16px; /* Agrega espacio en los lados para evitar desbordes */
    box-sizing: border-box; /* Incluye padding en el ancho total */
    overflow: hidden; /* Oculta contenido que pueda salir del contenedor */
}

.image{
    margin: auto 0;
    width: 380px;
    height: 380px;
    border-radius: 55% 45% 55% 45%;
    overflow: hidden;
    animation: imgFloat 7s ease-in-out infinite;
}
.image img{
    width: 380px;
    height: 380px;
    object-fit: cover;
}
@keyframes imgFloat {
    50%{
        transform: translateY(10px);
        border-radius: 45% 55% 45% 55%;
    }
}
.scroll-btn{
   position: absolute;
   bottom: 0;
   left: 50%;
   translate: -50%;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 150px;
   height: 50px;
   gap: 5px;
   text-decoration: none;
   color: var(--color-white );
   background: var(--second-color);
   border-radius: 30px;
   box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.scroll-btn i{
    font-size: 20px;
}

/* ----- MAIN BOX ----- */
.section{
    padding-block: 5em;
}
.row{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}
.col{
    display: flex;
    width: 50%;
}

/* -- ## --- RESUABLE CSS -- ## -- */
.top-header{
    text-align: center;
    margin-bottom: 5em;
}
.top-header h1{
    font-weight: 600;
    color: var(--text-color-second);
    margin-bottom: 10px;
}
.top-header span{
    color: #999;
}
h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-second);
    margin-bottom: 15px;
}

/* ----- ABOUT INFO ----- */
.about-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px 20px 20px;
    width: 100%;
    background: var(--color-white);
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    border-radius: 20px;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
}

.about-info h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 22px;
}

.about-info p {
    text-align: justify;
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
}

.read-more-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
    display: none;
    align-self: flex-end;
}

.read-more-btn:hover {
    background-color: #0056b3;
}

#about .about-text {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

#about .about-text.expanded {
    max-height:max-content;
}

/* Responsive styles */



/* ----- ABOUT / SKILLS BOX ----- */
.skills-box{
    margin: 10px;
}
.skills-header{
    margin-bottom: 30px;
}
.skills-list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.skills-list span{
    font-size: 14px;
    background: var(--first-color);
    color: var(--color-white);
    padding: 2px 10px;
    border-radius: 5px;
}

/* ----- PROJECTS BOX ----- */
.project-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.project-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    height: 250px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;
}
.project-box>i{
    font-size: 50px;
    color: #00B5E7;
    margin-bottom: 25px;
}
.project-box label{
    font-size: 15px;
    padding: 10px;
    color: #777;
}
.project-box::after, .contact-info::after{
    content: "";
    position: absolute;
    bottom: -100%;
    background: var(--second-color);
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 1;
}
.project-box:hover.project-box::after,
.contact-info:hover.contact-info::after{
    bottom: 0;
}
.project-box:hover.project-box i,
.project-box:hover.project-box>h3,
.project-box:hover.project-box>label{
    color: var(--color-white);
    z-index: 2;
}


/* ----- VIDEO SECTION ----- */

/* Contenedor general */
.video-section {
    background: url('img/fondomusica.jpg') no-repeat center center/cover;
    padding: 40px;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.video-title {
    margin-bottom: 20px;
    font-size: 2rem;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}



/* ----- MUSIC SECTION ----- */
/* Sección general */
/* General */


.music-section {
    padding: 40px 20px;
    max-width: 90%;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid white;
    color: white;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
}

.section-title {
    font-size: 26px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.song-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
}

.nav-btn {
    font-size: 20px;
    padding: 12px;
    background: var(--second-color);
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.2);
    background: rgb(177, 24, 24);
}

#prev-btn {
    left: -10px;
}

#next-btn {
    right: -10px;
}

.song {
    text-align: center;
    flex: 1 1 auto;
    max-width: 300px;
}

.song-image-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid white;
    transition: transform 0.3s ease;
}

.song-image-container:hover {
    transform: scale(1.05);
}

#song-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-overlay:hover {
    opacity: 1;
}

#song-title {
    margin: 15px 0;
    font-size: 20px;
}

#audio-player {
    width: 90%;
    max-width: 500px;
    background-color: #1E1E1E; /* Fondo oscuro elegante */
    color: white; /* Texto claro para buen contraste */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra para efecto flotante */
    padding: none; /* Espaciado interno */
    flex-direction: column; /* Acomoda los elementos verticalmente */
    align-items: center; /* Centra los elementos */
    font-family: 'Arial', sans-serif; /* Fuente legible */
}

/* Estilo para botones del reproductor */
#audio-player button {
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    border: none;
    border-radius: 50%; /* Botones circulares */
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s; /* Transición suave */
}

#audio-player button:hover {
    background-color: #1EBE5F; /* Color más oscuro al pasar el cursor */
    transform: scale(1.1); /* Efecto de zoom */
}

/* Barra de progreso */
#audio-player progress {
    width: 100%;
    height: 8px;
    border-radius: 5px; /* Bordes redondeados */
    appearance: none; /* Elimina el estilo predeterminado del navegador */
    background-color: #333; /* Fondo oscuro */
    overflow: hidden;
}

#audio-player progress::-webkit-progress-bar {
    background-color: #333; /* Fondo para navegadores WebKit */
}

#audio-player progress::-webkit-progress-value {
    background-color: #25D366; /* Color de progreso */
    border-radius: 5px; /* Mantener bordes redondeados */
}

#audio-player progress::-moz-progress-bar {
    background-color: #25D366; /* Progreso para Firefox */
}

/* Texto adicional */
#audio-player p {
    margin: 10px 0 0 0; /* Espaciado */
    font-size: 14px; /* Tamaño de fuente más pequeño */
    color: #bbb; /* Color gris claro */
}

.song h2 {
    margin-top: 10px;
    font-size: 18px;
    color: var(--third-color);
}



    
    
/* ----- CONTACT BOX ----- */
.contact-info{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    height: 315px;
    background: var(--second-color);
    border-radius: 10px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;
}
.contact-info>h2{
    color: var(--color-white);
    margin-bottom: 20px;
}
.contact-info>p{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-block: 5px;
}
.contact-info p>i{
    font-size: 18px;
}
.contact-info::after{
    background: var(--color-white);
}
.contact-info:hover.contact-info h2,
.contact-info:hover.contact-info p,
.contact-info:hover.contact-info i{
    color: #777;
    z-index: 2;
}

/* ----- CONTACT FORM ----- */
.form-control {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contenedor de campos de entrada */
.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Estilo de los campos de entrada */
.input-field, textarea {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

textarea {
    height: 150px;
    resize: none;
}

/* Efecto de foco en los campos */
.input-field:focus, 
textarea:focus {
    border-color: #00b5e7;
    box-shadow: 0 0 5px rgba(0, 181, 231, 0.5);
    outline: none;
}

/* Botón de enviar */
.form-button>.btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--second-color, #007BFF);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.form-button>.btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.form-button i {
    margin-left: 8px;
    font-size: 20px;
}



/* ----- FOOTER BOX ----- */
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    background: var(--second-color);
    padding-block: 40px 60px;
}
.top-footer p{
    font-size: 25px;
    font-weight: 600;
    color: var(--color-white);
}
.middle-footer .footer-menu{
    display: flex;
}
.footer_menu_list{
    list-style: none;
}
.footer_menu_list a{
    text-decoration: none;
    color: var(--third-color);
    font-weight: 500;
    margin-inline: 20px;
}
.footer-social-icons{
    display: flex;
    gap: 30px;   
}
.bottom-footer{
    font-size: 14px;
    margin-top: 10px;
    color: var(--color-white);
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .form-control {
        width: 100%; /* Asegura que ocupe todo el ancho del contenedor */
        padding: 12px; /* Reduce el padding para dispositivos pequeños */
        box-sizing: border-box; /* Asegura que el padding no afecte el ancho */
    }

    .form-inputs {
        display: flex;
        flex-direction: column; /* Alineación vertical */
        gap: 8px; /* Espaciado más adecuado */
    }

    .input-field, textarea {
        font-size: 13px; /* Ajusta el tamaño del texto */
        width: 100%; /* Ocupa todo el ancho disponible */
    }

    .form-button>.btn {
        font-size: 15px; /* Reduce ligeramente el tamaño del botón */
        padding: 10px; /* Ajusta el tamaño para una mejor experiencia */
    }
}


/* Responsividad */
@media (max-width: 768px) {
    .slider-title {
        font-size: 1.3rem; /* Ajusta ligeramente el tamaño del título */
        margin-bottom: 10px; /* Añade espaciado para mejor visualización */
    }

    .video-item iframe {
        width: 100%; /* Ocupa todo el ancho del contenedor */
        height: auto; /* Ajusta la altura proporcionalmente */
        aspect-ratio: 16 / 9; /* Asegura un aspecto adecuado */
    }
}



@media screen and (max-width: 768px) {
    .about-info {
        padding: 15px; /* Ajusta el espaciado para dispositivos pequeños */
    }

    .about-info p {
        font-size: 13px; /* Ajusta el tamaño del texto */
        line-height: 1.6; /* Mejora la legibilidad */
    }

    .read-more-btn {
        font-size: 11px; /* Reduce ligeramente el tamaño */
        padding: 5px 10px; /* Mejora la interacción en pantallas táctiles */
    }
}


/* Responsividad para pantallas pequeñas */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 10px; /* Reduce el espacio inferior */
        right: 10px; /* Ajusta la posición lateral */
        width: 50px; /* Asegura proporciones circulares */
        height: 50px; /* Asegura proporciones circulares */
        padding: 0; /* Elimina padding que distorsiona la forma */
        border-radius: 50%; /* Garantiza que sea circular */
    }

    .whatsapp-btn i {
        font-size: 24px; /* Ajusta el tamaño del icono */
    }
}


/* Responsividad */
@media (max-width: 768px) {
    .song-container {
        display: flex;
        flex-direction: column; /* Alineación vertical */
        gap: 8px; /* Espaciado adecuado */
    }

    .nav-btn {
        font-size: 20px; /* Ajusta el tamaño del botón */
        padding: 6px; /* Reduce el padding */
    }

    #prev-btn {
        left: 8px; /* Ajusta la posición */
    }

    #next-btn {
        right: 8px; /* Ajusta la posición */
    }

    .song-image-container {
        width: 150px; /* Reduce el tamaño */
        height: 150px; /* Mantiene proporciones cuadradas */
    }

    #song-title {
        font-size: 16px; /* Ajusta el tamaño del texto */
        text-align: center; /* Centra el texto */
    }
}


/* ----- MEDIA QUERY == 1024px / RESPONSIVE ----- */
@media (max-width: 1024px) {
    .featured-text {
        padding: 0 15px; /* Más espaciado lateral para mayor legibilidad */
    }
    .image, .image img {
        max-width: 100%; /* Ajusta las imágenes al contenedor */
        height: auto;    /* Mantén las proporciones */
    }
}


/* ----- MEDIA QUERY == 900px / RESPONSIVE ----- */
@media only screen and (max-width: 900px) {
    .nav-button{
        display: none;
    }
    .nav-menu.responsive{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999;
        }
    .nav-menu{
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        width: 100%;
        min-height: 450px;
        height: 90vh;
        transition: .3s;
    }
    .nav_menu_list{
        flex-direction: column;
    }
    .nav-menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .featured-box{
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }
    .featured-text{
        width: 100%;
        order: 2;
        justify-content: center;
        align-content: flex-start;
        min-height: 60vh;
    }
    .social_icons{
        margin-top: 2em;
    }
    .featured-image{
        order: 1;
        justify-content: center;
        min-height: 150px;
        width: 100%;
        margin-top: 65px;
    }
    .image, .image img{
        width: 150px;
        height: 150px;
    }
    .row{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }
    .col{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .about-info, .contact-info{
        width: 100%;
    }
    .project-container{
        justify-content: center;
    }
    .project-box{
        width: 80%;
    }

}

/* ----- MEDIA QUERY == 540px / RESPONSIVE ----- */

@media only screen and (max-width: 540px){
    .featured-name{
        font-size: 40px;
    }
    .project-box{
        width: 100%;
    }
    .form-inputs{
        flex-direction: column;
    }
    .input-field{
        width: 100%;
    }
}




/* Para dispositivos muy pequeños (por ejemplo, teléfonos en orientación vertical) */
@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 10px; /* Ajusta la posición */
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .whatsapp-btn i {
        font-size: 18px; /* Ajusta el tamaño del icono */
    }
    .input-field, textarea {
        font-size: 12px; /* Reduce el tamaño de los textos */
    }
    .read-more-btn {
        font-size: 10px; /* Ajusta el tamaño del botón */
    }
}



