/* Reset e Fontes */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-gradient: linear-gradient(180deg, #fffbf8 0%, #fff4ef 50%, #fdf0ea 100%);
  --color-text-dark: #2c1f19;
  --color-text-sub: #5c473e;
  --color-orange-main: #ff7a00;
  --color-orange-dark: #e65c00;
  --color-orange-glow: rgba(255, 122, 0, 0.45);
  --color-coral: #ff5252;
  --color-gold: #e69d00;
  --color-white: #ffffff;
}

body {
  font-family: var(--font-main);
  background: var(--bg-gradient);
  color: var(--color-text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container Principal */
.landing-container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  padding: 28px 16px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Cabeçalho / Hero */
.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight-orange {
  color: var(--color-orange-main);
  filter: drop-shadow(0 2px 6px rgba(255, 122, 0, 0.2));
}

.text-dark {
  color: var(--color-text-dark);
}

/* Avatar com Borda Dourada Pulsante e Tag MAMÃE DUDA */
.avatar-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.avatar-glow {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.35) 0%, transparent 75%);
  border: 3.5px solid var(--color-orange-main);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
  animation: pulseBrandOrange 2.2s infinite alternate ease-in-out;
}

@keyframes pulseBrandOrange {
  0% { transform: scale(0.98); box-shadow: 0 0 12px rgba(255, 122, 0, 0.4); }
  100% { transform: scale(1.06); box-shadow: 0 0 24px rgba(255, 122, 0, 0.7), 0 0 40px rgba(255, 183, 0, 0.5); }
}

.avatar-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3.5px solid #ff7a00;
  background: #ffffff;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.avatar-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffb700 0%, #ff8800 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 4px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
  border: 2px solid #ffffff;
  white-space: nowrap;
  letter-spacing: 0.04em;
  z-index: 10;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  line-height: 1.55;
  max-width: 340px;
}

.text-coral {
  color: #e64a19;
}

.text-dark-bold {
  color: var(--color-text-dark);
  font-weight: 800;
}

.text-orange {
  color: var(--color-orange-main);
  font-weight: 800;
}

.text-xl {
  font-size: 1.15rem;
  font-weight: 900;
}

/* Barra Marquee Animada de Lojas Parceiras */
.stores-ticker-section {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 0;
  box-shadow: 0 8px 24px rgba(74, 56, 48, 0.08);
  border: 1.5px solid rgba(255, 122, 0, 0.25);
}

.stores-ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.stores-ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: scrollStores 15s linear infinite;
  white-space: nowrap;
  padding-left: 18px;
}

.stores-ticker-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

@keyframes scrollStores {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Caixa de Escassez e Vagas Limitadas */
.scarcity-box {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 18px rgba(74, 56, 48, 0.06);
}

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

.scarcity-pulse-dot {
  width: 9px;
  height: 9px;
  background: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff3b30;
  animation: blinkRed 1.2s infinite ease-in-out;
}

@keyframes blinkRed {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.scarcity-label {
  font-size: 0.8rem;
  color: var(--color-text-dark);
  letter-spacing: 0.01em;
}

.scarcity-bar {
  width: 100%;
  height: 8px;
  background: #f0e6e0;
  border-radius: 10px;
  overflow: hidden;
}

.scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9500 0%, #ff3b30 100%);
  border-radius: 10px;
  transition: width 1s ease;
}

/* Botão Principal de Conversão Unificado (Laranja da Marca) */
.cta-section {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ff7a00 0%, #e65c00 100%);
  border: 2px solid #ffaa44;
  box-shadow: 0 8px 25px var(--color-orange-glow), 0 4px 12px rgba(0,0,0,0.1);
  color: #ffffff;
  text-decoration: none;
  animation: pulseOrangeGlow 2.2s infinite ease-in-out;
  transition: transform 0.2s ease;
}

@keyframes pulseOrangeGlow {
  0% {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.7), 0 0 20px rgba(255, 183, 0, 0.5);
  }
  100% {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
  }
}

.brand-cta-btn:hover {
  transform: scale(1.04);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.btn-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-main-text {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.btn-sub-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff3e0;
  margin-top: 2px;
}

/* Selo de Redução de Objeção (Anti-Spam) */
.objection-badge {
  margin-top: 10px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-sub);
  letter-spacing: 0.01em;
}

/* Carrossel de Ofertas */
.carousel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.badge-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8c5d49;
  padding: 5px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  background: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(74, 56, 48, 0.05);
}

.carousel-container {
  width: 100%;
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(74, 56, 48, 0.08);
  border-radius: 20px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-track {
  width: 100%;
  position: relative;
  min-height: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 85%;
  opacity: 0;
  transform: scale(0.88);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.slide-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(74, 56, 48, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid rgba(255, 122, 0, 0.25);
}

/* Selo Vermelho de Porcentagem de Desconto */
.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff2a2a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(255, 42, 42, 0.35);
  z-index: 10;
  letter-spacing: 0.03em;
  border: 1.5px solid #ffffff;
}

.slide-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #ffffff;
  display: block;
}

/* Controles */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding: 0 6px;
}

.nav-btn {
  background: transparent;
  border: none;
  color: var(--color-orange-main);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
}

.nav-btn:hover {
  color: var(--color-text-dark);
  transform: scale(1.15);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 18px;
  border-radius: 10px;
  background: var(--color-orange-main);
}

/* Prova Social Estática */
.social-proof-section {
  width: 100%;
  text-align: center;
}

.social-proof-text {
  font-size: 0.92rem;
  color: var(--color-text-sub);
}

/* Pop-up de Prova Social Dinâmica em Tempo Real */
.toast-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #ffffff;
  color: #111111;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(74, 56, 48, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1.5px solid var(--color-orange-main);
  pointer-events: none;
  max-width: 90%;
  white-space: nowrap;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon-check {
  width: 26px;
  height: 26px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

.toast-text-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

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

.toast-desc {
  font-size: 0.72rem;
  color: var(--color-text-sub);
  font-weight: 600;
  line-height: 1.2;
}
