* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0f0f0f;
  /* Fundo escuro elegante */
  color: #ffffff;
}

/* Navegação */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 8%;
  background: #000;
  border-bottom: 2px solid #333;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.logo span {
  color: #ff3e3e;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: #bbb;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.active {
  color: #ff3e3e;
}

/* Layout Principal */
.container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
}

.hero-section {
  display: flex;
  gap: 25px;
  align-items: stretch;
}

/* Banner */
.banner {
  flex: 2.5;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  /* AJUSTADO: Fundo mais claro para a imagem aparecer mais */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent 70%);
  display: flex;
  align-items: center;
  padding: 60px;
  z-index: 10;
  pointer-events: none;
}

/* Caixas Laterais */
.info-boxes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 8px;
  border: 1px solid #333;
  text-align: center;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.box:hover {
  background: #222;
  border-color: #ff3e3e;
  transform: scale(1.02);
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.box h3 {
  margin-bottom: 10px;
  color: #ff3e3e;
  text-transform: uppercase;
}

.box p {
  color: #999;
  font-size: 0.9rem;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 3rem;
  color: #555;
  font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
  }

  .banner {
    height: 300px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0b0c10;
  /* Preto azulado profundo */
  color: #e5e5e5;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8%;
  background: #1f2833;
  border-bottom: 3px solid #66fcf1;
  /* Detalhe em ciano neon */
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #fff;
}

.logo span {
  color: #66fcf1;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #c5c6c7;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-links a:hover,
.active {
  color: #66fcf1;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.hero-section {
  display: flex;
  gap: 20px;
  min-height: 420px;
}

/* Banner */
.banner {
  flex: 2;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.banner-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}

.badge {
  display: inline-block;
  background: #66fcf1;
  color: #0b0c10;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.banner h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  max-width: 500px;
}

/* Info Boxes */
.info-boxes {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box {
  background: #1f2833;
  padding: 25px;
  border: 1px solid #45a29e;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  font-size: 0.65rem;
  color: #45a29e;
  font-weight: bold;
  margin-bottom: 5px;
}

.box h3 {
  color: #66fcf1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.box p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #c5c6c7;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #1f2833;
  margin-top: 50px;
  color: #45a29e;
}

/* Responsividade */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
  }

  .banner {
    height: 300px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #050505;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 8%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #222;
  backdrop-filter: blur(10px);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
}

.logo span {
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  opacity: 0.7;
}

.nav-links a:hover,
.active {
  opacity: 1;
  color: #00d4ff;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 40px;
}

.hero-section {
  display: flex;
  gap: 30px;
}

/* Banner Estilizado */
.banner {
  flex: 2.5;
  height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.slider-container {
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slider-track img {
  width: 25%;
  height: 100%;
  object-fit: cover;
  /* Mudei para cover para preencher o banner todo sem sobras pretas */
  background-color: #000;
  flex-shrink: 0;
  transition: transform 0.8s ease;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  /* AJUSTE: Gradiente começando da esquerda para clarear o centro */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  /* Organiza em coluna */
  justify-content: center;
  /* Centraliza verticalmente */
  align-items: flex-start;
  /* Joga tudo para o início (esquerda) */
  /* AJUSTE: Esse padding aqui é o que empurra o texto para longe da borda esquerda */
  padding-left: 80px;
  z-index: 10;
  pointer-events: none;
}

.subtitle {
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-title {
  font-size: 3.2rem;
  /* Reduzi um pouco para não quebrar linha à toa */
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
  color: #fff;
  max-width: 500px;
  /* Garante que o texto não ocupe o banner inteiro */
}

/* Restante do código mantido igual... */

.main-title span {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.info-boxes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box {
  position: relative;
  background: #111;
  height: 50%;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: 0.4s;
  border: 1px solid #222;
}

.box:hover {
  background: #161616;
  border-color: #00d4ff;
  transform: translateX(-10px);
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #00d4ff;
}

.box p {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 50px;
  opacity: 0.4;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

@media (max-width: 1000px) {
  .hero-section {
    flex-direction: column;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .banner-overlay {
    padding-left: 30px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.product-card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: 0.4s;
}

.product-card:hover {
  border-color: #00d4ff;
  transform: translateY(-5px);
}

.product-card:hover .product-image img {
  opacity: 1;
  transform: scale(1.1);
}

.product-details h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-price {
  display: block;
  font-family: 'Orbitron', sans-serif;
  color: #00d4ff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.btn-order {
  display: block;
  padding: 8px;
  border: 1px solid #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-order:hover {
  background: #00d4ff;
  color: #000;
  border-color: #00d4ff;
}

.contact-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  background: #0f0f0f;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #222;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-item h4 {
  color: #00d4ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.info-item p {
  color: #ccc;
  font-size: 0.95rem;
}

.contact-form-container {
  flex: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-send {
  background: #00d4ff;
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Orbitron', sans-serif;
}

.btn-send:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 20px;
  }
}

#cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #00d4ff;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

#cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: bold;
}

.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 350px;
  height: 100%;
  background: #0f0f0f;
  border-left: 2px solid #00d4ff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  transition: 0.4s;
  z-index: 1001;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

.close-cart {
  font-size: 2rem;
  cursor: pointer;
  color: #ff3e3e;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #222;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  color: #00d4ff;
}

.qty-input {
  width: 50px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  text-align: center;
}

.product-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.volume-selector,
.qty-input {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  font-size: 0.8rem;
  outline: none;
  transition: 0.3s;
}

.volume-selector:focus,
.qty-input:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.btn-order {
  display: block;
  width: 100%;
  background: #00d4ff;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.btn-order:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.cep-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.cep-box {
  background: #111;
  border: 1px solid #00d4ff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.cep-box h3 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.cep-box h3 span {
  color: #00d4ff;
}

.cep-input-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#cep-input {
  flex: 1;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  outline: none;
}

#cep-input:focus {
  border-color: #00d4ff;
}

.btn-cep {
  background: #00d4ff;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-cep:hover {
  background: #fff;
  box-shadow: 0 0 15px #00d4ff;
}

.cep-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}