*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --red-headline: #d32f2f;
  --orange-btn-top: #ff9d47;
  --orange-btn-bottom: #ff6a00;
  --blue-accent: #0073e6;
  --text: #333333;
  --text-muted: #555555;
  --gray-bar: #e8e8e8;
  --check-green: #28a745;
  --max-width: 720px;
  --vsl-width: 860px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Escondido até o tempo da VSL (script Panda Video) */
.panda {
  display: none;
}

.panda-button-slot {
  text-align: center;
  margin: 0.5rem 0 0;
  min-height: 0;
}

#vsl {
  scroll-margin-top: 1rem;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

/* Header */
.hero-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 0.25rem;
}

.hero-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: 0 auto 1rem;
  background: linear-gradient(180deg, #b8b8b8 0%, #d4d4d4 100%);
  border-radius: 2px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.hero-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--red-headline);
}

.hero-subtitle {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #000000;
}

/* CTA section */
.video-section {
  text-align: center;
  margin-bottom: 2rem;
}

.tap-hint {
  margin: 0.75rem 0 1rem;
  padding: 0.55rem 0.85rem;
  background: var(--gray-bar);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.tap-hint em {
  font-style: italic;
}

/* VSL player */
.vsl-block {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--vsl-width), calc(100vw - 2.5rem));
  max-width: var(--vsl-width);
  margin: 0;
}

.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cccccc;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.vsl-player iframe,
.vsl-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.vsl-player.is-playing .vsl-play-btn,
.vsl-player:has(iframe) .vsl-play-btn {
  display: none;
}

.vsl-play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.2s ease;
}

.vsl-play-btn:hover {
  background: rgba(0, 0, 0, 0.35);
}

.vsl-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  position: relative;
}

.vsl-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #333333;
}

/* CTA buttons */
.btn {
  display: inline-block;
  min-width: 280px;
  max-width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(180deg, var(--orange-btn-top) 0%, var(--orange-btn-bottom) 100%);
  box-shadow:
    0 4px 14px rgba(245, 98, 23, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: btn-pulse 2.8s ease-in-out infinite;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 18px rgba(245, 98, 23, 0.5),
    0 3px 6px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(0);
}

@keyframes btn-pulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 14px rgba(245, 98, 23, 0.45),
      0 2px 4px rgba(0, 0, 0, 0.1);
  }
  35% {
    transform: translateY(-1px) scale(1.03);
    box-shadow:
      0 6px 20px rgba(245, 98, 23, 0.55),
      0 3px 8px rgba(0, 0, 0, 0.16);
  }
  70% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 14px rgba(245, 98, 23, 0.45),
      0 2px 4px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 14px rgba(245, 98, 23, 0.45),
      0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

.video-section .btn {
  margin-top: 0.25rem;
}

/* Content */
.content {
  text-align: left;
}

.content-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}

.highlight-blue {
  color: var(--blue-accent);
  font-weight: 700;
}

.text-blue {
  color: var(--blue-accent);
  font-weight: 400;
}

.content p {
  margin: 0 0 1.25rem;
  font-size: inherit;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.intro-copy {
  font-size: 1.25rem;
  line-height: 1.32;
}

.intro-copy p {
  margin: 0 0 0.65rem;
  font-size: inherit;
  line-height: inherit;
}

.intro-copy p:last-child {
  margin-bottom: 1rem;
}

.results-lead {
  margin: 0 0 0.75rem;
}

.reset-line {
  margin-bottom: 1rem !important;
}

.closing-line {
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}

.content strong {
  font-weight: 700;
  color: #000000;
}

.link-blue,
.text-blue {
  text-decoration: none;
}

a.link-blue:hover,
a.text-blue:hover {
  text-decoration: underline;
}

/* Benefits list */
.benefits {
  list-style: none;
  margin: 1.75rem 0 2rem;
  padding: 0;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.5;
  color: #000000;
}

.benefits li strong {
  font-weight: 700;
  color: #000000;
}

.check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--check-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.content .btn {
  display: block;
  width: fit-content;
  margin: 0 auto 0.5rem;
}

.stock-warning {
  margin: 3.25rem 0 0;
  padding-top: 0.5rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #555555;
  text-align: center;
}

.stock-warning strong {
  color: #333333;
}

/* Footer disclaimer */
.disclaimer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eeeeee;
  text-align: center;
}

.disclaimer p {
  margin: 0;
  font-size: 0.75rem;
  color: #888888;
  line-height: 1.5;
}

.legal-footer {
  margin-top: 0;
  background: #2a2a2a;
  color: #f1f1f1;
  font-size: 0.78rem;
}

.legal-footer__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2.25rem;
}

.legal-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0 0 1.5rem;
}

.legal-footer__link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.legal-footer__link:hover {
  text-decoration: underline;
}

.legal-footer__block {
  margin-bottom: 1.1rem;
}

.legal-footer__block p {
  margin: 0;
  line-height: 1.6;
}

.legal-footer__block strong {
  font-weight: 700;
}

@media (max-width: 480px) {
  .legal-footer__inner {
    padding: 1.5rem 1rem 2rem;
  }

  .legal-footer__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 1.25rem 1rem 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .btn {
    min-width: 100%;
    font-size: 1.05rem;
    padding: 0.9rem 1.5rem;
  }
}
