.style-switcher{
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius:  5px;
    transition:  all 0.3s ease;
    transform: translateX(100%);
   
}
.style-switcher.open{
    transform: translateX(-25px);
}

.style-switcher .s-icon{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.style-switcher .s-icon i{
    line-height: 40px;
}
.style-switcher .style-switcher-toggler{
    top: 0;
}
.style-switcher .day-night{
    top: 55px;
}

.style-switcher h4{
    margin:  0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.style-switcher .colors{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.style-switcher .colors span{
    display: inline-block;
    height: 30px;
    width: 30px;
border-radius: 50%;
}

.style-switcher .color-1{
    background: #ec1839;
}
.style-switcher .color-2{
    background: #fa5b0f;
}
.style-switcher .color-3{
    background: #37b182;
}
.style-switcher .color-4{
    background: #1854b4;
}
.style-switcher .color-5{
    background: #f021b2;
}



/*===== Estilos modal Proyectos======*/

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.7); 
}

.modal-content {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-black-100);
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    border-radius: 20px;
      
}

.close-button {
    color: #aaa;
    align-self: flex-end;
    font-size: 30px;
    font-weight: bold;
    margin-right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: var(--skin-color);
    text-decoration: none;
    cursor: pointer;
}

.pestaña{
    background-color: var(--bg-black-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px ;
    gap: 10px;
}

.pestaña h3{
font-size: 28px;
margin-bottom: 10px;
color: var(--text-black-900);
text-transform: capitalize;
}

.pestaña p{
    font-size:  16px;
    line-height: 25px;
    color: var(--text-black-700);
    font-weight: 700;
    margin-bottom: 10px;
    width: 90%;
   
}



/*======  Estilos para carousel =====*/

/* Contenedor del carrusel */
.carousel {
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

/* Contenedor de las imágenes */
.carousel-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}

/* Slide de imágenes */
.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Imágenes */
.carousel-slide img {
    width: 100%;
    height: auto;
    border: none;
}

/* Botones */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

#prev-btn {
    left: 10px;
}

#next-btn {
    right: 10px;
}

.carousel button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
/*======  Termina Estilos para carousel =====*/



/*======  Inicia  Estilos para skills =====*/
/* Skill*/
.skills {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.grid-container {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.icon-skill{
    height: 60px;
    width: 60px;
    border-radius:  50%;
    display: block;
    margin:  0 auto 30px;
    text-align: center;
    transition:  all 0.3s ease;
    
    
}
.icon-skill .fa-brands{
    font-size: 40px;
    line-height: 60px ;
    color:  var(--skin-color);
    transition:  all 0.3s ease;
    
    
}
.icon-skill:hover {
    background-color: var(--skin-color);
   
}

.icon-skill .fa-brands:hover{
    font-size:  25px;
    color: #ffffff;
}

/*======  Termina Estilos para skills =====*/





