@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

:root {
  /* Colors - Derived from NoHesi */
  --bg-main: 8 6 10;
  --bg-surface: #08060a;
  --bg-top-light-4: rgba(255, 255, 255, .04);
  --bg-top-light-10: rgba(255, 255, 255, .1);
  --bg-top-light-17: rgba(255, 255, 255, .17);

  --border-color: rgba(255, 255, 255, .05);
  --border-light: rgba(255, 255, 255, .1);

  --primary: #8800F0;
  --primary-glow: rgba(136, 0, 240, 0.4);
  --primary-red: #dd0355;

  --text-main: rgba(238, 237, 238, 1);
  --text-secondary: rgba(238, 237, 238, .87);
  --text-tertiary: rgba(238, 237, 238, .68);
  --text-muted: #898889;

  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 8px;

  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 70px;
}

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

body {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  background-color: var(--bg-surface);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
p,
li {
  color: var(--text-secondary);
}

h1,
h2,
h3,
h4 {
  font-family: 'Roboto Flex', sans-serif;
  text-transform: uppercase;
  font-variation-settings: "wdth" 151, "GRAD" 150, "slnt" 0, "XTRA" 603;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 1000;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 1000;
}

h3 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
}

.text-gradient {
  background: linear-gradient(85deg, #fff 0%, rgba(255, 255, 255, .5) 92.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-primary {
  color: var(--primary);
}


/* Animations & Scroll Reveals */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Layout Utilities */
.container {
  max-width: 1400px;
  /* Wider for full cinematic feel */
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* Double Border System */
.double-border {
  background: var(--bg-top-light-4);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: var(--radius-xl);
}

.double-border-inner {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

/* Navigation - Floating glassmorphism pill */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1300px;
  height: var(--nav-height);
  background: rgba(8, 6, 10, 0.67);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
}

.nav-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.nav-links a:hover {
  color: var(--text-main);
  background: var(--bg-top-light-17);
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Inter Tight', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
  background-color: #9d2bf5;
}

.btn-secondary {
  background: var(--bg-top-light-10);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-top-light-17);
}

.btn-cta {
  background: #fff;
  color: #000;
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  background: #f8f8f8;
}

.btn-icon {
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-cta:hover .btn-icon {
  transform: rotate(-10deg) scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--nav-height) + 4rem);
  overflow: hidden;
  background: radial-gradient(circle at 50% -20%, rgba(136, 0, 240, 0.15) 0%, transparent 50%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-surface) 100%);
  z-index: -1;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-stats {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: var(--bg-top-light-4);
  backdrop-filter: blur(10px);
  padding: 0.4rem;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-tertiary);
  background: transparent;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-pill span {
  color: var(--text-main);
  font-weight: 800;
}

.hero-stat-pill:first-child {
  background: var(--bg-top-light-10);
  color: var(--text-main);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}


/* Story Section */
.story-section {
  background: var(--bg-surface);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 2rem;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.story-content .highlight-box {
  border-left: 2px solid var(--primary);
  padding: 1.5rem 2rem;
  background: var(--bg-top-light-4);
  margin: 2.5rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-left-width: 3px;
  border-left-color: var(--primary);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* Limita a largura para o vídeo vertical não ficar gigante */
  margin: 0 auto;
}

.vsl-container {
  position: relative;
  width: 100%;
  padding-bottom: 177.77%;
  /* Aspect Ratio 9:16 para VSL vertical */
  height: 0;
  background: #000;
  overflow: hidden;
}

.vsl-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Features Grid - NoHesi style */
.features-section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-header p {
  color: var(--text-tertiary);
  margin-top: 1.25rem;
  font-size: 1.1rem;
}

.news-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.news-pill {
  display: inline-block;
  background: var(--bg-top-light-17);
  backdrop-filter: blur(10px);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  width: fit-content;
  text-transform: uppercase;
}

/* Main Large Card */
.main-card .news-cover {
  width: 100%;
  height: 320px;
  position: relative;
}

.main-card .news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Side Cards Stack */
.side-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.side-card .double-border-inner {
  display: flex;
  flex-direction: row;
}

.news-cover-side {
  width: 38%;
  position: relative;
  flex-shrink: 0;
}

.news-cover-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-card .news-content {
  padding: 1.5rem 2rem;
}

.side-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.side-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-tertiary);
}

/* Common elements */
.news-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Results / Testimonials */
.results-section {
  background: var(--bg-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  text-align: center;
}

.stat-item {
  padding: 3rem 1.5rem;
}

.stat-item h4 {
  font-size: 3.2rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  font-variation-settings: "wdth" 120, "GRAD" 200;
}

.stat-item p {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 4rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollMarquee 60s linear infinite;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.marquee-track img {
  height: 420px;
  width: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  filter: grayscale(15%) brightness(0.9);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-track img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03) translateY(-10px);
  border-color: var(--border-light);
}

/* Pricing Section */
.pricing-section {
  background: var(--bg-surface);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
}

.pricing-card-content {
  padding: 5rem 3rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card .double-border-inner {
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.pricing-card.popular .double-border-inner {
  background: radial-gradient(circle at 50% 0%, rgba(136, 0, 240, 0.12) 0%, transparent 80%);
  border-color: rgba(136, 0, 240, 0.3);
}

.pricing-card.popular .double-border {
  border-color: rgba(136, 0, 240, 0.2);
  background: rgba(136, 0, 240, 0.03);
}

.popular-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.pricing-header h3 {
  font-size: 2.2rem;
  font-weight: 1000;
  margin-top: 0.5rem;
}

.pricing-header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.limited-spots-tag {
  font-size: 0.65rem;
  background: rgba(221, 3, 85, 0.15);
  color: #ff477e;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.price {
  font-size: 4rem;
  font-weight: 1000;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1.5rem 0 3rem;
  font-family: 'Roboto Flex', sans-serif;
}

.price span {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: lowercase;
}


.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features li svg {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 2px;
}

.pricing-card .btn {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
}

.pricing-card.popular .btn {
  background: white;
  color: black;
  box-shadow: none;
}

.pricing-card.popular .btn:hover {
  background: #f0f0f0;
}

.pricing-card:not(.popular) .btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.guarantee-text {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-top-light-4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background: var(--bg-top-light-10);
  border-color: var(--border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.75rem 2.5rem;
  text-transform: uppercase;
  font-family: 'Roboto Flex', sans-serif;
  letter-spacing: 0.02em;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-tertiary);
  font-weight: 300;
}

.faq-item.active {
  background: var(--bg-top-light-10);
  border-color: var(--primary-glow);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-secondary);
  padding: 0 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 2rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

/* Showcase Section Refinements */
.split-showcase {
  display: flex;
  min-height: 500px;
  background: rgba(214, 191, 255, 0.02);
  align-items: stretch;
  /* Estica para preencher a altura */
  overflow: hidden;
}

.split-showcase-content {
  flex: 1.2;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.split-showcase-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 1000;
}

.split-showcase-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1rem;
}

.split-showcase-image {
  flex: 0.8;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border-color);
}

.split-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vsl-wrapper {
    grid-row: 1;
    /* Video no topo no mobile */
    max-width: 280px;
    /* Um pouco menor no celular para sobrar margem */
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    grid-column: span 1;
  }

  .split-showcase {
    flex-direction: column;
    min-height: auto;
  }

  .split-showcase-image {
    min-height: 250px;
    border-left: none;
    border-top: 1px solid var(--border-color);
    order: -1;
    /* Imagem em cima no mobile */
  }

  .split-showcase-content {
    padding: 2.5rem 2rem;
  }

  .pricing-grid {
    flex-direction: column;
    padding: 0 1rem;
  }

  .pricing-card-content {
    padding: 3rem 1.5rem 2.5rem;
  }

  .pricing-header-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .pricing-header h3 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .news-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .side-card .double-border-inner {
    flex-direction: column;
  }

  .news-cover-side {
    width: 100%;
    height: 200px;
  }

  .side-card .news-content {
    padding: 2rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ff3b3b;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}