*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0B0B0B;
    color:#fff;
}

.header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    position:fixed;
    top:0;
    left:0;
    background:rgba(11,11,11,.85);
    backdrop-filter:blur(15px);
    z-index:1000;
}

.logo a{
    text-decoration:none;
    color:#A855F7;
    font-size:36px;
    font-weight:800;
}

.navbar{
    display:flex;
    gap:40px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#A855F7;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:140px;
    padding-left:8%;
    padding-right:8%;
}

.hero-text{
    max-width:550px;
}

.tag{
    color:#A855F7;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
}

.hero h1{
    font-size:80px;
    line-height:1;
    margin:20px 0;
}

.hero p{
    font-size:20px;
    color:#bdbdbd;
    margin-bottom:35px;
    line-height:1.6;
}

.btn{
    display:inline-block;
    padding:16px 38px;
    background:#A855F7;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(168,85,247,.5);
}

/* ===== PRODUTOS ===== */

.products{
    padding:120px 8%;
}

.products h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#141414;
    border:1px solid #252525;
    border-radius:20px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#A855F7;
    box-shadow:0 0 30px rgba(168,85,247,.15);
}

.card img{
    width:180px;
    height:180px;
    object-fit:contain;
    margin-bottom:20px;
}

.card h3{
    font-size:22px;
    margin-bottom:8px;
}

.card p{
    color:#bdbdbd;
    margin-bottom:25px;
}

.btn-card{
    display:inline-block;
    background:#A855F7;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:40px;
    transition:.3s;
}

.btn-card:hover{
    background:#8B5CF6;
}

@media(max-width:1000px){

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:650px){

    .cards{
        grid-template-columns:1fr;
    }

}

/* ===== ENCOMENDAS ===== */

.orders{
    padding:120px 8%;
    text-align:center;
}

.subtitle{
    color:#A855F7;
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;
}

.orders h2{
    font-size:48px;
    margin:20px 0;
}

.orders p{
    max-width:800px;
    margin:0 auto;
    color:#BDBDBD;
    font-size:20px;
    line-height:34px;
}

.second-text{
    margin-top:20px !important;
}

.orders .btn{
    margin-top:40px;
}

/* ===== SOBRE ===== */

.about{
    padding:120px 8%;
    display:flex;
    justify-content:center;
}

.about-text{
    max-width:850px;
    text-align:center;
}

.about h2{
    font-size:48px;
    margin:20px 0;
}

.about p{
    color:#BDBDBD;
    line-height:34px;
    font-size:20px;
}

/* ===== BOTÃO WHATSAPP ===== */

.whatsapp-float{

    position:fixed;
    right:30px;
    bottom:30px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 0 25px rgba(37,211,102,.5);

    transition:.3s;

    z-index:9999;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

.whatsapp-float img{

    width:38px;

}

.whatsapp-float{
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 70px;
    height: 70px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 25px rgba(37,211,102,.5);

    transition: .3s;

    z-index: 9999;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}

.whatsapp-float img{
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* ===== FOOTER ===== */

footer{
    padding:80px 8%;
    background:#090909;
    border-top:1px solid #222;
}

.footer-content{
    text-align:center;
}

.footer-content h2{
    font-size:42px;
    color:#A855F7;
    margin-bottom:15px;
}

.footer-content p{
    color:#BDBDBD;
    margin-bottom:30px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:35px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#A855F7;
}

.footer-content span{
    color:#777;
    font-size:14px;
}

.logo img{
    width:75px;
    height:75px;
    object-fit:contain;
    transition:.3s;
}

.whatsapp-float{
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 65px;
    height: 65px;

    background: #151515;
    border:1px solid #2f2f2f;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;
    z-index:9999;
}

.whatsapp-float:hover{
    transform:translateY(-5px);
    border-color:#25D366;
    box-shadow:0 0 20px rgba(37,211,102,.4);
}

.whatsapp-float img{
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.logo img:hover{
    transform:scale(1.05);
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

@media (max-width: 900px){

    .hero{
        padding-top:220px;
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-text h1{
        font-size: 48px;
    }

    .hero-text p{
        margin: auto;
    }

    .hero-image img{
        width: 80%;
        max-width: 350px;
    }

    .products-grid{
        grid-template-columns: 1fr;
    }

    .about{
        flex-direction: column;
        text-align: center;
    }

    .orders{
        text-align: center;
    }

    .navbar{
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header{
        flex-direction: column;
        gap: 20px;
    }

}

#inicio,
#produtos,
#encomendas,
#sobre,
#contato{
    scroll-margin-top:140px;
}s

footer{
    scroll-margin-top: 140px;
}

/* ===== BOTÃO INSTAGRAM ===== */

.instagram-float{
    position: fixed;
    right: 30px;
    bottom: 115px;

    width: 70px;
    height: 70px;

    background: #E1306C;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 25px rgba(225,48,108,.5);

    transition: .3s;

    z-index: 9999;
}

.instagram-float:hover{
    transform: scale(1.1);
}

.instagram-float img{
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.instagram-float{
    position: fixed;
    right: 30px;
    bottom: 110px;

    width: 65px;
    height: 65px;

    background:#151515;
    border:1px solid #2f2f2f;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;
    z-index:9999;
}

.instagram-float:hover{
    transform:translateY(-5px);
    border-color:#E1306C;
    box-shadow:0 0 20px rgba(225,48,108,.4);
}

.nav-btn{

    background:#A855F7;
    color:white !important;

    padding:12px 25px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 0 20px rgba(168,85,247,.5);

}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:450px;
    max-width:100%;
    filter:drop-shadow(0 0 40px rgba(168,85,247,.35));
    transition:.4s;
}

.hero-image img:hover{
    transform:scale(1.05);
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:1;
}

.hero-image img{
    width:420px;
    max-width:90%;
    height:auto;
    filter:drop-shadow(0 20px 40px rgba(168,85,247,.45));
    transition:.4s ease;
}

.hero-image img:hover{
    transform:translateY(-10px) scale(1.05);
}

.hero-image img{
    animation: float 3s ease-in-out infinite;
} 

@keyframes float{
    0%, 100%{
        transform:translateY(0)
    }

    50%{
        transform:translateY(-15px)
        }
}

@media(max-width:768px){

    .hero-image{
        margin-top:30px;
    }

    .hero-image img{
        width:280px;
    }

}