/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #fafafa;
  --foreground: #1f1f1f;
  --card: #ffffff;
  --primary: #22c55e;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --accent: #ea580c;
  --muted: #d9d9d9;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --radius: 0.5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 672px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-center {
  max-width: 672px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(to right, var(--accent), var(--accent), rgba(234, 88, 12, 0.9));
  color: white;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgency-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
}

.icon-zap,
.icon-alert {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-zap {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
  padding: 2rem 1rem 1.5rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: slideUp 0.6s ease-out;
}

.badge .icon {
  width: 1rem;
  height: 1rem;
}

.headline {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: slideUp 0.6s ease-out;
}

.subheadline {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  animation: slideUp 0.6s ease-out;
}

.video-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  color: var(--muted-foreground);
}

.checkmark {
  font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
  padding: 1rem;
  text-align: center;
}

.cta-button {
  padding: 1rem 2rem;
  background-color: #22c55e;
  color: white;
  border-radius: var(--radius);
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  animation: pulseButton 1.2s ease-in-out infinite;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #16a34a;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:active {
  transform: scale(0.95);
}

/* Benefits Section */
.benefits-section {
  padding: 2rem 1rem 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.benefit-content h3 {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* Examples Section */
.examples-section {
  padding: 3rem 1rem 4rem;
  background: linear-gradient(to bottom, var(--background), var(--background), rgba(245, 245, 245, 0.05));
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.example-card {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(245, 245, 245, 0.4);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

.example-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.example-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: rgba(245, 245, 245, 0.1);
}

.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.example-card:hover .example-image img {
  transform: scale(1.05);
}

.example-content {
  padding: 1.5rem;
}

.example-content h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.example-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.highlight-box {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(34, 197, 94, 0.05);
  border-radius: var(--radius);
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.highlight-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Testimonial Section */
.testimonial-section {
  padding: 3rem 1rem 4rem;
  background: linear-gradient(to bottom, var(--background), rgba(34, 197, 94, 0.05));
}

.testimonial-intro {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonial-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background-color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 448px;
  margin: 0 auto;
  animation: slideUp 0.6s ease-out;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-image {
  width: 100%;
  background-color: rgba(34, 197, 94, 0.05);
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.testimonial-content {
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
  stroke: #facc15;
}

.testimonial-text {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.testimonial-author {
  text-align: center;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  padding-top: 1rem;
}

.author-name {
  font-weight: bold;
  font-size: 1.125rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Pricing Section */
.pricing-section {
  padding: 3rem 1rem 4rem;
  scroll-margin-top: 5rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.pricing-card.premium {
  background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.1));
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-section {
  margin-bottom: 1.5rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
}

.period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.old-price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.line-through {
  text-decoration: line-through;
  opacity: 0.7;
}

.discount {
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--accent);
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  transition: all 0.3s ease;
  background-color: #22c55e;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  animation: pulseButton 1.2s ease-in-out infinite;
  text-decoration: none;
}

.plan-button:hover {
  background-color: #16a34a;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.plan-button:active {
  transform: scale(0.95);
}

.plan-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Bonus Section */
.bonus-section {
  padding: 2.5rem 1rem 3rem;
  background-color: #fef3c7;
  border-top: 4px solid #facc15;
}

.bonus-grid {
  display: grid;
  gap: 1.25rem;
}

.bonus-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 4px solid #facc15;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

.bonus-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bonus-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fef9c3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca8a04;
  flex-shrink: 0;
}

.bonus-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bonus-content h3 {
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.bonus-content p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.savings-box {
  margin-top: 2rem;
  background: linear-gradient(to right, #fef9c3, #fed7aa);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid #fde047;
  text-align: center;
}

.savings-box p {
  font-weight: bold;
  font-size: 0.875rem;
}

/* Guarantee Section */
.guarantee-section {
  padding: 2.5rem 1rem 3rem;
  background-color: rgba(34, 197, 94, 0.05);
  text-align: center;
}

.guarantee-box {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin-top: 1.5rem;
}

.guarantee-box p {
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 2.5rem 1rem 3rem;
  background-color: rgba(245, 245, 245, 0.3);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
}

.faq-question:hover {
  background-color: rgba(245, 245, 245, 0.3);
}

.faq-question .chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background-color: rgba(245, 245, 245, 0.1);
  border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-box {
  margin-top: 2.5rem;
  background-color: rgba(34, 197, 94, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.contact-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-text span {
  font-weight: 600;
  color: var(--primary);
}

/* Final CTA Section */
.final-cta-section {
  padding: 3rem 1rem 4rem;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.5), var(--background));
  text-align: center;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cta-button-secondary {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--secondary);
  color: var(--foreground);
  border-radius: var(--radius);
  font-weight: bold;
  font-size: 1.125rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
  background-color: rgba(245, 245, 245, 0.8);
}

.final-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Social Proof Notification */
.social-proof {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: #22c55e;
  color: white;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 40;
  max-width: 280px;
}

.social-proof.hidden {
  opacity: 0;
  transform: translateY(1rem);
}

.social-proof p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulseButton {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .headline {
    font-size: 2.25rem;
  }

  .trust-indicators {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-button-secondary {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .headline {
    font-size: 3rem;
  }
}
.upsell-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.upsell-content {
    background: #fff;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    border-radius: 10px;
}

.upsell-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.upsell-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.upsell-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-upsell {
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f0c040;
    color: #000;
    font-weight: bold;
}

.cta-upsell.cancel {
    background-color: #ccc;
}

.hidden {
    display: none;
}
/* Estilos verdes para o upsell */
#upsellPopup {
  background-color: rgba(34, 197, 94, 0.1); /* verde clarinho */
  border-left: 4px solid #22c55e; /* verde forte na borda */
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

#upsellPopup .cta-button {
  background-color: #16a34a; /* verde chamativo */
  color: white;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#upsellPopup .cta-button:hover {
  background-color: #15803d; /* verde escuro ao passar o mouse */
}
/* Popup do Upsell Premium */
#upsellPopupPremium {
  background-color: rgba(34, 197, 94, 0.1); /* fundo verde clarinho */
  border-left: 4px solid #22c55e; /* borda verde forte */
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  animation: slideUp 0.5s ease-out;
}

/* Título e texto */
#upsellPopupPremium h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #15803d; /* verde escuro chamativo */
}

#upsellPopupPremium p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #065f46; /* verde médio */
}

/* Botão do Premium (pulsando) */
#upsellPopupPremium .cta-button {
  background-color: #22c55e; /* verde vibrante */
  color: white;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulseButton 1.2s ease-in-out infinite; /* pulsando */
  display: inline-block;
  text-decoration: none;
}

#upsellPopupPremium .cta-button:hover {
  background-color: #16a34a; /* verde escuro ao passar o mouse */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#upsellPopupPremium .cta-button:active {
  transform: scale(0.95);
}

/* Botão cancelar */
#upsellPopupPremium .cta-button.cancel {
  background-color: #ccc;
  color: #000;
  animation: none; /* sem pulsar */
}
/* Fundo do popup Premium */
.upsell-content {
  background-color: rgba(34, 197, 94, 0.1); /* <--- Aqui você muda a cor de fundo da caixa do Upsell */
  border-left: 4px solid #22c55e;         /* <--- Aqui você muda a cor da borda lateral */
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

/* Título */
.upsell-content h2 {
  color: #15803d; /* <--- Aqui você muda a cor do título */
}

/* Texto */
.upsell-content p {
  color: #065f46; /* <--- Aqui você muda a cor do texto */
}

/* Botão “Sim, quero o Premium” */
.upsell-content .cta-upsell:not(.cancel) {
  background-color: #22c55e; /* <--- Aqui você muda a cor do botão */
  color: white;              /* <--- Aqui você muda a cor da letra do botão */
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  animation: pulseButton 1.2s ease-in-out infinite; /* <--- Aqui você pode ajustar a velocidade do pulsar (1.2s) */
}

/* Hover do botão Premium */
.upsell-content .cta-upsell:not(.cancel):hover {
  background-color: #16a34a; /* <--- Aqui você muda a cor do botão quando passa o mouse */
}

/* Botão cancelar */
.upsell-content .cta-upsell.cancel {
  background-color: #ccc; /* <--- Aqui você muda a cor do botão “Cancelar” */
  color: #000;            /* <--- Aqui você muda a cor da letra do botão “Cancelar” */
  animation: none;         /* não precisa pulsar */
}
/* Fundo branco só dentro do Upsell */
.upsell-content {
  background-color: #ffffff; /* <--- altere para branco */
  border-left: 4px solid #22c55e; /* verde da borda ainda fica */
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
/* Fundo da caixa do Upsell */
.upsell-content {
  background-color: #ffffff; /* branco dentro do popup */
  border-left: 4px solid #22c55e; /* borda verde */
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

/* Título “Espere! Você ganhou!” */
.upsell-content h2 {
  color: #22c55e; /* verde chamativo */
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Texto explicativo */
.upsell-content p {
  color: #000000; /* preto neutro */
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Label “Preço original” */
.upsell-content .price-label {
  font-size: 0.875rem;       /* pequeno */
  color: #737373;            /* cinza neutro */
  font-weight: 500;
  margin-bottom: 5px;
}

/* Linha com preços */
.upsell-content .price-values {
  font-size: 2rem;           /* tamanho base para destaque */
  margin-bottom: 5px;
}

/* Preço antigo cortado */
.upsell-content .price-values .original-price {
  font-size: 1rem;           /* menor que o promocional */
  color: #737373;            /* cinza */
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* Preço promocional grande e verde */
.upsell-content .price-values .promo-price {
  font-size: 2rem;           /* grande e chamativo */
  font-weight: bold;
  color: #22c55e;            /* verde vibrante */
}

/* Apenas por hoje */
.upsell-content .only-today {
  font-size: 1rem;
  color: #000000;            /* preto legível */
  margin-top: 2px;
}

/* Botão “Sim, quero o Premium” */
.upsell-content .cta-upsell:not(.cancel) {
  background-color: #22c55e; /* verde vibrante */
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  animation: pulseButton 1.2s ease-in-out infinite; /* pulsando */
  transition: all 0.3s ease;
}

/* Hover do botão Premium */
.upsell-content .cta-upsell:not(.cancel):hover {
  background-color: #16a34a; /* verde escuro ao passar o mouse */
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* Botão cancelar */
.upsell-content .cta-upsell.cancel {
  background-color: #ccc;
  color: #000;
  animation: none; /* sem pulsar */
}

/* Pulsar do botão */
@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
/* Fonte bonita no popup */
.upsell-content {
    font-family: 'Inter', 'Poppins', sans-serif;
}

/* Título mais chamativo */
.upsell-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Texto explicativo */
.upsell-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Botão Premium pulsando */
.cta-upsell:not(.cancel) {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
/* Título do popup mais chamativo */
.upsell-content h2 {
    font-family: 'Poppins', sans-serif; /* fonte bonita e moderna */
    font-weight: 900;                  /* deixa bem grosso */
    font-size: 2rem;                   /* aumenta o tamanho */
    color: #22c55e;                    /* verde chamativo */
    text-transform: uppercase;         /* opcional, deixa tudo em maiúsculas */
    letter-spacing: 1px;               /* dá um espacinho entre as letras */
    margin-bottom: 15px;               /* deixa um espaço do texto de baixo */
}
.upsell-content h2 {
    font-family: 'Poppins', sans-serif; /* fonte moderna */
    font-weight: 900;                  /* muito grosso */
    font-size: 1.8rem;                 /* tamanho grande, mas cabendo na linha */
    color: #22c55e;                    /* verde chamativo */
    white-space: nowrap;               /* impede quebra de linha */
    text-align: center;                /* centraliza no popup */
    letter-spacing: 1px;               /* espaço entre letras */
}
.upsell-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2rem;          /* grande e chamativo */
    color: #22c55e;
    white-space: normal;       /* permite quebrar linha naturalmente */
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;          /* deixa o texto mais junto e firme */
}
.upsell-content p {
    font-weight: 600;                /* deixa um pouco mais forte */
    font-size: 1rem;
    color: #000000;                  /* preto para fácil leitura */
    margin-bottom: 12px;
    line-height: 1.5;                /* deixa mais “respirável” */
    letter-spacing: 0.5px;           /* leve espaçamento pra leitura */
    font-family: 'Poppins', sans-serif; /* moderna e limpa */
    text-align: center;
}
