@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Cores Principais */
  --color-pink-light: #FCE7EB;
  --color-pink-accent: #E8B0BA;
  --color-white: #FFFFFF;
  --color-gold: #D4AF37;
  --color-gold-light: #FDF7E7;
  --color-wine: #8A3347;
  --color-wine-dark: #662031;
  
  /* WhatsApp */
  --color-whatsapp: #25D366;
  --color-whatsapp-grad: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --color-whatsapp-hover: #1EBE5D;
  
  /* Neutras */
  --color-bg-start: #FFF0F3;
  --color-bg-end: #F8D9E0;
  --color-text-main: #2C1A1D;
  --color-text-muted: #6B5256;
  --color-text-light: #94797E;
  --color-border: rgba(255, 255, 255, 0.7);
  --color-glass-bg: rgba(255, 255, 255, 0.78);
  --shadow-subtle: 0 10px 30px rgba(138, 51, 71, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: radial-gradient(120% 120% at 50% 0%, #FFFFFF 0%, var(--color-bg-start) 40%, var(--color-bg-end) 100%);
  color: var(--color-text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 80px 16px;
}

.container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Glassmorphism Main Card */
.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 24px 50px rgba(138, 51, 71, 0.12), 
              0 8px 24px rgba(138, 51, 71, 0.06), 
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Decorative top gradient bar */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #F4C2C2, #D4AF37, #8A3347);
}

/* Top Nav & Branding */
.header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(138, 51, 71, 0.08);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(138, 51, 71, 0.12);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--color-wine);
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Instagram Badge */
.instagram-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid rgba(138, 51, 71, 0.15);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-wine);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(138, 51, 71, 0.05);
}

.instagram-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  color: var(--color-wine-dark);
}

.instagram-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Curator / Expert Card */
.curator-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow-subtle);
}

.curator-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.curator-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 10px rgba(138, 51, 71, 0.15);
}

.verified-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #1877F2;
  border: 1.5px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-tag svg {
  width: 10px;
  height: 10px;
  fill: #FFFFFF;
}

.curator-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.curator-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-wine);
}

.curator-quote {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  font-style: italic;
}

/* Main Typography */
h1 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--color-text-main);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

h1 span.highlight {
  color: var(--color-wine);
  position: relative;
  display: inline-block;
}

h1 span.highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: #F8C6CE;
  opacity: 0.55;
  z-index: -1;
  border-radius: 3px;
}

.subtitle {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  font-weight: 500;
  padding: 0 4px;
}

.subtitle strong {
  color: var(--color-wine);
}

/* Urgency Box */
.urgency-box {
  width: 100%;
  background: rgba(138, 51, 71, 0.05);
  border: 1px solid rgba(138, 51, 71, 0.12);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 22px;
  text-align: left;
}

.urgency-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-wine);
}

.urgency-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.urgency-title svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.spots-counter {
  background: var(--color-wine);
  color: var(--color-white);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(138, 51, 71, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-wine) 0%, var(--color-gold) 50%, var(--color-wine) 100%);
  background-size: 200% auto;
  border-radius: 4px;
  width: 90%;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shimmer 3s infinite linear;
}

/* High Converting CTA Button */
.cta-wrapper {
  width: 100%;
  margin-bottom: 24px;
}

.btn-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-whatsapp-grad);
  color: var(--color-white);
  border: none;
  border-radius: 20px;
  padding: 16px 20px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: pulse-glow 2.4s infinite;
  text-align: left;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
  animation-play-state: paused;
}

.btn-cta:active {
  transform: translateY(1px);
}

.btn-icon svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.btn-text small {
  font-size: 0.8rem;
  opacity: 0.92;
  font-weight: 600;
}

.bottom-cta {
  margin-top: 10px;
  margin-bottom: 24px;
}

.safe-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.safe-subtext svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Trusted Stores Section */
.trusted-stores {
  width: 100%;
  margin-bottom: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(138, 51, 71, 0.2);
  border-radius: 16px;
}

.trusted-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-wine);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stores-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.store-badge {
  background: var(--color-white);
  border: 1px solid rgba(138, 51, 71, 0.1);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-main);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Section Common Styles */
.section-badge {
  display: inline-block;
  background: var(--color-wine);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

/* Deals Showcase */
.deals-showcase {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.deal-card {
  background: var(--color-white);
  border: 1px solid rgba(138, 51, 71, 0.12);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deal-discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #E53935;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
}

.deal-info {
  margin-top: 4px;
}

.deal-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.3;
  margin-bottom: 8px;
  padding-right: 32px;
}

.deal-prices {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 6px;
}

.price-old {
  font-size: 0.72rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.price-new {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2E7D32;
}

.deal-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-wine);
  background: var(--color-pink-light);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid rgba(138, 51, 71, 0.12);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  box-shadow: var(--shadow-subtle);
}

.testimonial-card.compact {
  padding: 14px 16px;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.user-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.user-city {
  font-size: 0.74rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.stars {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.testimonial-card.compact .testimonial-text {
  margin-bottom: 0;
}

.testimonial-photo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-start);
  border: 1px solid rgba(138, 51, 71, 0.08);
  border-radius: 12px;
  padding: 6px 10px;
}

.testimonial-photo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.photo-caption {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-wine);
}

/* Benefits Grid */
.benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(138, 51, 71, 0.1);
  padding-top: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #25D366;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.benefit-content p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* Social Proof Stack */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid rgba(138, 51, 71, 0.1);
  padding: 10px 16px;
  border-radius: 18px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(138, 51, 71, 0.04);
  margin-bottom: 16px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-count {
  background: var(--color-gold);
  color: var(--color-white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-proof-text {
  font-size: 0.82rem;
  color: var(--color-text-main);
  text-align: left;
  line-height: 1.35;
  font-weight: 500;
}

.social-proof-text strong {
  font-weight: 700;
  color: var(--color-wine);
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  font-size: 0.74rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: 10px;
  border-top: 1px solid rgba(138, 51, 71, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer a {
  color: var(--color-wine);
  text-decoration: none;
  font-weight: 700;
}

footer a:hover {
  color: var(--color-gold);
}

.disclaimer {
  font-size: 0.68rem;
  color: var(--color-text-light);
}

/* Live Social Notification Toast */
.live-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  max-width: 320px;
}

.live-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 32px;
  height: 32px;
  background: var(--color-pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-content {
  text-align: left;
}

.toast-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-wine);
  line-height: 1.2;
}

.toast-subtitle {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Sticky Bottom Bar for Mobile */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(138, 51, 71, 0.15);
  padding: 12px 16px;
  z-index: 990;
  display: none; /* Shown via JS */
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  display: block;
  transform: translateY(0);
}

.sticky-btn {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-whatsapp-grad);
  color: #FFFFFF;
  border-radius: 14px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.sticky-btn svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
}

/* Animations */
@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 
                0 0 0 8px rgba(37, 211, 102, 0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  }
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

/* Responsiveness */
@media (max-width: 480px) {
  body {
    padding: 12px 10px 70px 10px;
  }
  
  .glass-card {
    padding: 24px 16px;
    border-radius: 24px;
  }
  
  h1 {
    font-size: 1.55rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .btn-text strong {
    font-size: 1.02rem;
  }
  
  .btn-cta {
    padding: 14px 16px;
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .live-toast {
    left: 10px;
    right: 10px;
    bottom: 74px;
    max-width: none;
  }
}
