.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%);
}
.aside {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px; /* Ajuste a largura conforme necessário */
    height: 100%;
    background: var(--bg-black-100); /* Use suas variáveis de cor */
    border-right: 1px solid var(--bg-black-50);
    padding: 30px;
    z-index: 10; /* Garante que fique acima do conteúdo */
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%); /* Esconde inicialmente em telas menores */
}

.aside.open {
    transform: translateX(0); /* Mostra o aside */
}

.aside-toggler {
    /* Estilos para o botão hamburguer */
    position: fixed;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: block; /* Garante que apareça em telas menores */
}

/* Estilos para as barras do hamburguer */
.aside-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-black-900); /* Sua cor de texto */
    margin: 6px 0;
    transition: all 0.3s ease;
}

.aside-toggler, .aside-toggler.open span {

    /* Estilos para as barras do hamburguer quando o menu está aberto */
    background-color:var(--skin-color); /* Sua cor de texto */
   
}
.aside-toggler.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); /* Rotaciona a primeira barra */
}
.aside-toggler.open span:nth-child(2) {
    opacity: 0; /* Esconde a segunda barra */
}
.aside-toggler.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); /* Rotaciona a terceira barra */
}

/* Oculta o toggler em telas maiores, se desejar */
@media (min-width: 1463px) { /* Ajuste o breakpoint conforme necessário */
    .aside-toggler {
        display: none[];
    }
    .aside {
        transform: translateX(0); /* Mostra o aside em telas maiores */
    }
    .section {
        padding-left: 0px; /* Isso dá espaço para o aside fixo */
    }
    .aside {
        width: 300px; /* Garante a largura do aside em desktop */
        transform: translateX(0); /* Garante que o aside esteja visível */
    }
    .home  .container 
    {
        margin:100px;
    }
    


    
    /* Opcional: Para mobile, se os itens ficarem muito grandes, você pode ajustar */
    @media (max-width: 575px) {
    .logosocias a {
        font-size: 14px; /* Diminui a fonte do texto para telas muito pequenas */
        padding: 8px;
    }
    .logosocias a span,
    .logosocias a i {
        font-size: 25px; /* Diminui o ícone para telas muito pequenas */
    }
}

 .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-700);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    transition: all 0.3s ease;
    border-radius: 50%;
    cursor: pointer;
}
.style-switcher .s-icon i 
{
    line-height: 40px;

}
.style-switcher .style-switcher-toggler
{
    transform: translateX(50%);
    top: 0;

}
.style-switcher .day-night 
{
    transform: translateX(50%);
    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%;
    cursor: pointer;
}
.style-switcher .color-1 
{
    background: #e70023;
}
.style-switcher .color-2
{
background-color:  #28fc39;
}
.style-switcher .color-3
{
background-color:  #b9af3ff9;
}
.style-switcher .color-4
{
    background: #5d80d7;
}
.style-switcher .color-5
{
    background: #ff49c8;
}}