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

:root {
  /* Cores - Identidade Visual Lilás, Bege e Rosa */
  --bg-page: linear-gradient(135deg, #fbf8f5 0%, #f4eef7 100%); /* Bege muito suave para lilás claro */
  --bg-card: rgba(255, 255, 255, 0.85);
  
  --color-lilac-light: #f3ebf6;
  --color-lilac-medium: #d4bde2;
  --color-lilac-dark: #8c5ba3;
  
  --color-pink-light: #fcecef;
  --color-pink-medium: #f3aab6;
  --color-pink-dark: #d64a63;
  
  --color-beige-light: #faf7f2;
  --color-beige-medium: #eadaa6;
  --color-beige-dark: #b89858;
  
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20ba5a;
  --color-whatsapp-shadow: rgba(37, 211, 102, 0.4);
  
  --text-primary: #342a3a; /* Roxo escuro quase preto */
  --text-secondary: #605068; /* Roxo acinzentado */
  --text-muted: #8d7d96;
  
  --border-glass: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 4px 12px rgba(140, 91, 163, 0.05);
  --shadow-md: 0 12px 32px rgba(140, 91, 163, 0.1);
  --shadow-lg: 0 20px 48px rgba(140, 91, 163, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

/* Layout Container */
.container {
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 20px 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Header / Avatar */
header {
  text-align: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.avatar-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
}

.avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
  background-color: var(--color-lilac-light);
}

.verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-lilac-dark);
  color: #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-lilac-dark) 0%, var(--color-pink-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Section (Headline & Promise) */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 10px;
}

.hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--color-pink-dark);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(243, 170, 182, 0.4);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Principal (Botão de Conversão) */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px var(--color-whatsapp-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: none;
  cursor: pointer;
  animation: pulse-green 2s infinite;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background-color: var(--color-whatsapp-hover);
  box-shadow: 0 12px 28px var(--color-whatsapp-shadow);
}

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

.btn-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

/* Shine effect on button */
.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 4s infinite ease-in-out;
}

.cta-sub-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-lilac-dark);
}

/* Card Glassmorphic */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

/* Simulador do Grupo (Chat Preview) */
.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(140, 91, 163, 0.1);
}

.chat-title-info {
  flex-grow: 1;
}

.chat-title-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chat-status {
  font-size: 0.75rem;
  color: var(--color-whatsapp);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  animation: pulse-green 1.5s infinite;
}

/* Mensagens Simuladas */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f7f1f9;
  padding: 16px;
  border-radius: var(--radius-md);
  max-height: 380px;
  overflow-y: auto;
}

.msg-bubble {
  align-self: flex-start;
  background: #ffffff;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 12px;
  max-width: 90%;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.msg-sender {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-lilac-dark);
  margin-bottom: 4px;
}

.msg-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  align-self: flex-end;
  text-align: right;
  margin-top: 4px;
}

/* Card de Oferta Dentro do Chat */
.deal-card {
  border: 1px solid var(--color-lilac-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 6px;
  background-color: #ffffff;
}

.deal-badge {
  background: linear-gradient(135deg, var(--color-pink-dark) 0%, var(--color-lilac-dark) 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
  display: inline-block;
}

.deal-body {
  padding: 10px;
}

.deal-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.deal-prices {
  margin: 6px 0;
}

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

.price-new {
  color: var(--color-pink-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.btn-deal-simulated {
  display: block;
  width: 100%;
  background-color: var(--color-lilac-dark);
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 6px;
  transition: var(--transition);
}

.btn-deal-simulated:hover {
  background-color: var(--color-lilac-dark);
  opacity: 0.9;
}

/* Seção Benefícios */
.benefits-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 4px;
  position: relative;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.benefit-icon {
  background: var(--color-lilac-light);
  color: var(--color-lilac-dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Depoimentos / Feedback */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

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

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-pink-light);
}

.testimonial-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial-stars {
  color: #ffc107;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-secondary);
}

/* FAQ (Acordeon Simples) */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  padding: 12px 20px 20px 20px;
  max-height: 200px;
  border-top-color: rgba(140, 91, 163, 0.08);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-lilac-dark);
}

/* Notificação popup realista */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 20px;
  right: 20px;
  max-width: 360px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-lilac-medium);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

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

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-lilac-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lilac-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.toast-content {
  flex-grow: 1;
}

.toast-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.toast-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Footer / Disclaimer Meta Ads */
footer {
  text-align: center;
  padding: 40px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(140, 91, 163, 0.08);
  margin-top: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-pink-dark);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 10px;
}

/* Animations */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes shine {
  0% { left: -50%; }
  10%, 100% { left: 125%; }
}

/* Media Queries */
@media (min-width: 576px) {
  body {
    padding: 20px 0;
  }
  .container {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
  }
  .toast-notification {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
}
