@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f0b05;
    color:white;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(8px);
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo h1{
    color:#ff2b2b;
    font-size:2rem;
    margin:0;
    line-height:1;
}

.logo span{
    color:#f5d17a;
    font-size:.85rem;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#f5d17a;
}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("imagens/fundo.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content{
    max-width:800px;
    padding:20px;
}

.hero h2{
    font-size:4rem;
    color:white;
    text-shadow:0 0 20px rgba(255,196,0,.7);
}

.hero p{
    margin:20px 0;
    font-size:1.2rem;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:linear-gradient(45deg,#ff1f1f,#ffd56a);
    color:white;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:scale(1.05);
}

section{
    padding:100px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#ffd56a;
    font-size:2.5rem;
}

.sobre{
    background:#1a1208;
}

.sobre p{
    text-align:center;
    line-height:1.8;
    max-width:900px;
    margin:15px auto;
}

.contato-info{
    margin-top:30px;
}

.produtos{
    background:#120d08;
}

.grid-produtos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,213,106,.25);
    border-radius:15px;
    padding:25px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#ffd56a;
}

.card h3{
    color:#ffd56a;
    margin-bottom:10px;
}

.card span{
    display:block;
    margin-top:15px;
    color:#ff4a4a;
    font-weight:bold;
    font-size:1.2rem;
}

footer{
    text-align:center;
    padding:30px;
    background:black;
}

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:35px;
    text-decoration:none;
    box-shadow:0 0 25px rgba(37,211,102,.7);
    z-index:9999;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        gap:15px;
    }

    .hero h2{
        font-size:2.5rem;
    }
}
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

.mais-produtos{
    text-align:center;
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid rgba(255,213,106,.2);
}

.mais-produtos h3{
    color:#ffd56a;
    font-size:2rem;
    margin-bottom:15px;
}

.mais-produtos p{
    margin-bottom:25px;
}

.contato-info a,
footer a{
    color:#ffd56a;
    text-decoration:none;
    transition:.3s;
}

.contato-info a:hover,
footer a:hover{
    color:white;
}