/* ============================================
 * NOVATEC.PC.SOLUTION - ESTILOS
 * Design Cyberpunk Industrial Premium
 * ============================================ */

:root {
  --primaria: #00ff00;
  --primaria-hover: #00cc00;
  --fundo: #0a0e27;
  --fundo-card: #1a1f3a;
  --texto: #ffffff;
  --texto-muted: #8b92a9;
  --erro: #ff3333;
  --sucesso: #00ff00;
  --border: #2a3f5f;
  --vermelho: #ff0000;
  --amarelo: #ffff00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  background-color: var(--fundo);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Padrão de fundo */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(0deg, transparent 24%, rgba(255, 0, 0, 0.05) 25%, rgba(255, 0, 0, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 0, 0.05) 75%, rgba(255, 0, 0, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(255, 0, 0, 0.05) 25%, rgba(255, 0, 0, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 0, 0.05) 75%, rgba(255, 0, 0, 0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
  border-bottom: 3px solid var(--vermelho);
  border-top: 3px dashed var(--vermelho);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primaria);
  text-decoration: none;
  border: 2px dashed var(--primaria);
  padding: 10px 15px;
  line-height: 1.2;
}

.logo-icon {
  font-size: 24px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--texto);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primaria);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primaria);
  text-shadow: 0 0 10px var(--primaria);
}

.btn-contato {
  background: var(--primaria);
  color: var(--fundo);
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.btn-contato:hover {
  background: var(--primaria-hover);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  border: 2px solid var(--primaria);
  color: var(--primaria);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: bold;
}

.hero h1 {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--texto);
}

.hero h1 .destaque {
  color: var(--primaria);
  text-shadow: 0 0 20px var(--primaria);
}

.hero p {
  font-size: 15px;
  color: var(--texto-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  border-left: 3px solid var(--primaria);
  padding-left: 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primaria);
  color: var(--fundo);
  border: none;
  padding: 16px 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.btn-primary:hover {
  background: var(--primaria-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

.btn-secondary {
  background: transparent;
  color: var(--texto);
  border: 2px dashed var(--texto);
  padding: 14px 38px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primaria);
  color: var(--primaria);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.status-box {
  background: rgba(0, 255, 0, 0.05);
  border: 2px solid var(--primaria);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  width: fit-content;
}

.status-label {
  font-size: 11px;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.status-value {
  font-size: 20px;
  color: var(--primaria);
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--primaria);
}

.hero-image {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
}

/* ============================================
   SEÇÕES
   ============================================ */

section {
  padding: 80px 0;
  border-top: 2px dashed var(--vermelho);
}

section h2 {
  font-size: 56px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

section h2 .destaque {
  color: var(--primaria);
  text-shadow: 0 0 20px var(--primaria);
}

section > p {
  font-size: 15px;
  color: var(--texto-muted);
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVIÇOS
   ============================================ */

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.servico-card {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.servico-card:hover {
  border-color: var(--primaria);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
  transform: translateY(-5px);
}

.servico-imagem {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.servico-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servico-icon {
  font-size: 32px;
  color: var(--primaria);
  margin: 20px 0 0 20px;
  text-shadow: 0 0 10px var(--primaria);
}

.servico-card h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 15px 20px 10px;
  color: var(--texto);
}

.servico-card p {
  font-size: 13px;
  color: var(--texto-muted);
  line-height: 1.6;
  padding: 0 20px 20px;
}

/* ============================================
   STATS
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.stat {
  text-align: center;
  padding: 30px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: rgba(26, 31, 58, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: var(--primaria);
  background: rgba(0, 255, 0, 0.05);
}

.stat-number {
  font-size: 48px;
  color: var(--primaria);
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0 0 20px var(--primaria);
}

.stat-label {
  font-size: 12px;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   POR QUE ESCOLHER
   ============================================ */

.porque {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.porque-card {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  transition: all 0.3s ease;
}

.porque-card:hover {
  border-color: var(--primaria);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.porque-icon {
  font-size: 24px;
  color: var(--primaria);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--primaria);
}

.porque-card h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--texto);
}

.porque-card p {
  font-size: 13px;
  color: var(--texto-muted);
  line-height: 1.6;
}

.btn-historia {
  display: block;
  margin: 0 auto;
}

/* ============================================
   BUILDS
   ============================================ */

.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.build-card {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.build-card:hover {
  border-color: var(--primaria);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
  transform: translateY(-5px);
}

.build-card h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--texto);
}

.build-card p {
  font-size: 12px;
  color: var(--texto-muted);
  margin-bottom: 20px;
}

.build-card .preco {
  font-size: 28px;
  color: var(--primaria);
  font-weight: bold;
  text-shadow: 0 0 10px var(--primaria);
}

/* ============================================
   LOJA
   ============================================ */

.loja-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.search-bar {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  color: var(--texto);
  font-size: 13px;
  transition: all 0.3s ease;
}

.search-bar:focus {
  outline: none;
  border-color: var(--primaria);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filtro-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--texto);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.filtro-btn.ativo {
  background: var(--primaria);
  color: var(--fundo);
  border-color: var(--primaria);
}

.filtro-btn:hover {
  border-color: var(--primaria);
  color: var(--primaria);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.produto-card {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.produto-card:hover {
  border-color: var(--primaria);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
  transform: translateY(-5px);
}

.produto-imagem {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.produto-imagem img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.produto-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produto-nome {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--texto);
}

.produto-descricao {
  font-size: 12px;
  color: var(--texto-muted);
  margin-bottom: 12px;
  flex: 1;
}

.produto-preco {
  font-size: 18px;
  color: var(--primaria);
  font-weight: bold;
  margin-bottom: 12px;
  text-shadow: 0 0 10px var(--primaria);
}

.produto-acoes {
  display: flex;
  gap: 10px;
}

.btn-carrinho {
  flex: 1;
  background: var(--primaria);
  color: var(--fundo);
  border: none;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-carrinho:hover {
  background: var(--primaria-hover);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* ============================================
   CARRINHO
   ============================================ */

.carrinho-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.carrinho-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.carrinho-itens {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  min-height: 300px;
}

.carrinho-item {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.carrinho-item:hover {
  background: rgba(0, 255, 0, 0.05);
}

.carrinho-item-imagem {
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrinho-item-imagem img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carrinho-item-info h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--texto);
}

.carrinho-item-info p {
  font-size: 13px;
  color: var(--primaria);
  font-weight: bold;
}

.carrinho-item-acoes {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quantidade-input {
  width: 60px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--texto);
  text-align: center;
  border-radius: 4px;
  font-size: 12px;
}

.btn-remover {
  background: transparent;
  color: var(--erro);
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-remover:hover {
  color: var(--primaria);
  transform: scale(1.2);
}

.carrinho-resumo {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--primaria);
  border-radius: 4px;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.carrinho-resumo h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--texto);
}

.resumo-linha {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
}

.resumo-total {
  border-top: 2px solid var(--primaria);
  padding-top: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--primaria);
  text-shadow: 0 0 10px var(--primaria);
  display: flex;
  justify-content: space-between;
}

.btn-checkout {
  width: 100%;
  background: var(--primaria);
  color: var(--fundo);
  border: none;
  padding: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background: var(--primaria-hover);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.depoimento-card {
  background: rgba(26, 31, 58, 0.5);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 30px;
  transition: all 0.3s ease;
}

.depoimento-card:hover {
  border-color: var(--primaria);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.depoimento-card p {
  font-size: 14px;
  color: var(--texto-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}

.depoimento-card strong {
  color: var(--primaria);
  text-shadow: 0 0 10px var(--primaria);
}

/* ============================================
   CONTATO
   ============================================ */

.contato {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 255, 0, 0.05) 100%);
  text-align: center;
}

.contato h2 {
  margin-bottom: 20px;
}

.contato p {
  margin-bottom: 40px;
}

.btn-whatsapp {
  background: var(--primaria);
  color: var(--fundo);
  border: none;
  padding: 18px 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.btn-whatsapp:hover {
  background: var(--primaria-hover);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
  border-top: 3px solid var(--vermelho);
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h3 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--primaria);
}

footer p {
  font-size: 12px;
  color: var(--texto-muted);
  margin-bottom: 8px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links a {
  display: block;
  color: var(--texto-muted);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primaria);
  text-shadow: 0 0 10px var(--primaria);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--texto-muted);
  font-size: 11px;
}

/* ============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primaria);
  color: var(--fundo);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.whatsapp-btn:hover {
  background: var(--primaria-hover);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
}

/* ============================================
   NOTIFICAÇÕES (TOAST)
   ============================================ */

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(26, 31, 58, 0.95);
  border: 2px solid var(--primaria);
  color: var(--texto);
  padding: 20px;
  border-radius: 4px;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
  display: none;
}

.toast.show {
  display: block;
}

.toast.erro {
  border-color: var(--erro);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

  section h2 {
    font-size: 36px;
  }

  .servicos-grid,
  .stats,
  .porque-grid,
  .builds-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .carrinho-container {
    grid-template-columns: 1fr;
  }

  .carrinho-resumo {
    position: static;
  }

  nav {
    gap: 15px;
    font-size: 11px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  .loja-header {
    flex-direction: column;
  }

  .search-bar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav a {
    width: 100%;
    text-align: center;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  section h2 {
    font-size: 28px;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .carrinho-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }

  .carrinho-item-acoes {
    grid-column: 1 / -1;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}
