/* Hero - Background */
.hero {
  
  background-size: cover;
  background-position: center;
}

/* Color Marquee - Copy Feedback */
.marquee-swatch {
  cursor: pointer;
}
.marquee-swatch:active {
  transform: scale(0.98);
}

/* WhatsApp Fullscreen Overlay */
.wa-overlay {
  position: fixed;
  inset: 0;
  background: #25D366;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 68px) calc(100% - 68px));
  transition: clip-path 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wa-overlay.active {
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(150% at calc(100% - 68px) calc(100% - 68px));
}

/* Botão Fechar */
.wa-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.wa-close:hover {
  background: rgba(255,255,255,0.25);
}

/* Formulário */
.wa-form-container {
  width: 100%;
  max-width: 400px;
  margin-bottom: 48px;
}

.wa-typewriter {
  color: white;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
  min-height: 1.4em;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.wa-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wa-form input,
.wa-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255,255,255,0.9);
  color: #1a1b21;
}

.wa-form input::placeholder,
.wa-form textarea::placeholder {
  color: #666;
}

.wa-form textarea {
  resize: vertical;
  min-height: 120px;
}

.wa-form .btn-send {
  padding: 16px 32px;
  background: #1a1b21;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.wa-form .btn-send:hover {
  transform: translateY(-2px);
  background: #333;
}

/* WhatsApp Direct Link */
.wa-direct {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.wa-direct:hover {
  transform: scale(1.1);
}
.wa-direct svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Purchase Toast - Prova Social */
.purchase-toast {
  position: fixed;
  right: 32px;
  top: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  z-index: 1000;
  max-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  font-family: var(--f-body, 'Inter', sans-serif);
}

.toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #9ca3af;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: #4b5563;
}

.purchase-toast.visible {
  opacity: 1;
  visibility: visible;
}

.purchase-toast-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.purchase-toast-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purchase-toast-icon svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.purchase-toast-title {
  font-size: 12px;
  font-weight: 600;
  color: #1a1b21;
}

.purchase-toast-content {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
}

.purchase-toast-name {
  font-weight: 600;
  color: #1a1b21;
}

.purchase-toast-product {
  font-weight: 500;
  color: #2563eb;
}

.purchase-toast-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 11px;
  color: #6b7280;
}

.purchase-toast-location svg {
  width: 11px;
  height: 11px;
  fill: #9ca3af;
}

@media (max-width: 768px) {
  .purchase-toast {
    left: 16px;
    right: 16px;
    max-width: none;
    top: auto;
    bottom: 100px;
    transform: none;
  }
}