*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
}

body{
    overflow-x: hidden;
}

p{
    font-family: sans-serif;
    color: rgba(255, 255, 255, 0.623);
}

#containerPai{
    background-color: rgb(77, 77, 77);
}

header{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 60px 80px;
    position: absolute;
    z-index: 100;
}

.icones{
    display: flex;
    gap: 32px;
}

.icones__img{
    height: 18px;
}


#slider{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0px 160px;
    background-image: url(img/plano-de-fundo.webp);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#slider::before{
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.0829);
    backdrop-filter: blur(20px);
    z-index: 1;
    mask-image: radial-gradient(circle at 1050px, transparent 300px, black 320px);
}

#textos{
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.texto{
    width: 500px;;
    position: absolute;
    transition: all .3s;
}

.texto h2{
    font-size: 76px;
}

.texto h2, .texto p, .texto button{
    transform: translateY(-35px);
    opacity: 0;
    transition: all .3s;
}

.texto p, .texto button{
    transform: translateY(35px);
}

.texto.active h2, .texto.active p, .texto.active button{
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .3s;
}

.texto p{
    line-height: 24px;
    padding: 12px 0px 24px;
}

.texto button{
    font-family: sans-serif;
    letter-spacing: 1px;
}

.btn__padrao{
    background-color: rgba(255, 255, 255, 0.082);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 14px 32px;
    border-radius: 8px;
    z-index: 2;
}

.btn__padrao:hover{
    cursor: pointer;
}


#pratos{
    display: flex;
    position: absolute;
    left: 768px;
    transition: all .4s;
}

.prato{
    scale: 0.7;
    transition: all .6s;
    opacity: .4;
    transform: rotate(40deg);
}

.prato.active{
    scale: 1;
    opacity: 1;
    transform: rotate(0deg);
}

#navegacao{
    position: absolute;
    top: 80%;
    right: 26%;
    display: flex;
    gap: 32px;
}

#navegacao button{
    padding: 14px 16px;
}


