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

:root {
  --background: hsl(260, 20%, 6%);
  --foreground: hsl(0, 0%, 95%);
  --card: hsl(260, 20%, 10%);
  --primary: hsl(270, 80%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(260, 30%, 16%);
  --muted-foreground: hsl(260, 10%, 60%);
  --border: hsl(260, 20%, 18%);
  --neon-pink: hsl(320, 100%, 60%);
  --neon-blue: hsl(220, 100%, 60%);
  --success: rgb(74, 222, 128);
  --danger: rgb(248, 113, 113);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 2.5rem;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--neon-pink), var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-pink {
  background: linear-gradient(to right, var(--primary), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-primary { color: var(--primary); }
.text-muted-strike { color: var(--muted-foreground); text-decoration: line-through; }

/* Top bar urgência */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, hsl(270 80% 35%), hsl(320 100% 40%));
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.top-bar-short { display: none; }

@media (max-width: 480px) {
  .top-bar-full { display: none; }
  .top-bar-short { display: inline; }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--neon-pink));
  color: var(--primary-foreground);
  box-shadow: 0 4px 24px hsl(270 80% 60% / 0.4);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 8px 32px hsl(270 80% 60% / 0.55);
}

.btn-lg { padding: 1rem 1.25rem; font-size: 1rem; }
.btn-sm { padding: 0.75rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; max-width: 28rem; }

@media (min-width: 768px) {
  .btn {
    white-space: nowrap;
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
  }

  .btn-lg { padding: 1.375rem 2.5rem; font-size: 1.125rem; }
  .btn-sm { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px hsl(270 80% 60% / 0.4); }
  50% { box-shadow: 0 4px 40px hsl(270 80% 60% / 0.65); }
}

/* Layout */
.container { max-width: 72rem; margin: 0 auto; padding: 0 0.875rem; }
.container-narrow { max-width: 48rem; margin: 0 auto; padding: 0 0.875rem; }

@media (min-width: 768px) {
  .container, .container-narrow { padding: 0 1rem; }
}

section { position: relative; }

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.glow-primary { background: hsl(270 80% 60% / 0.2); filter: blur(120px); }
.glow-pink { background: hsl(320 100% 60% / 0.15); filter: blur(100px); }
.glow-blue { background: hsl(220 100% 60% / 0.1); filter: blur(150px); }

/* Hero */
.hero {
  padding: 1.25rem 1rem 2.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 2.5rem 2rem 4rem;
    min-height: calc(100vh - 2.5rem);
    display: flex;
    align-items: center;
  }

  .hero .glow-orb:nth-child(3) {
    display: block;
    top: 30%;
    right: 15%;
    width: 24rem;
    height: 24rem;
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 68rem;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 7vw, 2.875rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}

.hero-lead {
  font-size: clamp(0.9375rem, 3.8vw, 1.1875rem);
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  padding: 0 0.5rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.875rem;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 1.1875rem;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero-left {
  display: contents;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
}

.hero-video {
  position: relative;
  width: min(16rem, 72vw);
  aspect-ratio: 9 / 16;
  max-height: 50vh;
  border-radius: 1.125rem;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px hsl(270 80% 60% / 0.35),
    0 0 56px -10px hsl(270 80% 60% / 0.55),
    0 24px 48px -12px rgba(0, 0, 0, 0.65);
}

.hero-benefits,
.hero-cta-desktop {
  display: none;
  list-style: none;
}

.hero-cta {
  width: 100%;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr minmax(15rem, 19rem);
    gap: 2.5rem 4rem;
    align-items: center;
    text-align: left;
    max-width: 56rem;
    margin: 0 auto;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    justify-content: center;
    order: 1;
  }

  .hero-panel {
    order: 2;
    width: 100%;
  }

  .hero-video {
    width: 100%;
    max-width: 19rem;
    max-height: none;
    margin: 0 auto;
    border-radius: 1.25rem;
  }

  .hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .hero-benefits li {
    font-size: 1.0625rem;
    line-height: 1.45;
  }

  .hero-cta { display: none; }

  .hero-cta-desktop {
    display: inline-flex;
    align-self: flex-start;
    max-width: none;
    width: auto;
  }

  .hero-pills {
    justify-content: center;
    max-width: 19rem;
    margin: 0 auto;
  }
}

.hero .glow-orb:nth-child(1) { top: 0; left: 20%; width: 20rem; height: 20rem; opacity: 0.6; }
.hero .glow-orb:nth-child(2) { bottom: 10%; right: 10%; width: 16rem; height: 16rem; opacity: 0.5; }
.hero .glow-orb:nth-child(3) { display: none; }

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.15fr 20rem;
    gap: 3rem 5rem;
    max-width: 58rem;
  }

  .hero-video {
    max-width: 20rem;
  }

  .hero-pills {
    max-width: 20rem;
  }
}

.hero-video::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--neon-pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.hero-video-label {
  position: absolute;
  top: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
}

.hero-pills span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.3rem 0.625rem;
  border-radius: 9999px;
  background: hsl(260 20% 12%);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero-pills span { font-size: 0.75rem; }
}

.hero-benefits li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.4;
  text-align: left;
}

.hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsl(270 80% 60% / 0.15);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 2rem auto 0;
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

.hero-subtitle strong { color: var(--foreground); }

/* Vídeo genérico (seções abaixo) */
.video-wrapper {
  position: relative;
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(270 80% 60% / 0.2);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections */
.section {
  padding: 2.75rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section { padding: 4.5rem 0; }
}

.section-dark {
  background: hsl(260 25% 4%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background: hsl(260 22% 8%);
}

.section-tag {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  font-size: 0.9375rem;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

/* Pain points */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: hsl(260 20% 10%);
  border: 1px solid hsl(0 84% 60% / 0.15);
}

.pain-x {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(0 84% 60% / 0.15);
  color: var(--danger);
  font-weight: 700;
  font-size: 0.875rem;
}

.pain-item p { color: var(--muted-foreground); line-height: 1.6; }
.pain-item strong { color: var(--foreground); }

.pain-closer {
  text-align: center;
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.6;
}

/* Transformação */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .transform-grid { grid-template-columns: 1fr auto 1fr; gap: 1.5rem; }
}

.transform-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.transform-before {
  background: hsl(260 20% 8%);
  border-color: hsl(0 84% 60% / 0.2);
}

.transform-after {
  background: linear-gradient(135deg, hsl(270 80% 60% / 0.08), hsl(320 100% 60% / 0.06));
  border-color: hsl(270 80% 60% / 0.35);
}

.transform-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.transform-before .transform-label {
  background: hsl(0 84% 60% / 0.15);
  color: var(--danger);
}

.transform-after .transform-label {
  background: hsl(270 80% 60% / 0.2);
  color: var(--primary);
}

.transform-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.transform-card li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.transform-before li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-size: 0.75rem;
}

.transform-after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.transform-arrow {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
}

@media (min-width: 768px) { .transform-arrow { display: block; } }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(270 80% 60% / 0.2);
  background: var(--card);
  box-shadow: 0 0 40px -10px hsl(270 80% 60% / 0.2);
  transition: border-color 0.3s, transform 0.3s;
}

.video-card:hover {
  border-color: hsl(270 80% 60% / 0.45);
  transform: translateY(-4px);
}

.video-card-media { aspect-ratio: 9 / 16; background: #000; }

.video-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-title {
  padding: 1rem 1rem 0.25rem;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.video-card-tag {
  display: block;
  text-align: center;
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  color: var(--primary);
}

.mid-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: hsl(270 80% 60% / 0.06);
  border: 1px solid hsl(270 80% 60% / 0.2);
  overflow: hidden;
}

.mid-cta p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.mid-cta .btn {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9375rem 1rem;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .mid-cta {
    margin-top: 3rem;
    padding: 2rem;
  }

  .mid-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .mid-cta .btn {
    width: auto;
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
  }
}

.mid-cta strong { color: var(--foreground); }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: hsl(270 80% 60% / 0.4);
  box-shadow: 0 0 30px -5px hsl(270 80% 60% / 0.2);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(270 80% 60% / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Stack de valor */
.stack-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.stack-check {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(142 76% 36% / 0.2);
  color: var(--success);
  font-weight: 700;
  font-size: 0.875rem;
}

.stack-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.stack-value {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.stack-total {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(270 80% 60% / 0.1), hsl(320 100% 60% / 0.08));
  border: 1px solid hsl(270 80% 60% / 0.25);
}

.stack-total-old {
  text-decoration: line-through;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.stack-total-now {
  font-size: 1.375rem;
  margin-top: 0.5rem;
}

.stack-total-now strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--primary);
}

/* Depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid hsl(270 80% 60% / 0.35);
  box-shadow: 0 0 16px -4px hsl(270 80% 60% / 0.4);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.stars {
  color: #fbbf24;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}

.testimonial-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
  font-style: italic;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom, var(--card), hsl(260 30% 16% / 0.3));
  border: 1px solid var(--border);
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(270 80% 60% / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Garantia */
.section-guarantee { padding: 3rem 1rem; }

.guarantee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, hsl(142 76% 36% / 0.08), var(--card));
  border: 2px solid hsl(142 76% 36% / 0.3);
  text-align: center;
}

@media (min-width: 640px) {
  .guarantee-card {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem;
  }
}

.guarantee-badge {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsl(142 76% 36% / 0.2);
  border: 2px solid hsl(142 76% 36% / 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--success);
}

.guarantee-badge span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.guarantee-badge small {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-card h2 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.guarantee-card p {
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.guarantee-card strong { color: var(--foreground); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 1.25rem 1.125rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Pricing */
.pricing-section {
  padding: 3rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-section { padding: 5rem 1rem 6rem; }
}

.pricing-section .glow-orb {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30rem;
  height: 30rem;
  background: hsl(270 80% 60% / 0.15);
  filter: blur(120px);
}

.pricing-content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(0 84% 60% / 0.12);
  border: 1px solid hsl(0 84% 60% / 0.25);
  color: hsl(0 84% 75%);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.price-card {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--card);
  border: 1px solid hsl(270 80% 60% / 0.3);
  margin-bottom: 1.5rem;
  position: relative;
}

.price-card-featured {
  box-shadow: 0 0 60px -10px hsl(270 80% 60% / 0.35);
  border-width: 2px;
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--neon-pink));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.price-label {
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.price-from {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.price-from s { color: hsl(0 84% 60% / 0.8); }

.price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  align-self: flex-start;
  margin-top: 0.75rem;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 10vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.price-cents {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.price-note {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.price-includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price-includes li {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.5rem;
  color: rgb(244, 114, 182);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.instagram-link:hover { opacity: 0.8; }

/* Footer */
footer {
  padding: 2rem 1rem 6rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: hsl(260 20% 8% / 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-cta-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
}

.sticky-cta-text span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
  footer { padding-bottom: 2rem; }
}

.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }

/* ── Mobile otimizado ── */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.375rem;
    padding: 0 0.25rem;
    line-height: 1.2;
  }

  .section-tag { font-size: 0.6875rem; margin-bottom: 0.5rem; }

  .pain-item { padding: 0.875rem; gap: 0.75rem; }
  .pain-item p { font-size: 0.875rem; }
  .pain-closer { font-size: 1rem; padding: 0 0.25rem; }

  .transform-card { padding: 1.25rem; }
  .transform-card li { font-size: 0.875rem; }
  .transform-arrow { font-size: 1.5rem; }

  .video-grid { gap: 1rem; }
  .video-card-title { font-size: 0.9375rem; padding: 0.875rem 0.875rem 0.25rem; }

  .feature-card { padding: 1.25rem; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.875rem; }

  .stack-item { padding: 1rem; }
  .stack-item strong { font-size: 0.875rem; }
  .stack-total { padding: 1.25rem; }
  .stack-total-now { font-size: 1.125rem; }
  .stack-total-now strong { font-size: 1.625rem; }

  .testimonial-card { padding: 1.25rem; }
  .testimonial-card p { font-size: 0.875rem; }

  .why-card { padding: 1.5rem 1.25rem; }

  .guarantee-card { padding: 1.5rem; gap: 1rem; }
  .guarantee-card h2 { font-size: 1.125rem; }
  .guarantee-card p { font-size: 0.875rem; }

  .faq-item summary { padding: 1rem; font-size: 0.875rem; }
  .faq-item p { font-size: 0.875rem; padding: 0 1rem 1rem; }

  .pricing-content { padding: 0 0.875rem; }
  .pricing-content h2 { font-size: 1.5rem; }
  .pricing-urgency { font-size: 0.8125rem; }

  .price-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.25rem;
  }

  .price-includes li { font-size: 0.875rem; }

  .pricing-content .btn-block {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .trust-badges {
    gap: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .instagram-link { font-size: 0.8125rem; }

  footer { padding: 1.5rem 0.875rem 5.5rem; }
  .footer-disclaimer { font-size: 0.6875rem; }

  .hero { padding: 1rem 0.875rem 2rem; }
  .hero-subtitle { font-size: 0.8125rem; margin-top: 1.5rem; padding-top: 1.25rem; }

  .sticky-cta-inner { gap: 0.75rem; }
  .sticky-cta .btn { width: auto; white-space: nowrap; padding: 0.75rem 1rem; font-size: 0.875rem; }
}
