/* ==========================================
   VIX ACHOU
   Tema Roxo + Rosa Neon
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#111;
    color:#fff;
}

/* =========================
HEADER
========================= */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:rgba(20,20,20,.90);

    backdrop-filter:blur(12px);

    z-index:999;

    border-bottom:2px solid #7B2EFF;

}

.logo img{

    width:170px;

}

nav ul{

    display:flex;
    list-style:none;
    gap:35px;

}

nav a{

    color:white;
    text-decoration:none;
    font-size:17px;
    transition:.3s;

}

nav a:hover{

    color:#FF1493;

}

.icons{

    display:flex;
    gap:20px;

}

.icons i{

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.icons i:hover{

    color:#FF1493;
    transform:scale(1.2);

}

.menu-mobile{

    display:none;

}

/* =========================
BANNER
========================= */

.banner{

    margin-top:90px;

    height:650px;

    display:flex;

    align-items:center;

    padding-left:8%;

    background:linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.75)),
    url("../imagens/banner.jpg");

    background-size:cover;

    background-position:center;

}

.banner-texto{

    max-width:600px;

}

.banner h1{

    font-size:70px;

    color:#FF1493;

    margin-bottom:20px;

    text-shadow:0 0 25px #FF1493;

}

.banner p{

    font-size:22px;

    line-height:35px;

}

.btn{

    display:inline-block;

    margin-top:35px;

    padding:15px 45px;

    border-radius:40px;

    text-decoration:none;

    background:#FF1493;

    color:white;

    font-size:18px;

    transition:.3s;

}

.btn:hover{

    background:#7B2EFF;

    transform:translateY(-5px);

    box-shadow:0 0 25px #7B2EFF;

}

/* =========================
SEÇÕES
========================= */

section{

    padding:80px 8%;

}

section h2{

    text-align:center;

    margin-bottom:45px;

    font-size:40px;

    color:#FF1493;

}

/* =========================
CATEGORIAS
========================= */

.grid-categorias{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.categoria{

    background:#1b1b1b;

    border:2px solid #7B2EFF;

    border-radius:18px;

    padding:45px;

    text-align:center;

    transition:.4s;

}

.categoria:hover{

    transform:translateY(-10px);

    box-shadow:0 0 30px #7B2EFF;

}

.categoria i{

    font-size:55px;

    color:#FF1493;

    margin-bottom:20px;

}

.categoria h3{

    font-size:22px;

}

/* =========================
PRODUTOS
========================= */

.grid-produtos{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.produto{

    background:#1b1b1b;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    transition:.4s;

    border:1px solid #333;

}

.produto:hover{

    transform:translateY(-10px);

    box-shadow:0 0 25px #FF1493;

}

.produto img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.produto h3{

    margin-top:20px;

    font-size:23px;

}

.preco{

    font-size:26px;

    color:#FF1493;

    margin:18px 0;

    font-weight:bold;

}

.produto button{

    margin-bottom:25px;

    padding:13px 40px;

    border:none;

    border-radius:40px;

    background:#7B2EFF;

    color:white;

    cursor:pointer;

    transition:.3s;

}

.produto button:hover{

    background:#FF1493;

}

/* =========================
NEWSLETTER
========================= */

.newsletter{

    background:#181818;

    text-align:center;

}

.newsletter input{

    width:420px;

    max-width:90%;

    padding:16px;

    border:none;

    border-radius:40px;

    outline:none;

    margin-top:25px;

}

.newsletter button{

    margin-top:20px;

    padding:15px 40px;

    border:none;

    border-radius:40px;

    background:#FF1493;

    color:white;

    cursor:pointer;

}

/* =========================
FOOTER
========================= */

footer{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    padding:60px 8%;

    background:#0c0c0c;

}

footer h3{

    color:#FF1493;

    margin-bottom:20px;

}

footer i{

    font-size:28px;

    margin-right:15px;

    cursor:pointer;

    transition:.3s;

}

footer i:hover{

    color:#FF1493;

}

/* =========================
RESPONSIVO
========================= */

@media(max-width:900px){

nav{

display:none;

}

.menu-mobile{

display:block;

font-size:30px;

cursor:pointer;

}

.icons{

display:none;

}

.banner{

height:500px;

padding:30px;

text-align:center;

justify-content:center;

}

.banner h1{

font-size:50px;

}

.banner p{

font-size:18px;

}

section h2{

font-size:32px;

}

}

@media(max-width:600px){

.logo img{

width:140px;

}

.banner h1{

font-size:38px;

}

.banner p{

font-size:16px;

line-height:28px;

}

.produto img{

height:220px;

}

}
#contadorCarrinho{

background:#FF1493;

color:#fff;

font-size:11px;

padding:3px 7px;

border-radius:50%;

position:relative;

top:-12px;

left:-10px;

font-weight:bold;

}
.favorito{

position:absolute;

top:15px;

right:15px;

font-size:24px;

cursor:pointer;

color:white;

transition:.3s;

}

.favorito:hover{

color:#FF1493;

}