/* VARIABLES & RESET */
:root {
  --primary: #0d9488;       /* Teal Vibrante (petróleo mais vivo) */
  --primary-light: #2dd4bf; /* Verde água para contraste no fundo escuro */
  --primary-dark: #0f172a;  /* Azul muito escuro para o fim do gradiente */
  --secondary: #25D366;     /* Verde vibrante para botões */
  --secondary-hover: #16a34a;
  --bg-white: #ffffff;
  --bg-gray: #f7f7f7;       /* Cinza muito claro para alternância */
  --bg-dark: #111827;       /* Fundo escuro intenso */
  --text-dark: #1a1a1a;     /* Preto para headlines */
  --text-light: #4b5563;    /* Cinza médio para textos base */
  --text-red: #dc2626;      /* Vermelho puro */
  --border-color: #e5e7eb;
  --font-main: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-light);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* UTILITIES */
.bg-white { background-color: var(--bg-white); }
.bg-gray { background-color: var(--bg-gray); }
.bg-dark { background-color: var(--bg-dark); }

.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-highlight { color: var(--primary); }
.text-red { color: var(--text-red); }
.text-white { color: #ffffff; }

.text-center { text-align: center; }
.left-align { text-align: left; }
.italic { font-style: italic; }
.font-bold { font-weight: 700; }

.mb-md { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 3rem; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-xl { margin-top: 3rem; }

.shadow-box {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: 1.875rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.75rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
.text-large { font-size: 2.1rem; }

.sub-headline {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-light);
}

@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  .text-large { font-size: 2.5rem; }
}

/* LAYOUT / SECTIONS */
section {
  padding: 5rem 0; /* Aumentado espaçamento */
}

/* GRADIENT HERO */
.hero-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3.5rem 0 0 0;
  position: relative;
}
.hero-gradient h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero-gradient .text-highlight-light {
  color: var(--primary-light);
}
.hero-gradient .sub-headline {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.hero-mockup-container {
  margin-top: 2.5rem;
  margin-bottom: -6rem; /* Puxa para cima da próxima seção */
  position: relative;
  z-index: 10;
}
.hero-mockup-container img {
  margin: 0 auto;
}

/* PRICING SECTION BELOW HERO */
.hero-pricing-section {
  background: var(--bg-white);
  padding: 6rem 0 4rem 0; /* Top padding refinado */
  position: relative;
  z-index: 1;
}

/* BUTTONS */
.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
@media (min-width: 600px) {
  .btn { width: 80%; margin: 0 auto; }
}

.btn-green {
  background-color: var(--secondary);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
  border-bottom: 4px solid var(--secondary-hover);
}
.btn-green:active {
  transform: translateY(2px);
  border-bottom: 2px solid var(--secondary-hover);
  margin-bottom: 2px;
}
.btn-green:hover {
  background-color: #20c255;
}

.btn-pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* PRICING HERO */
.pricing {
  margin: 2rem 0;
}
.price-old {
  display: block;
  font-size: 1.45rem;
  color: var(--text-red);
  text-decoration: line-through;
  font-weight: 800;
}
.price-new {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}
.price-value {
  font-size: 5rem;
  color: var(--secondary);
  line-height: 1;
  display: block;
  margin-top: 0.5rem;
}

/* SEALS */
.security-seals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media(min-width: 600px) {
  .security-seals {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.seal-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-seal {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

/* CAROUSEL DEMO */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-bottom: 1rem;
}
.carousel-track {
  display: flex;
  gap: 0.5rem; /* Gap reduzido para aproximar os cards */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  padding: 1.5rem 0.5rem;
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
.carousel-slide {
  flex: 0 0 70%; /* Mostra parte do próximo card no mobile */
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}
@media (min-width: 600px) {
  .carousel-slide {
    flex: 0 0 calc(40% - 0.5rem); /* Mostra mais de 2 cards no desktop */
  }
}
.carousel-slide img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.carousel-btn {
  background: var(--bg-white);
  color: var(--primary);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active {
  background: var(--primary);
}

/* IDEAL LIST (BLOCO 3) */
.ideal-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ideal-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.15rem;
  color: var(--text-dark);
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}
.ideal-list li:hover {
  transform: translateX(5px);
  background: var(--bg-gray);
}
@media (min-width: 600px) {
  .ideal-list li {
    font-size: 1.35rem;
  }
}
.ideal-list .check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* BENEFITS LIST (BLOCO 4) */
.benefit-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--bg-white);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
  color: var(--text-dark);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
@media (min-width: 768px) {
  .benefit-list li { font-size: 1.1rem; }
}
.benefit-list li:hover {
  transform: translateX(10px);
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.icon-box {
  width: 50px;
  height: 50px;
  background: var(--bg-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.benefit-icon {
  width: 24px;
  height: 24px;
}

.benefits-cta {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  margin-top: 3.5rem;
  max-width: 600px;
  border: 1px solid var(--border-color);
}

/* VIVID BADGE & TIMER */
.badge-vivid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}
.badge-icon {
  width: 20px;
  height: 20px;
}
.title-bonus {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .title-bonus { font-size: 3rem; }
}
.timer-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}
.timer-icon {
  width: 24px;
  height: 24px;
  color: var(--text-red);
}
.pulse-soft {
  animation: pulse-soft 2.5s infinite;
}
@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* BONUS CARDS */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .bonus-list {
    flex-direction: row;
    align-items: stretch;
  }
}
.bonus-card {
  width: 100%;
  border: none;
  border-top: 5px solid var(--primary);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -5px rgba(13, 148, 136, 0.2);
}
.bonus-header {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: #fff;
  padding: 0.85rem;
  font-weight: 800;
  font-size: 1.25rem;
}
.bonus-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.bonus-body img {
  max-width: 160px;
  margin-bottom: 0.75rem; /* Tightened spacing below image */
}
.bonus-name {
  font-size: 1.05rem; /* Reduced size */
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.75rem; /* Tightened spacing below title */
  flex: 1;
  color: #333;
  text-align: center;
}
.bonus-name strong {
  font-weight: 700; /* Less heavy bold */
  color: #222;
}
.bonus-price {
  text-align: center;
  width: 100%;
}
.bonus-price-old {
  display: block;
  font-size: 1.05rem; /* Reduced size */
  color: #b91c1c; /* Darker red */
  font-weight: 500; /* Normal weight, not bold */
  margin-bottom: 0; /* Tightened spacing */
}
.bonus-price-old .riscado {
  text-decoration: line-through;
}
.bonus-price .gratis {
  display: block;
  color: #22c55e;
  font-weight: 700;
  font-size: 1.5rem; /* Proportional size */
  text-transform: none;
  margin-top: 0; /* Keep it tight */
}

/* PLANOS */
.plano-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-color);
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
}
.plano-completo {
  border: 2px solid #1a1a1a;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
  padding-bottom: 0;
  overflow: visible;
}
@media (max-width: 600px) {
  .plano-completo {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.plano-title {
  text-align: center;
  font-size: 1.6rem;
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.75rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}
.badge-purple {
  background: var(--primary);
}

.plano-preco {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.plano-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}
.plano-features li {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.plano-features li:last-child {
  border-bottom: none;
}
.plano-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%2325D366' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5 13l4 4L19 7'></path></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.plano-features li.icon-gift::before {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%230d9488' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M20 6h-4.18c.11-.31.18-.65.18-1a3 3 0 0 0-3-3c-1.09 0-2.06.59-2.6 1.48C9.86 2.59 8.89 2 7.8 2 6.14 2 4.8 3.34 4.8 5c0 .35.07.69.18 1H4c-1.1 0-2 .9-2 2v2h20V9c0-1.1-.9-2-2-2zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1h-2.18c.2-.6.67-1.11 1.25-1.42.27-.15.58-.24.93-.24zm-5.2 0c.55 0 1 .45 1 1s-.45 1-1 1H6.62C6.82 4.4 7.29 3.89 7.87 3.58 8.14 3.43 8.45 3.34 8.8 3.34zM19 21H5V12h14v9z'/></svg>");
}
.plano-features li.disabled {
  color: var(--text-light);
  text-decoration: none;
}
.plano-features li.disabled::before {
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23dc2626' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M6 18L18 6M6 6l12 12'></path></svg>");
}

.plano-warning {
  text-align: center;
  color: var(--text-dark);
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.arrow-down {
  display: block;
  font-size: 1.75rem;
  margin-top: 0.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.pricing-completo {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pricing-completo .price-old {
  font-size: 1.5rem;
  color: var(--text-red);
  text-decoration: line-through;
  font-weight: 700;
}
.pricing-completo .price-new {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.green-highlight-box {
  background-color: #f0fdf4;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #166534;
  text-align: left;
  line-height: 1.3;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.green-highlight-box svg {
  width: 32px;
  height: 32px;
  fill: #16a34a;
  flex-shrink: 0;
}
.card-footer-seals {
  background-color: #f0fdf4;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1rem; /* reduced top/bottom padding */
  margin-left: -2rem;
  margin-right: -2rem;
  border-top: 1px solid #dcfce7;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .card-footer-seals {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    gap: 0.5rem;
  }
}
.seal-item-sm {
  font-size: 0.68rem; /* reduced from 0.75rem */
  color: #6b7280;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem; /* reduced gap */
  text-align: left;
  font-weight: 600;
  line-height: 1.2;
}
.seal-item-sm svg {
  width: 22px; /* reduced from 28px */
  height: 22px; /* reduced from 28px */
  stroke: #6b7280;
  fill: none;
}
.divider-plano {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
}

.selo-garantia {
  max-width: 140px;
  margin: 0 auto;
}

/* AUTORIDADE */
.autoridade-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .autoridade-content {
    flex-direction: row;
    text-align: left;
  }
}
.foto-autoridade {
  width: 240px;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 32px;
}
.autoridade-text {
  padding: 0 1rem;
}
.autoridade-text h2 {
  font-size: 1.6rem;
  line-height: 1.3;
}
.autoridade-text p {
  font-size: 1.05rem;
  line-height: 1.6;
}
.quote-box {
  background: var(--bg-gray);
  padding: 1.5rem;
  border-left: 5px solid var(--primary);
  font-style: italic;
  margin-top: 1.5rem;
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}
@media (min-width: 768px) {
  .autoridade-text {
    padding: 0;
  }
  .autoridade-text h2 {
    font-size: 1.85rem;
  }
  .autoridade-text p, .quote-box {
    font-size: 1.15rem;
  }
}

/* FAQ ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
}
@media (min-width: 768px) {
  .accordion-header { font-size: 1.15rem; }
}
.accordion-header::after {
  content: '+';
  font-size: 2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-weight: 400;
  line-height: 1;
}
.accordion-header.active::after {
  content: '−';
  transform: rotate(180deg);
}
.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.accordion-header.active + .accordion-body {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}
.accordion-body p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: #9ca3af;
  padding: 4rem 0;
  font-size: 0.95rem;
}
.footer a {
  color: #9ca3af;
  text-decoration: underline;
}

/* POPUP UPGRADE */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 450px;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.popup-overlay.active .popup-content {
  transform: translateY(0);
}
.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  font-weight: 300;
  padding: 0;
}
.popup-header {
  background: var(--text-red);
  color: #fff;
  padding: 0.85rem 0.5rem;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.85rem, 4vw, 1.1rem);
  flex-shrink: 0;
  white-space: nowrap;
}
.popup-body {
  padding: 1rem 1.25rem;
  text-align: center;
  overflow-y: auto;
  flex: 1;
}
.popup-warning {
  color: var(--text-red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.popup-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.popup-headline {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.popup-price {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.popup-price-highlight {
  display: block;
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 800;
  line-height: 1;
  margin-top: 0.15rem;
}
.mockup-compact {
  max-width: 110px;
  margin: 0 auto 0.5rem;
}
.popup-body .plano-features {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.popup-body .plano-features li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  padding-bottom: 0.25rem;
}
.popup-btn-full {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.85rem 1rem;
}
.link-recusa {
  display: inline-block;
  margin-top: 0.5rem;
  color: #9ca3af; /* Cinza discreto */
  font-size: 0.9rem; /* Fonte menor */
  text-decoration: underline;
  font-weight: 500;
}
