
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body {
    background:#0a0a0a;
    color:white;
}

/* HEADER */
.header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 25px;
    background:linear-gradient(90deg, #b30000, #ff0000);
    box-shadow:0 0 20px red;
}

.header h1 {
    font-size:1.6rem;
}


  .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #000;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: 50px; /* deixa quadrado pra virar círculo */
  border-radius: 50%; /* 🔥 deixa redondo */
  object-fit: cover;
  border: 2px solid red; /* opcional, fica bonito */
}

.logo h1 {
  font-size: 20px;
  color: white;
  margin: 0;
}
.logo img:hover {
  transform: scale(1.1);
  transition: 0.3s;
}


/* CART */
.cart {
    background:#000;
    padding:10px 15px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.cart:hover {
    transform:scale(1.05);
}

/* HERO */
.hero {
    height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:radial-gradient(circle, #1a0000, #000);
    padding:20px;
}

.hero-content h2 {
    font-size:2.8rem;
    color:#ff1a1a;
    margin-bottom:10px;
}

.hero-content p {
    opacity:0.8;
    margin-bottom:20px;
}

.hero button {
    padding:12px 25px;
    border:none;
    background:red;
    color:white;
    cursor:pointer;
    border-radius:5px;
    transition:0.3s;
}

.hero button:hover {
    transform:scale(1.1);
}

/* PRODUTOS */
.produtos {
background: radial-gradient(circle, #1a0000, #000);
    padding:40px 20px;
}

.cards {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.card {
    background:#111;
    border:1px solid red;
    width:220px;
    padding:15px;
    border-radius:12px;
    text-align:center;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-10px);
    box-shadow:0 0 20px red;
}

.card img {
    width:100%;
    border-radius:10px;
}

.card button {
    margin-top:10px;
    width:100%;
    padding:10px;
    background:red;
    border:none;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

/* CARRINHO */
#carrinhoBox {
    position:fixed;
    right:20px;
    top:80px;
    width:280px;
    background:#111;
    border:1px solid red;
    padding:15px;
    border-radius:10px;
    display:none;
}

#carrinhoBox ul {
    list-style:none;
    margin:10px 0;
}

#carrinhoBox li {
    margin:5px 0;
    font-size:14px;
}

.cart-footer button {
    width:100%;
    margin-top:10px;
    padding:10px;
    background:green;
    border:none;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

/* WHATSAPP */
.whatsapp {
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 0 10px #25D366;
}

.promo-bar {
     background:linear-gradient(90deg, #b30000, #ff0000);
    color: white;
    padding: 10px;
    font-weight: bold;
    border-top: 1px solid #ff3b3b;
    border-bottom: 1px solid #ff3b3b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-bar marquee {
    font-size: 14px;
}

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, #1a0000, #000);
}

/* efeito de luz animada */
.hero-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.15), transparent 60%);
    animation: moveLight 6s infinite alternate;
}

@keyframes moveLight {
    from { transform: translate(-20%, -20%); }
    to { transform: translate(20%, 20%); }
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.spider-icon {
    font-size: 40px;
    animation: float 2s infinite ease-in-out;
    margin-bottom: 10px;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content h2 {
    font-size: 3rem;
    color: #ff1a1a;
    text-shadow: 0 0 20px red;
    margin-bottom: 10px;
}

.hero-content p {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* botões */
.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero button {
    padding: 12px 20px;
    border: none;
    background: red;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
}

.hero button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px red;
}

/* botão secundário */
.hero button.ghost {
    background: transparent;
    border: 1px solid red;
}

.hero button.ghost:hover {
    background: red;
}

#socialOverlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    z-index:50;
}

#socialBox {
    position:fixed;
    bottom:-400px;
    left:50%;
    transform:translateX(-50%);
    width:300px;
    background:#111;
    border:1px solid red;
    border-radius:12px;
    padding:20px;
    text-align:center;
    transition:0.4s ease;
    z-index:60;
}

#socialBox h3 {
    color:red;
    margin-bottom:15px;
}

#socialBox a {
    display:block;
    color:white;
    text-decoration:none;
    margin:10px 0;
    padding:10px;
    background:#222;
    border-radius:8px;
    transition:0.3s;
}

#socialBox a:hover {
    background:red;
}

#socialBox button {
    margin-top:10px;
    width:100%;
    padding:10px;
    background:red;
    border:none;
    color:white;
    cursor:pointer;
    border-radius:8px;
}

    #toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.4s;
    z-index: 999;
    font-weight: bold;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}
#galeriaModal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

#imagemGaleria{
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    animation: zoom .3s ease;
}

#fecharGaleria{
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 35px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
}

.prev{
    left: 20px;
}

.next{
    right: 20px;
}

@keyframes zoom{
    from{
        transform: scale(.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

.card{
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
}

.card img{
    width: 100%;
    height: 250px; /* tamanho fixo */
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.card img:hover{
    transform: scale(1.03);
}
.filtros{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.filtro-btn{
    background:#111;
    color:white;
    border:2px solid #222;
    padding:12px 22px;
    border-radius:50px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
    font-size:15px;
}

.filtro-btn:hover{
    transform:translateY(-3px);
    background:red;
    border-color:red;
    box-shadow:0 10px 25px rgba(255,0,0,0.4);
}

.filtro-btn.active{
    background:red;
    border-color:red;
    box-shadow:0 10px 25px rgba(255,0,0,0.4);
}
 
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:50px;
    font-size:14px;
    border-top:1px solid #222;
}