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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  min-height: 100vh;
  color: #fff;
}

header {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, rgba(255,165,0,0.1) 0%, transparent 100%);
}

.logo-image {
  height: 230px;
  width: 230px;
}

.logo {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff8c00, #ffd700, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(255,140,0,0.3);
  margin-bottom: 10px;
}

.tagline {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title::before,
.section-title::after {
  content: '';
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, transparent, #ff8c00, transparent);
}

.section-title i {
  color: #ff8c00;
  font-size: 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.1), transparent);
  transition: left 0.5s;
}

.card:hover::before { left: 100%; }

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255,140,0,0.2), 0 0 60px rgba(255,140,0,0.1);
  border-color: rgba(255,140,0,0.3);
}

.card-emoji {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s;
}

.card:hover .card-emoji { transform: scale(1.2) rotate(-5deg); }

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

.card-desc {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-price-small {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-small {
  font-weight: 800;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  padding: 60px 20px;
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,140,0,0.2);
  border-color: rgba(255,140,0,0.3);
}

.contact-item i {
  font-size: 1.5rem;
}

.contact-item.whatsapp i { color: #25d366; }
.contact-item.instagram i { color: #e4405f; }
.contact-item.phone i { color: #ff8c00; }

.contact-item span {
  font-weight: 600;
}

.copyright {
  color: #555;
  font-size: 0.9rem;
}

/* Carrinho flutuante */
.floating-cart {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.3s;
}

.floating-cart.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-cart:hover {
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.5);
  transform: scale(1.05);
}

.floating-cart .floating-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #fff;
  color: #ff8c00;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* Overlay e modais */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 140, 0, 0.3);
}

.modal-title {
  font-size: 1.35rem;
  margin-bottom: 20px;
  padding-right: 40px;
  color: #fff;
}

.modal-title i {
  color: #ff8c00;
  margin-right: 8px;
}

/* Modal adicionar */
.modal-add .modal-title {
  margin-bottom: 16px;
}

.modal-add-body {
  margin-bottom: 20px;
}

.modal-add-size {
  margin-bottom: 16px;
}

.modal-add-size label,
.modal-add-qty label {
  display: block;
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.modal-size-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1rem;
}

.modal-add-qty .qty-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.qty-btn:hover {
  transform: scale(1.05);
}

.qty-btn:active {
  opacity: 0.9;
}

#modal-qty {
  width: 60px;
  text-align: center;
  padding: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-add-cart {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}

/* Modal carrinho (lista) */
.modal-cart {
  max-width: 440px;
}

.cart-list {
  max-height: 50vh;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-empty {
  color: #888;
  text-align: center;
  padding: 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cart-item-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cart-item-title {
  display: block;
  font-weight: 600;
  color: #fff;
}

.cart-item-size {
  color: #ff8c00;
  font-weight: 500;
  font-size: 0.9em;
}

.cart-item-detail {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-top: 2px;
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cart-item-total {
  font-weight: 700;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-item-remove {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #aaa;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-item-remove:hover {
  background: rgba(220, 53, 69, 0.4);
  color: #fff;
}

.cart-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-payment {
  margin-bottom: 16px;
}

.cart-payment-label {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cart-payment-options {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.cart-payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #ccc;
  font-size: 1rem;
}

.cart-payment-option input {
  width: 18px;
  height: 18px;
  accent-color: #ff8c00;
  cursor: pointer;
}

.cart-payment-option:has(input:checked) {
  color: #fff;
}

.btn-send-whatsapp {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-send-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-send-whatsapp i {
  font-size: 1.3rem;
}

.cart-total {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-clear-cart {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: transparent;
  color: #999;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-clear-cart:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

@media (max-width: 600px) {
  .logo { font-size: 2.5rem; }
  .section-title { font-size: 1.5rem; }
  .contact-links { flex-direction: column; align-items: center; }

  .card {
    padding: 15px;
  }

  .card-emoji {
    font-size: 1.8rem;
    margin-bottom: 0;
    display: inline;
  }

  .card-header {
    margin-bottom: 6px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .card-price {
    font-size: 1.3rem;
  }

  .card-badge {
    padding: 4px 8px;
    font-size: 0.65rem;
    top: 10px;
    right: 10px;
  }

  .cards-grid {
    gap: 15px;
  }

  .section {
    margin-bottom: 40px;
  }

  .floating-cart {
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .floating-cart .floating-cart-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .modal {
    margin: 10px;
    max-height: 85vh;
  }
}
