:root{
    --texto: #343434;
    --amarelo: #ffd002;
}

*{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body{
    overflow-x: hidden;
}
/* MENU */
header{
    position: relative;
    transition: all 1s;
}
.coluna-flexivel{
    transition: all 1s;
    flex: 1; /* OCUPA O RESTO */
    height: 100vh;
    position: relative;
}
.coluna-menu{
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 50px 0;
    transition: all 1s;
    background-color: white;
}
header nav{
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    gap: 50px;
}
header ul{
    list-style-type: none;
    padding: 0;
}
header .coluna-1{
    padding-right: 100px;
}
header a{
    color: var(--texto);
}
header li{
    position: sticky;
    transition: all 1s;
}
header li a::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 40%;
    width: 0;
    height: 2px;
    background-color: var(--amarelo);
    transition: width 0.3s ease;
}

header li a:hover::after {
    width: 120%;
}
header .logo{
    transition: all 1s;
}
header .logo:hover,
header li:hover{
    transform: scale(1.2);
}
header nav{
    position: relative;
}
.menu-flutuante .botao-menu{
    right: -46px;
    transition: all 3s;
}
.botao-menu svg{
    color: var(--texto);
    font-size: 25px;
    transition: all 0.5s;
}


.botao-menu{
    position: absolute;
    right: -25px;
    background-color: var(--amarelo);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    top: 50%;
    transition: all 1s;
    z-index: 999;
}

.coluna-0 .botao-menu svg{
    transform: rotate(180deg);
}
.principal-menu{
    left: 0;
    transition: left 0.5s ease-in-out; /* Define a transição para a propriedade 'left' */
    z-index: 2;
    box-shadow: 14px 0px 40px -26px rgba(0, 0, 0, 0.23);
}
.coluna-0 .principal-menu{
    left: -250px;
}

header .principal-menu{
    position: relative;
    overflow: hidden;
}
.icones-menu{
    gap: 10px;
}
.icones-menu a{
    padding: 10px;
    border-radius: 100%;
    border: 2px solid var(--texto);
    width: fit-content;
    transition: all 1s;
    
}
.icones-menu svg{
    font-size: 30px;
    transition: all 1s;
}
.icones-menu a:hover{
    transform: scale(1.2);
}

/* slides */

.slick-slide{
    width: 100%!important;
}
.slick-vertical .slick-slide{
    border: none!important;
}
.slide {
    height: 100vh;
    display: flex!important;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    align-content: center;
    text-align: -webkit-center;
    background-color: rgb(201, 201, 201);
}


.min-width{
    max-width: 100%;
}
.max-width{
    max-width: 80%;
}

.slide-navegacao{
    position: absolute;
    z-index: 1;
    top: 40%;
    right: 0;
    display: flex;
    flex-direction: column;
    background: var(--amarelo);
    text-align: -webkit-center;
    padding: 20px;
    border-radius: 40px 0 0 40px;
}
.slick-prev,
.slick-next {
    background-color: transparent;
    border: none;
    font-size: 24px; /* Ajuste o tamanho conforme necessário */
    cursor: pointer;
    z-index: 1;
}


.slick-dots{
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 10px;
}
.slick-dots li button{
    border: 0 !important;
    background: transparent !important;
    display: block !important;
    height: 20px !important;
    width: 20px !important;
    outline: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    padding: 5px !important;
    cursor: pointer !important;
    border-radius: 20px !important;
    border: 1px solid var(--texto) !important;
}
.slick-dots .slick-active button{
    background-color: var(--texto)!important;
}
.box{
    width: 80%;
    
}
.slide p {
    text-align: left;
}
@keyframes blurAnimation {
    0% {
        backdrop-filter: blur(0);
        background-color: rgba(0, 0, 0, 0);
        opacity: 0;
    }
    100% {
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 1;
    }
}
.coluna-flexivel:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; 
    width: 100%; 
    background: #00000082;
    backdrop-filter: blur(0);
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    pointer-events: none; 
}

header:hover ~ .coluna-flexivel:after {
    backdrop-filter: blur(5px);
    opacity: 1;
}
.logo-fixed{
    position: fixed;
    top: -200px;
    left: -4px;
    z-index: 2;
    transition: top 3s, transform 1s;
}
.coluna-0  ~ .logo-fixed{
    top: 40px;
    z-index: 2;
}

.coluna-20 ~ .logo-fixed{
    transition: top 0.2s, transform 1s;
}


.logo-fixed:hover{
    transform: scale(1.2);
}

