/* ==================================================
   🎯 ESTILOS PADRÃO — HEADER E FOOTER
   ================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ====== BODY ====== */
body {
  background-color: #0a0a0a;
  color: #fff;
}

/* ====== HEADER ====== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  z-index: 999;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f2c94c;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #f2c94c;
}

/* ====== BOTÕES HEADER ====== */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e1e1e, #3b3b3b);
  color: #fff;
  border: 1px solid #444;
  padding: 8px 0px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-buttons button i {
  font-size: 1rem;
}

.header-buttons button:hover {
  background: linear-gradient(135deg, #2a2a2a, #505050);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

#btnConta {
  width: 150px;
  background: linear-gradient(135deg, #444, #666);
}

#btnConta:hover {
  background: linear-gradient(135deg, #555, #777);
}

#btnCarrinho {
  width: 150px;
  text-align: center;
  background: linear-gradient(135deg, #0078d7, #0096ff);
}

#btnCarrinho:hover {
  background: linear-gradient(135deg, #0096ff, #00b0ff);
  box-shadow: 0 0 12px rgba(0, 150, 255, 0.4);
}

#btnVoltarCatalogo {
  width: 150px;
  text-align: center;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  font-weight: 700;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* brilho suave de destaque */
#btnVoltarCatalogo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

#btnVoltarCatalogo:hover::before {
  left: 100%;
}

#btnVoltarCatalogo:hover {
  background: linear-gradient(135deg, #ffd700, #e4c54d);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

#btnVoltarCatalogo i {
  font-size: 1rem;
  color: #000;
}


/* ====== FOOTER ====== */
.main-footer {
  background: #111;
  color: #f5f5f5;
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
  border-top: 3px solid #c7a45a;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.05rem;
  color: #c7a45a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.93rem;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #c7a45a;
  text-decoration: underline;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.logo-footer {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.socials a {
  color: #f5f5f5;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: #c7a45a;
  transform: scale(1.1);
}

.contact-info {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 0.95rem;
}

.contact-info i {
  color: #c7a45a;
  margin-right: 8px;
}

#selos {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.payment-badges {
  width: 45px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.payment-badges:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  color: #aaa;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .header-buttons {
    flex-direction: column;
 
  }

  .main-footer {
    padding: 40px 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .logo-footer {
    font-size: 1.5rem;
  }

  a[href="#garantias"] {
    margin-left: 0px;
  }

  a[href="../index.html#garantias"] {
    margin-left: 0px;
  }


}
