




 :root {
      --bg-dark: #141414;
      --bg-darker: #0f0f0f;
      --orange: #f7931e;
      --white: #ffffff;
      --gray: #cfcfcf;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      background: #eee;
    }

    .mobile-drawer{
      display: none;
    }
    .menu-mobile{
      display: none;
    }

    /* HEADER TOP */
    .header-top {
        height: 200px;
      background: var(--bg-dark);
      padding: 12px 24px;
      display: flex;
      align-items: center;
      gap: 24px;
    }


    .banner_mobile{
      display: none;
    }

    .logo img {
      height: 250px;
      border-radius: 19px;
    }

    .search-box {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

/* input */
.search-box input {
  width: 100%;
  height: 80px;
  padding: 0 80px 0 20px; /* espaço pro ícone */
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
}

/* ícone */
.search-box i {
  position: absolute;
  right: 6px;
  width: 68px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  border-radius: 8px;

  color: var(--orange);
  font-size: 28px;
  cursor: pointer;

  transition: background 0.2s ease, transform 0.2s ease;
}

/* hover elegante */
.search-box i:hover {
  background-color: #f2f2f2;
  transform: scale(1.05);
}

    .header-icons {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--orange);
      font-size: 18px;
    }

    .header-icons span {
      color: var(--white);
      margin-left: 6px;
      font-size: 14px;
    }

    /* MENU */
   .header-menu {
  background: linear-gradient(90deg, #000000, #111111, #000000);
  padding: 18px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--white);
  font-size: 18px;
  height: 90px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
}

    .menu-item {
    position: relative;
   cursor: pointer;
   display: flex;
   align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-weight: 800;
  transition: all 0.3s ease;
  padding: 6px 0;
    }

    /* LINHA LASER */
.menu-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f7931e, #ffd700, #f7931e);
  transform: translateX(-50%);
  transition: 0.3s ease;
  border-radius: 6px;
}
/* HOVER IMPACTANTE */
.menu-item:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255,215,0,0.8);
  transform: translateY(-4px);
}

.menu-item:hover::after {
  width: 100%;
  box-shadow: 0 0 15px rgba(255,215,0,0.9);
}

/* CHEVRON ANIMADO */
.menu-item i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.menu-item:hover i {
  transform: rotate(180deg) scale(1.2);
  color: #ffd700;
}

/* BOTÃO MELHORES OFERTAS SUPER DESTACADO */
.menu-more {
  margin-left: auto;
  background: linear-gradient(135deg, #f7931e, #ff0000);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255, 80, 0, 0.6);
  animation: pulseFire 2s infinite;
  transition: 0.3s ease;
}

.menu-more:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(255, 80, 0, 1);
}

/* ANIMAÇÃO PULSO */
@keyframes pulseFire {
  0% { box-shadow: 0 0 15px rgba(255, 80, 0, 0.6); }
  50% { box-shadow: 0 0 35px rgba(255, 80, 0, 1); }
  100% { box-shadow: 0 0 15px rgba(255, 80, 0, 0.6); }
}


    .menu-item:hover {
      color: var(--orange);
    }

    .menu-more {
      margin-left: auto;
      background: var(--orange);
      color: #000;
      padding: 12px 18px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .menu-more:hover {
      filter: brightness(1.1);
    }



    .header-icons {
  display: flex;
  align-items: center;
  gap: 400px;
}

/* estilo base dos ícones */
.header-icons .icon i {
  
  color: #d4af37; /* ouro clássico */
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  font-size: 50px;
}

/* texto da conta */
.header-icons .account span {
  margin-left: 6px;
  font-size: 14px;
  color: #ffffff;
  font-size: 30px;
  
}

/* hover premium */
.header-icons .icon i:hover {
  transform: scale(1.1);
  color: #ffd700; /* ouro mais claro no hover */
}
.icon span {
  font-size: 26px;


}

/* =========================
   HEADER TOP NOVO DESIGN
========================= */

.header-top {
  height: 250px;
  background: linear-gradient(90deg, #000000, #111111);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 40px;
}

/* LOGO */
.logo img {
  height: 230px;
  border-radius: 18px;
  transition: 0.3s ease;
  width: 200PX;
  margin-top: 18PX;
  
}

.logo img:hover {
  transform: scale(1.05);
}

/* SEARCH BOX */
.search-box {
  flex: 1;
  position: relative;
  max-width: 650px;
}

.search-box input {
  width: 100%;
  height: 55px;
  padding: 0 70px 0 20px;
  border-radius: 40px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border: 1px solid #f7931e;
  box-shadow: 0 0 15px rgba(247,147,30,0.6);
}

/* BOTÃO BUSCA */
.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f7931e, #ff0000);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255,80,0,0.9);
}

/* AÇÕES DIREITA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.action-item i {
  font-size: 22px;
  color: #f7931e;
  transition: 0.3s ease;
}

.action-item:hover {
  color: #f7931e;
}

.action-item:hover i {
  transform: scale(1.2);
  color: #ffd700;
}


.header-menu {
  background: var(--bg-darker);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* permite quebrar linha */
  gap: 18px;
  color: var(--white);
  font-size: 14px; /* menor */
  font-weight: 600;
}

/* REMOVE SCROLL */
.header-menu {
  overflow-x: hidden;
}

/* ITENS */
.menu-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: normal; /* permite quebra */
  font-size: 14px;
  transition: 0.3s ease;
}

.menu-item:hover {
  color: var(--orange);
}

/* BOTÃO OFERTAS */
.menu-more {
  background: var(--orange);
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.menu-more:hover {
  filter: brightness(1.1);
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* remove scroll lateral */
}




.top-benefits {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000;
  padding: 20px 10px;
  color: #f2b705;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.benefit i {
  font-size: 32px;
  color: #f2b705;
}

.benefit strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.benefit span {
  font-size: 14px;
  color: #d1a100;
}
 .barranovidades {
      background-color: #000;
      color: #f5b400; /* amarelo/dourado */
      text-align: center;
      padding: 40px 20px;
      font-size: 32px;
      font-weight: bold;
    }


    .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  text-align: center;
}

.discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #d4a017;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
}

.card img {
  max-width: 100%;
  height: 480px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tags span {
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.card h3 {
  font-size: 15px;
  color: #d4a017;
  margin: 10px 0;
}

.stars {
  color: #f5b400;
  font-size: 16px;
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #d4a017;
  margin: 6px 0 12px;
}

.actions {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.qty {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.qty button {
  border: none;
  background: none;
  padding: 6px 10px;
  cursor: pointer;
}

.buy {
  flex: 1;
  background: #6cc66c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.whatsapp {
  display: block;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.promo {
  padding: 30px;
  background: radial-gradient(circle at center, #222, #000);
}

.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 20px;
}

.youtube {
  display: flex;
  align-items: center;
  gap: 10px;
}

.youtube img {
  width: 32px;
}

.subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe button {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.promo-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.video iframe {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 14px;
  color: #d4a017;
  margin: 10px 0;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #d4a017;
  margin-bottom: 12px;
}

.actions {
  display: flex;
  gap: 8px;
}

.qty {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.qty button {
  border: none;
  background: none;
  padding: 6px 10px;
  cursor: pointer;
}

.buy {
  flex: 1;
  background: #6cc66c;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

   .containerinstagra {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .titulo {
            color: #f5b400;
            font-size: 22px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 600;
        }

        .galeria {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 10px 20px;
        }

        .galeria img {
            height: 220px;
            border-radius: 6px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .galeria img:hover {
            transform: scale(1.05);
        }

        /* Scroll mais discreto */
        .galeria::-webkit-scrollbar {
            height: 6px;
        }

        .galeria::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 10px;
        }

        /* NEWSLETTER */
.newsletter {
    background: #111;
    padding: 30px 40px;
}

.newsletter-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    color: #fff;
    font-size: 20px;
}

.newsletter-text p {
    color: #ccc;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    width: 180px;
}

.newsletter-form button {
    padding: 12px 20px;
    border: 1px solid #555;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

/* FOOTER */
.footer {
    background: black;
    padding: 60px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: #f5a623;
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.social {
    margin-top: 20px;
}

.social a {
    margin-right: 10px;
    font-size: 18px;
    color: #c00;
    text-decoration: none;
}

.img-footer {
    max-width: 150px;
    margin-bottom: 20px;
}

.horario {
    margin-top: 15px;
}


.comentarios_google{
  display: flex;
}




    
    /* RESPONSIVO */
    @media (max-width: 900px) {
      .header-menu {
        overflow-x: auto;
      }

      .menu-more {
        margin-left: 0;
      }

      .promo-content {
    grid-template-columns: 1fr;
  }

  .video iframe {
    height: 240px;
  }

  .promo-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
    }


    .footer-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }
















    /* ===== GALERIA DE IMAGENS ===== */

.product-image {
  cursor: zoom-in;
}

.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-overlay.active {
  display: flex;
}

.gallery-overlay img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.gallery-nav.prev { left: 30px; }
.gallery-nav.next { right: 30px; }

/* =========================
   TOP BENEFITS PREMIUM
========================= */

.top-benefits {
  background: linear-gradient(90deg, #000000, #111111, #000000);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  border-top: 1px solid rgba(255, 174, 0, 0.2);
  border-bottom: 1px solid rgba(255, 174, 0, 0.2);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffb700;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.benefit i {
  font-size: 36px;
  transition: 0.4s ease;
  text-shadow: 0 0 10px rgba(255,183,0,0.6);
}

.benefit strong {
  display: block;
  font-size: 16px;
  color: #fff;
}

.benefit span {
  font-size: 13px;
  color: #ffb700;
}

/* HOVER PREMIUM */
.benefit:hover {
  transform: translateY(-6px) scale(1.05);
}

.benefit:hover i {
  transform: rotate(-8deg) scale(1.2);
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255,215,0,0.9);
}

/* Linha animada inferior */
.benefit::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ffae00, #ffd700);
  transition: 0.4s ease;
}

.benefit:hover::after {
  width: 100%;
}

/* =========================
   BARRA NOVIDADES IMPACTANTE
========================= */

.barranovidades {
  background: linear-gradient(90deg, #000000, #1a1a1a, #000000);
  color: #ffb700;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  padding: 40px 20px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

/* brilho animado passando */
.barranovidades::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine




}

/* =========================
   GRID PRODUTOS PREMIUM
========================= */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 50px 40px;
  background: linear-gradient(180deg, #000000, #0a0a0a);
}

/* =========================
   CARD IMPACTANTE 3D
========================= */

.card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 183, 0, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* brilho passando no card */
.card::before {

   pointer-events: none;
  z-index: 0;

  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.07),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.8s;
}

.card:hover::before {
  top: 0;
  left: 0;
}

/* HOVER 3D */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(255, 183, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.4);
}

/* =========================
   IMAGEM PREMIUM
========================= */

.card img {
  max-width: 100%;
  height: 320px;
  object-fit: contain;
  transition: 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* =========================
   SELO DESCONTO PREMIUM
========================= */

.discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffae00, #ff0000);
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: bold;
  animation: pulseDiscount 2s infinite;
  box-shadow: 0 0 15px rgba(255, 80, 0, 0.7);
}

@keyframes pulseDiscount {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* =========================
   TÍTULO
========================= */

.card h3 {
  font-size: 16px;
  color: #ffd700;
  margin: 12px 0;
  font-weight: 600;
}

/* =========================
   ESTRELAS
========================= */

.stars {
  color: #ffb700;
  font-size: 15px;
  margin-bottom: 8px;
}

/* =========================
   PREÇO
========================= */

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 13px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #ffb700;
  margin: 8px 0 14px;
}

/* =========================
   BOTÃO ORÇAMENTO NEON
========================= */

.buy {
  flex: 1;
  background: linear-gradient(135deg, #00c853, #00ff88);
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0,255,136,0.5);
}

.buy:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,255,136,0.9);
}

/* =========================
   BOTÃO WHATSAPP BORDA GLOW
========================= */

.whatsapp {
  display: block;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s ease;
}

.whatsapp:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 0 15px #25d366;
}

/* =========================
   TAGS PREMIUM
========================= */

.tags span {
  background: #000;
  color: #ffd700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  border: 1px solid rgba(255,215,0,0.3);
}





/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .products {
    padding: 20px;
    gap: 20px;
  }

  .card img {
    height: 220px;
  }
}







/* =========================
   MOBILE FIRST (até 768px)
========================= */
@media (max-width: 968px) {

  .mobile-drawer{
      display: flex;
    }
  .google-review{
    padding: 30px 20px;
    display: flex;
    justify-content: center;
  }

  .google-review a{
    width: 100%;
    max-width: 340px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transition: 0.3s ease;
  }

  .google-review img{
    width: 100%;
    height: auto;
    display: block;
  }

  .google-review a:active{
    transform: scale(0.97);
  }


  .containerinstagra{
    padding: 30px 15px;
    background: #000;
  }

  .titulo{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #ffb300;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  /* GALERIA EM GRID BONITA */
  .galeria{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .galeria img{
    width: 100%;
    aspect-ratio: 1/1; /* deixa quadrado */
    object-fit: cover;
    border-radius: 14px;
    transition: 0.3s ease;
  }

  .galeria img:active{
    transform: scale(0.97);
  }

  /* imagem google */
  .containerinstagra a img{
    width: 150px;
    display: block;
    margin: 30px auto 0;
  }
  /* ===== MENU LATERAL MOBILE ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: linear-gradient(180deg, #111, #000);
  box-shadow: -10px 0 30px rgba(0,0,0,0.6);
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
  z-index: 2000;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.mobile-drawer a:hover {
  color: #00c853;
  padding-left: 8px;
}

/* Fundo escuro quando abre */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Animação botão */
#menuToggle {
  cursor: pointer;
  transition: 0.3s;
}

#menuToggle.active {
  transform: rotate(90deg);
}

  body {
    background: #0d0d0d;
  }

  /* ===== MENU MOBILE SUPERIOR ===== */
  .menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu-mobile i {
    font-size: 22px;
    transition: 0.3s;
  }

  .menu-mobile i:active {
    transform: scale(0.9);
  }

  /* ===== HEADER ===== */
  .header-top {
    margin-top: 60px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 20px;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    border-radius: 0 0 25px 25px;
  }

  /* ===== LOGO CENTRAL DESTACADA ===== */
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    width: 140px;
    height: auto;
    border-radius: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: 0.3s;
  }

  .logo img:hover {
    transform: scale(1.05);
  }

  /* ===== ESCONDER BUSCA NO MOBILE ===== */
  .search-box {
    display: none;
  }

  /* ===== ESCONDER MENU DESKTOP ===== */
  .header-menu {
    display: none;
  }

  /* ===== BARRA INFERIOR ESTILO APP ===== */
  .header-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
  }

  .action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #ccc;
    transition: 0.3s;
  }

  .action-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: 0.3s;
  }

  .action-item:hover {
    color: #00c853;
  }

  .action-item:hover i {
    transform: translateY(-3px);
    color: #00c853;
  }

  /* Espaço para não ficar atrás da barra inferior */
  body {
    padding-bottom: 70px;
  }

  /* ===== PRODUTOS ===== */
  .products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .card {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  /* ===== BANNERS ===== */
  .banner_desktop {
    display: none;
  }

  .banner_mobile {
    display: block;
    width: 100%;
  }

  /* ===== GALERIA ===== */
  .galeria {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  /* ===== FOOTER ===== */
  .footer-container {
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
  }
}