/* =========================================
RESET GERAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================================
BODY
========================================= */

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#111;
}

/* =========================================
HEADER
========================================= */

.header{

    /* COR PRINCIPAL */
    background:#34F6E5;

    /* ESPAÇAMENTO */
    padding:20px 40px;

    /* ALINHAMENTO */
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    /* SOMBRA */
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* =========================================
LOGO
========================================= */

.logo{

    font-size:32px;

    font-weight:bold;

    color:#000;
}

/* =========================================
ÁREA DE BUSCA
========================================= */

.search-box{

    flex:1;

    display:flex;

    max-width:700px;
}

/* CAMPO DE BUSCA */

.search-box input{

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px 0 0 12px;

    outline:none;

    font-size:16px;
}

/* BOTÃO BUSCAR */

.search-box button{

    background:#111;

    color:#fff;

    border:none;

    padding:0 25px;

    cursor:pointer;

    border-radius:0 12px 12px 0;

    font-weight:bold;

    transition:0.3s;
}

/* HOVER BOTÃO */

.search-box button:hover{

    background:#222;
}

/* =========================================
MENU
========================================= */

.menu{

    display:flex;

    align-items:center;

    gap:20px;
}

/* LINKS DO MENU */

.menu a{

    text-decoration:none;

    color:#000;

    font-weight:bold;

    transition:0.3s;
}

/* HOVER LINKS */

.menu a:hover{

    opacity:0.7;
}
/* =========================================
BOTÃO SEJA VENDEDOR PARCEIRO
========================================= */

/* SEGUNDO LINK DO MENU: SEJA VENDEDOR PARCEIRO */
.menu a:nth-child(2){

    /* FUNDO ESCURO PARA DESTACAR */
    background:#111;

    /* TEXTO BRANCO */
    color:#fff;

    /* ESPAÇAMENTO INTERNO */
    padding:12px 18px;

    /* CANTOS ARREDONDADOS */
    border-radius:12px;

    /* TRANSIÇÃO SUAVE */
    transition:0.3s;
}

/* EFEITO AO PASSAR O MOUSE */
.menu a:nth-child(2):hover{

    /* MUDA UM POUCO A COR */
    background:#222;

    /* MANTÉM VISÍVEL */
    opacity:1;
}
/* =========================================
BANNER HERO PRINCIPAL
========================================= */

/* BANNER PRINCIPAL */
.hero{
    height:300px;
    background:#050505;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 40px;
    overflow:hidden;
}

/* EFEITO DE LUZ */
.hero::before{

    content:"";

    width:500px;
    height:260px;

    background:#34F6E5;

    position:absolute;

    border-radius:50%;

    filter:blur(180px);

    opacity:0.15;

    top:-100px;
    right:-100px;
}

/* CONTEÚDO */
/* CONTEÚDO CENTRAL DO BANNER */
.hero-conteudo{
    text-align:center;
    max-width:700px;
    padding:20px 0;
}

/* TÍTULO */
.hero-conteudo h1{

    color:#fff;

    font-size:36px;

    line-height:1.2;

    margin-bottom:20px;
}

/* TEXTO */
.hero-conteudo p{

    color:#cfcfcf;

    font-size:17px;

    margin-bottom:40px;
}



/* =========================================
BOTÃO COMEÇAR AGORA
========================================= */

.btn-comecar{

    border:2px solid #34F6E5;

    color:#34F6E5;

    padding:16px 32px;

    border-radius:14px;

    font-weight:bold;

    text-decoration:none;

    transition:0.3s;
}

/* HOVER */
.btn-comecar:hover{

    background:#34F6E5;

    color:#000;
}

/* BOTÃO SECUNDÁRIO */
.btn-vendedor{

    border:2px solid #34F6E5;

    color:#34F6E5;

    padding:16px 32px;

    border-radius:14px;

    font-weight:bold;

    text-decoration:none;

    transition:0.3s;
}

/* HOVER */
.btn-vendedor:hover{

    background:#34F6E5;

    color:#000;
}
/* =========================================
SEÇÃO DE CATEGORIAS
========================================= */

.categorias{
    padding:45px 40px;
    background:#f5f5f5;
}

/* TÍTULO DA SEÇÃO */

.titulo-secao{
    max-width:1200px;
    margin:0 auto 30px;
}

.titulo-secao h2{
    font-size:32px;
    margin-bottom:8px;
}

.titulo-secao p{
    color:#555;
}

/* GRID DAS CATEGORIAS */

.grid-categorias{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
    gap:20px;
    align-items:stretch;
}

/* CARD DE CATEGORIA */

.card-categoria{
    background:#fff;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    text-decoration:none;
    color:#111;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

/* ÍCONE */

.card-categoria span{
    font-size:36px;
    display:block;
    margin-bottom:12px;
}

/* TÍTULO */

.card-categoria h3{
    font-size:16px;
}

/* HOVER */

.card-categoria:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(52,246,229,0.25);
}
/* REMOVE ROLAGEM HORIZONTAL */
body{
    overflow-x:hidden;
}
/* =========================================
SEÇÃO DE PRODUTOS EM DESTAQUE
========================================= */

.produtos-destaque{
    padding:50px 40px 80px;
    background:#f5f5f5;
}

/* GRID DOS PRODUTOS */
.grid-produtos{
    display:grid;

    /* 6 PRODUTOS POR LINHA */
    grid-template-columns:repeat(6, 1fr);

    gap:20px;
}
/* GRID DOS PRODUTOS */
.grid-produtos{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
}

/* RESPONSIVIDADE DOS PRODUTOS */
@media(max-width:1000px){

    .grid-produtos{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:600px){

    .grid-produtos{
        grid-template-columns:1fr;
    }

}

/* CARD DO PRODUTO */

.card-produto{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

/* HOVER DO CARD */

.card-produto:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(52,246,229,0.25);
}

/* ÁREA DA IMAGEM */

.imagem-produto{
    height:220px;
    background:#e5e5e5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777;
    font-weight:bold;
}

/* INFORMAÇÕES DO PRODUTO */

.info-produto{
    padding:22px;
}

.info-produto h3{
    font-size:18px;
    margin-bottom:10px;
}

/* VENDEDOR */

.vendedor{
    font-size:14px;
    color:#555;
    margin-bottom:8px;
}

/* AVALIAÇÃO */

.avaliacao{
    font-size:14px;
    color:#333;
    margin-bottom:14px;
}

/* PREÇO */

.preco{
    display:block;
    font-size:24px;
    color:#111;
    margin-bottom:18px;
}

/* BOTÃO VER PRODUTO */

.btn-ver-produto{
    display:block;
    text-align:center;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
}

/* HOVER DO BOTÃO */

.btn-ver-produto:hover{
    background:#34F6E5;
    color:#000;
}
/* =========================================
IMAGEM PROFISSIONAL DO CARD
========================================= */

.imagem-produto{
    height:220px;
    background:#e5e5e5;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

/* PLACEHOLDER DA IMAGEM */

.placeholder-produto{
    color:#777;
    font-weight:bold;
}

/* ETIQUETA DO PRODUTO */

.badge-produto{
    position:absolute;
    top:14px;
    left:14px;
    background:#34F6E5;
    color:#000;
    padding:7px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

/* BOTÃO FAVORITO */

.favorito{
    position:absolute;
    top:12px;
    right:12px;
    width:36px;
    height:36px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:20px;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
    transition:0.3s;
}

/* HOVER DO FAVORITO */

.favorito:hover{
    background:#34F6E5;
    transform:scale(1.08);
}

/* =========================================
EFEITO PREMIUM DO CARD
========================================= */

.card-produto{
    cursor:pointer;
}

/* HOVER MAIS PROFISSIONAL */

.card-produto:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 35px rgba(52,246,229,0.25);
}

/* EFEITO NA ÁREA DA IMAGEM */

.card-produto:hover .imagem-produto{
    background:#dffdfb;
}

/* =========================================
BOTÃO VER PRODUTO MAIS MODERNO
========================================= */

.btn-ver-produto{
    border:2px solid #111;
}

.btn-ver-produto:hover{
    background:#34F6E5;
    color:#000;
    border-color:#34F6E5;
}
/* =========================================
IMAGENS DOS PRODUTOS
========================================= */

.imagem-produto img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:0.4s;
}

/* ZOOM SUAVE NA IMAGEM */

.card-produto:hover .imagem-produto img{
    transform:scale(1.06);
}
/* =========================================
PÁGINA INDIVIDUAL DO PRODUTO
========================================= */

.pagina-produto{
    max-width:1200px;
    margin:50px auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* GALERIA DO PRODUTO */

.produto-galeria{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

/* IMAGEM PRINCIPAL */

.imagem-principal{
    height:450px;
    background:#f1f1f1;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.imagem-principal img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* MINIATURAS */

.miniaturas{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    margin-top:15px;
}

.miniaturas img{
    height:90px;
    width:100%;
    object-fit:contain;
    background:#f4f4f4;
    border-radius:12px;
    padding:8px;
    cursor:pointer;
    border:2px solid transparent;
}

.miniaturas img:hover{
    border-color:#34F6E5;
}

/* INFORMAÇÕES DO PRODUTO */

.produto-info-detalhe{
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.produto-status{
    display:inline-block;
    background:#34F6E5;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:15px;
}

.produto-info-detalhe h1{
    font-size:34px;
    margin-bottom:12px;
}

.produto-avaliacao{
    color:#555;
    margin-bottom:20px;
}

.produto-preco-detalhe{
    display:block;
    font-size:38px;
    margin-bottom:25px;
}

.produto-descricao{
    color:#444;
    line-height:1.6;
    margin-bottom:20px;
}

.produto-estoque{
    margin-bottom:25px;
}

/* BOTÕES */

.produto-acoes{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.btn-comprar,
.btn-carrinho{
    flex:1;
    padding:16px;
    border-radius:14px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.btn-comprar{
    background:#111;
    color:#fff;
    border:2px solid #111;
}

.btn-comprar:hover{
    background:#34F6E5;
    color:#000;
    border-color:#34F6E5;
}

.btn-carrinho{
    background:#fff;
    color:#111;
    border:2px solid #111;
}

.btn-carrinho:hover{
    border-color:#34F6E5;
    color:#000;
}

/* VENDEDOR */

.box-vendedor{
    background:#f7f7f7;
    padding:20px;
    border-radius:16px;
}

.box-vendedor h3{
    margin-bottom:8px;
}

.box-vendedor span{
    color:green;
    font-weight:bold;
}

/* PRODUTOS RELACIONADOS */

.produtos-relacionados{
    padding:40px;
    background:#f5f5f5;
}

/* RESPONSIVO */

@media(max-width:900px){
    .pagina-produto{
        grid-template-columns:1fr;
    }
}
/* =========================================
OVERLAY DO CARRINHO
FUNDO ESCURO ATRÁS DO MINI CARRINHO
========================================= */

.overlay-carrinho{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:998;
}

/* QUANDO O OVERLAY ESTIVER ATIVO */
.overlay-carrinho.ativo{
    opacity:1;
    visibility:visible;
}

/* =========================================
MINI CARRINHO LATERAL
========================================= */

.mini-carrinho{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    max-width:90%;
    height:100%;
    background:#fff;
    z-index:999;
    box-shadow:-10px 0 30px rgba(0,0,0,0.18);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

/* QUANDO O CARRINHO ESTIVER ABERTO */
.mini-carrinho.ativo{
    right:0;
}

/* TOPO DO CARRINHO */

.mini-carrinho-topo{
    padding:25px;
    border-bottom:1px solid #eee;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.mini-carrinho-topo h2{
    font-size:24px;
}

/* BOTÃO FECHAR */

.fechar-carrinho{
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

/* LISTA DO CARRINHO */

.mini-carrinho-lista{
    flex:1;
    padding:20px;
    overflow-y:auto;
}

/* ITEM DO CARRINHO */

.item-carrinho{
    display:flex;
    gap:15px;
    background:#f7f7f7;
    padding:15px;
    border-radius:16px;
}

/* IMAGEM DO ITEM */

.item-imagem{
    width:80px;
    height:80px;
    background:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.item-imagem img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* INFORMAÇÕES DO ITEM */

.item-info h3{
    font-size:15px;
    margin-bottom:6px;
}

.item-info p{
    font-size:14px;
    color:#555;
    margin-bottom:6px;
}

.item-info strong{
    font-size:17px;
}

/* RODAPÉ DO CARRINHO */

.mini-carrinho-rodape{
    padding:25px;
    border-top:1px solid #eee;
}

/* SUBTOTAL */

.subtotal{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
    font-size:18px;
}

/* BOTÃO FINALIZAR */

.btn-finalizar{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#34F6E5;
    color:#000;
    font-weight:bold;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.btn-finalizar:hover{
    background:#111;
    color:#fff;
}
/* =========================================
PÁGINA DE LOGIN
========================================= */

/* TOPO */

.topo-login{
    width:100%;
    padding:25px 40px;
    background:#34F6E5;
}

/* LOGO */

.logo-login{
    font-size:42px;
    font-weight:bold;
    color:#000;
    text-decoration:none;
}

/* CONTAINER */

.container-login{
    min-height:calc(100vh - 100px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
}

/* CARD */

.card-login{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* TÍTULO */

.card-login h1{
    font-size:38px;
    margin-bottom:12px;
}

/* TEXTO */

.card-login p{
    color:#555;
    line-height:1.6;
    margin-bottom:30px;
}

/* INPUTS */

.grupo-input{
    margin-bottom:20px;
}

/* LABEL */

.grupo-input label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

/* INPUT */

.grupo-input input{
    width:100%;
    height:56px;
    border:2px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
    transition:0.3s;
}

/* EFEITO */

.grupo-input input:focus{
    border-color:#34F6E5;
    outline:none;
}

/* BOTÃO LOGIN */

.btn-login{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#111;
    color:#fff;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

/* HOVER */

.btn-login:hover{
    background:#34F6E5;
    color:#000;
}

/* RODAPÉ */

.rodape-login{
    margin-top:28px;
    text-align:center;
}

/* TEXTO */

.rodape-login span{
    color:#666;
}

/* LINK */

.rodape-login a{
    color:#000;
    font-weight:bold;
    text-decoration:none;
    margin-left:6px;
}