
@font-face {
    font-family: 'Pilat';
    src: url('../font/Pilat-Book.woff2') format('woff2'),
        url('../font/Pilat-Book.woff') format('woff'),
        url('../font/Pilat-Book.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PilatBold';
    src: url('../font/Pilat-Demi.woff2') format('woff2'),
        url('../font/Pilat-Demi.woff') format('woff'),
        url('../font/Pilat-Demi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
    user-select: none;
     -webkit-tap-highlight-color: transparent;
}


body {
    font-size: 16px;
    color: #000;
    font-family: 'Pilat';
    font-optical-sizing: auto;
    overflow-x: hidden;
    accent-color: #E10600;
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: 'Pilat';
    line-height: 1;
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly
}

.center {
    justify-content: center
}

.between {
    justify-content: space-between
}

.gap {
    gap: 30px;
}

.wrap {
    flex-wrap: wrap;
}

header{
    padding: 20px;
    position:fixed;
    z-index: 2;
    background: #fff;
    width: 1200px;
}

header p{
    font-size: 1.4rem;
}

header p strong{
    color: #E10600;
}

.banner{
    position: fixed;
    top: 70px;
    z-index: 2;
}

nav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 1.4rem;
    padding: 20px;
    position: fixed;
    top: 390px;
    width: 1200px;
    background: #fff;
    z-index: 2;
    border-bottom: solid 3px #D0D0D0;
}

.produtos{
    position: absolute;
    top: 500px;
    padding-bottom: 20px;
}

nav p{
    color: #D9D9D9;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
}

nav p::before{
    content: "";
    width: 20px;
    aspect-ratio: 1;
    background: #D9D9D9;
    display: block;
}

nav p.ativo, nav p:hover {
    color: #000;
}

nav p.ativo::before{
    background: #E10600;
}

.produtos{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.produto {
    flex-basis: calc((100% - 60px) / 3);
    border: solid 2px #D0D0D0;
    padding: 30px;
    cursor: pointer;
}

.produto img{
    text-align: center;
    margin: 0 auto;
}

.titulo-produto{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4rem;
    height: 5.6rem;
}

.valor{
    font-size: 2.4rem;
    color: #E10600;
    font-weight: 600;
    letter-spacing: 2px;
}

.parcelado{
    margin-bottom: 15px;
}

.hide{
    display: none;
}

a.produto-link {
    text-decoration: none;
    color: inherit; /* Herda a cor do texto do elemento pai */
    display: block; /* Garante que o link ocupe todo o espaço do card */
}

#finalizarcompra{
    position: fixed;
    bottom: 20px;
    right: 0px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#finalizarcompra.fechado{
    right: -160px;
}

#numeroitens{
    color: #E10600;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 25px;
    left: 65px;
    width: 20px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#popupfinal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
    display: none;
    justify-content: center;
    align-items: center;
}

#popupfinal.aberto{
    display: flex;
}

#popup{
    position: relative;
}

#areaqrcode{
    width: 200px;
    height: 200px;
    position: absolute;
    top: 375px;
    left: 678px;
}

#popvideo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    background: url(../img/bg-video.png) center center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

video{
    width: 1000px; 
    display: block;  
    border-radius: 30px; 
}

#fechar{
    position: absolute;
    top: 20px;
    right: 0;
    width: 150px;
    height: 150px;
    z-index: 10;
    cursor: pointer;
}




