/* ============================================
   Passabot — Landing Page
   ============================================ */

:root {
  --c-impulso: #E0FE74;
  --c-horizonte: #203B32;
  --c-altitude: #1C261B;
  --c-rota: #EEFFB1;
  --c-nuvem: #FEF7E5;

  --bg-main: var(--c-nuvem);
  --text-main: var(--c-altitude);
  --text-muted: #5A6B5E;
  --card-bg: #FFFFFF;
  --card-border: rgba(32, 59, 50, 0.08);
  --nav-bg: rgba(254, 247, 229, 0.85);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="dark"] {
  --bg-main: #0F1A0E;
  --text-main: var(--c-nuvem);
  --text-muted: #9BAA96;
  --card-bg: #172016;
  --card-border: rgba(224, 254, 116, 0.06);
  --nav-bg: rgba(15, 26, 14, 0.88);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.5s ease, color 0.5s ease;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ===== Logos ===== */
.brand-logo { height: 34px; width: auto; transition: transform 0.4s var(--ease-smooth); }
.brand:hover .brand-logo { transform: scale(1.03); }
.footer-logo { height: 30px; width: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 12px 26px; border-radius: 100px; font-weight: 700; font-size: 15px;
  transition: all 0.4s var(--ease-smooth); letter-spacing: -0.01em; white-space: nowrap;
}
.btn-primary { background-color: var(--c-impulso); color: var(--c-altitude); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224, 254, 116, 0.25);
}
.icon-circle {
  background-color: var(--c-altitude); color: var(--c-impulso);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 15px; transition: transform 0.4s var(--ease-spring); flex-shrink: 0;
}
.btn-primary:hover .icon-circle { transform: rotate(45deg) scale(1.05); }
.btn-xl { padding: 16px 34px; font-size: 16px; }
.btn-xl .icon-circle { width: 40px; height: 40px; font-size: 18px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; width: 100%; padding: 20px 0; z-index: 1000; isolation: isolate;
  transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled,
.navbar.menu-open {
  padding: 14px 0; background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--card-border);
}
.nav-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-links {
  display: flex; gap: 4px; background: var(--card-bg); padding: 5px;
  border-radius: 100px; border: 1px solid var(--card-border);
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  padding: 8px 20px; border-radius: 100px; transition: all 0.3s ease;
}
.nav-links a:hover { color: var(--c-altitude); background-color: var(--c-impulso); }
[data-theme="dark"] .nav-links a:hover { color: var(--c-altitude); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  background: var(--card-bg); border: 1px solid var(--card-border); color: var(--text-main);
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 18px; transition: all 0.4s var(--ease-spring);
}
.theme-toggle:hover {
  background: var(--c-impulso); border-color: var(--c-impulso); color: var(--c-altitude);
  transform: scale(1.08) rotate(15deg);
}
.mobile-menu-btn { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  max-width: 1320px; margin: 0 auto;
  padding: 180px 40px 120px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; min-height: 100vh;
}
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-title {
  font-size: clamp(42px, 5vw, 72px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; margin-bottom: 20px; color: var(--text-main);
  opacity: 0;
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px); color: var(--text-muted);
  max-width: 520px; font-weight: 500; line-height: 1.65; margin-bottom: 40px;
  opacity: 0;
}
.hero-actions { opacity: 0; }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; perspective: 1000px;
}
.hero-mockup-img {
  width: 100%; max-width: 480px; height: auto;
  border-radius: 32px;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.1));
  position: relative; z-index: 2;
  opacity: 0;
}
.hero-mascot {
  position: absolute; top: -48px; right: -40px;
  width: 120px; height: auto; z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  animation: mascotFloat 4s ease-in-out infinite;
  opacity: 0;
}
[data-theme="dark"] .hero-mascot {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.marquee-section {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--card-bg);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--text-muted);
  padding: 0 24px;
  letter-spacing: -0.01em;
}
.marquee-item i { font-size: 16px; color: var(--c-horizonte); }
[data-theme="dark"] .marquee-item i { color: var(--c-impulso); }
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--card-border); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   NÚMEROS — SOCIAL PROOF
   ============================================ */
.numbers-section {
  padding: 120px 0;
  background: var(--c-horizonte);
  background-image: url('../public/assets/background.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center 40%;
  position: relative;
  overflow: hidden;
}
.numbers-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 1;
}
.numbers-intro {
  text-align: center; margin-bottom: 72px;
}
.numbers-intro h2 {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
  color: var(--c-nuvem); letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 16px;
}
.numbers-intro p {
  font-size: 17px; color: rgba(254, 247, 229, 0.6); font-weight: 500;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.number-card {
  text-align: center; padding: 48px 24px;
  background: rgba(254, 247, 229, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(254, 247, 229, 0.1);
  border-radius: var(--radius-xl);
  transition: border-color 0.4s cubic-bezier(.215,.61,.355,1),
              transform 0.4s cubic-bezier(.215,.61,.355,1),
              box-shadow 0.4s cubic-bezier(.215,.61,.355,1);
  transform-style: preserve-3d;
}
.number-card:hover {
  border-color: rgba(224, 254, 116, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.stat-number {
  font-size: clamp(40px, 5.5vw, 64px); font-weight: 800;
  color: var(--c-impulso); letter-spacing: -0.04em; line-height: 1;
  display: block; margin-bottom: 12px;
}
.stat-label {
  display: block; font-size: 15px; font-weight: 600;
  color: rgba(254, 247, 229, 0.55); letter-spacing: 0.01em;
}

/* ============================================
   WALKTHROUGH — Sticky scroll (Jeton-style)
   ============================================ */
.walkthrough {
  padding: 120px 0 40px;
  background: var(--bg-main);
}
.wt-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
.wt-header {
  text-align: center; margin-bottom: 80px;
}
.wt-header h2 {
  font-size: clamp(36px, 4vw, 60px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.035em; color: var(--text-main);
}
.wt-subtitle {
  font-size: 17px; color: var(--text-muted);
  font-weight: 500; margin-top: 16px;
}

.wt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Steps (left side, scrolls) */
.wt-steps {
  display: flex; flex-direction: column;
}
.wt-step {
  padding: 56px 0;
  border-bottom: 1px solid var(--card-border);
  opacity: 0.25;
  transition: opacity 0.5s cubic-bezier(.215,.61,.355,1),
              transform 0.5s cubic-bezier(.215,.61,.355,1);
  transform: translateX(-8px);
}
.wt-step:first-child { padding-top: 0; }
.wt-step:last-child { border-bottom: none; }
.wt-step--active {
  opacity: 1;
  transform: translateX(0);
}
.wt-step-num {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--c-altitude); background: var(--c-impulso);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px; text-transform: uppercase;
  transition: transform 0.4s var(--ease-spring);
}
.wt-step--active .wt-step-num {
  transform: scale(1.05);
}
.wt-step h3 {
  font-size: clamp(24px, 2.5vw, 36px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15;
  color: var(--text-main); margin-bottom: 12px;
}
.wt-step p {
  font-size: clamp(15px, 1.2vw, 17px); color: var(--text-muted);
  font-weight: 500; line-height: 1.7; max-width: 440px;
}

/* Visual (right side, sticky) */
.wt-visual-sticky {
  position: sticky;
  top: 18vh;
  height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-phone {
  position: absolute;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  transition: opacity 0.6s cubic-bezier(.215,.61,.355,1),
              transform 0.6s cubic-bezier(.215,.61,.355,1);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
}
.wt-phone--active {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.wt-phone--landscape {
  border-radius: var(--radius-xl);
  max-height: 80%;
}

/* ============================================
   DIFERENCIAIS — Scroll wipe reveal
   ============================================ */
.diferenciais-section {
  padding: 120px 0;
  background: var(--bg-main);
  overflow: hidden;
}
.diferenciais-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; gap: 100px;
}
.diferencial-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.diferencial-block--reverse {
  grid-template-columns: 1fr 1.2fr;
}
.diferencial-block--reverse .diferencial-word-wrap {
  order: 2;
}
.diferencial-block--reverse .diferencial-content {
  order: 1;
}
.diferencial-word-wrap {
  position: relative;
  overflow: hidden;
}
.diferencial-word {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-main);
  display: block;
}
.diferencial-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--c-impulso);
  will-change: transform;
}
.diferencial-content h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}
.diferencial-content p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 500;
  max-width: 440px;
}

/* ============================================
   IMPRENSA — Screenshots
   ============================================ */
.press-section {
  padding: 80px 0 40px;
  background: var(--bg-main);
}
.press-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
.press-header { margin-bottom: 40px; }
.press-header h2 {
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.035em; color: var(--text-main);
}

/* Scattered on desk */
.press-screenshots {
  position: relative;
  height: 480px;
  max-width: 1100px;
}
.press-shot {
  display: block;
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(.215,.61,.355,1);
}
.press-shot img {
  width: 100%; height: auto; display: block;
}
/* Exame — biggest, front and center-left */
.press-shot:nth-child(1) {
  width: 300px;
  top: 20px; left: 0;
  transform: rotate(-3deg);
  z-index: 5;
}
/* PEGN — right side, slightly lower */
.press-shot:nth-child(2) {
  width: 340px;
  top: 0; left: 380px;
  transform: rotate(2deg);
  z-index: 4;
}
/* Startups — overlapping bottom-right corner of Exame */
.press-shot:nth-child(3) {
  width: 280px;
  top: 180px; left: 160px;
  transform: rotate(1.5deg);
  z-index: 6;
}
/* Let's Money — far right */
.press-shot:nth-child(4) {
  width: 300px;
  top: 160px; left: 720px;
  transform: rotate(-1.5deg);
  z-index: 3;
}
/* University Journal — bottom center, behind others */
.press-shot:nth-child(5) {
  width: 260px;
  top: 240px; left: 440px;
  transform: rotate(2.5deg);
  z-index: 1;
}
.press-shot:hover {
  z-index: 10;
  transform: rotate(0deg) scale(1.06) translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.15);
  border-color: var(--c-impulso);
}

/* ============================================
   PARCEIROS
   ============================================ */
.partners-section {
  padding: 40px 0 80px;
}
.partners-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
.partners-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  margin-bottom: 32px; text-align: center;
}
.partners-strip {
  display: flex; gap: 48px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.partners-strip img {
  height: 56px; width: auto;
  filter: grayscale(1) opacity(0.35);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.partners-strip img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}

/* ============================================
   DEPOIMENTOS — Liquid Glass
   ============================================ */
.testimonials-section {
  padding: 120px 0;
  background: var(--c-horizonte);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../public/assets/mocks/phone-credit-card.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 38, 27, 0.85) 0%, rgba(32, 59, 50, 0.92) 50%, rgba(28, 38, 27, 0.88) 100%);
  z-index: 0;
}
.testimonials-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 1;
}
.testimonials-header {
  margin-bottom: 64px;
}
.testimonials-header h2 {
  font-size: clamp(36px, 4vw, 60px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.035em; color: var(--c-nuvem);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* Liquid glass card */
.testimonial-card {
  background: rgba(254, 247, 229, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(254, 247, 229, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 0.5s cubic-bezier(.215,.61,.355,1);
  transform-style: preserve-3d;
}
.testimonial-card:hover {
  background: rgba(254, 247, 229, 0.12);
  border-color: rgba(224, 254, 116, 0.2);
  box-shadow: 0 20px 56px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}
.testimonial-top {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-photo {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(254, 247, 229, 0.2);
}
.testimonial-top strong {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--c-nuvem); letter-spacing: -0.01em;
}
.testimonial-top span {
  font-size: 13px; color: rgba(254, 247, 229, 0.5); font-weight: 500;
}
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.7; color: rgba(254, 247, 229, 0.85);
  font-weight: 500; font-style: normal;
}
.testimonial-insta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: rgba(254, 247, 229, 0.4);
  transition: color 0.3s ease;
}
.testimonial-insta:hover {
  color: var(--c-impulso);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 80px 0 120px;
  background: var(--bg-main);
}
.faq-container {
  max-width: 800px; margin: 0 auto; padding: 0 40px;
}
.faq-header { margin-bottom: 48px; }
.faq-header h2 {
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.035em; color: var(--text-main);
}
.faq-list {
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(224, 254, 116, 0.3);
}
.faq-item summary {
  padding: 20px 24px; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--text-main);
  list-style: none; letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 400;
  color: var(--text-muted); transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--c-altitude); color: var(--c-nuvem);
  border-radius: 48px 48px 0 0; overflow: hidden;
  padding: 100px 0 0; position: relative;
}
.footer-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
.footer-cta {
  padding-bottom: 80px; border-bottom: 1px solid rgba(254, 247, 229, 0.07);
  margin-bottom: 72px;
}
.cta-banner {
  display: block; position: relative;
  border-radius: var(--radius-xl); overflow: hidden;
}
.cta-banner-img {
  width: 100%; height: auto; display: block;
}
.cta-banner-btn {
  position: absolute; bottom: 160px; left: 128px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 30px; border-radius: 100px;
  background: var(--c-impulso); color: var(--c-altitude);
  font-weight: 700; font-size: 15px;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-banner:hover .cta-banner-btn {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224, 254, 116, 0.3);
}
.cta-banner:hover .cta-banner-btn .icon-circle {
  transform: rotate(45deg);
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 48px;
  flex-wrap: wrap; margin-bottom: 72px;
}
.footer-brand { max-width: 300px; }
.footer-brand p {
  color: rgba(254, 247, 229, 0.5); font-size: 15px;
  margin-top: 20px; font-weight: 400; line-height: 1.6;
}
.footer-links { display: flex; gap: 72px; flex-wrap: wrap; }
.link-col { display: flex; flex-direction: column; gap: 14px; }
.link-col h4 {
  font-size: 12px; font-weight: 700; color: rgba(254, 247, 229, 0.35);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em;
}
.link-col a {
  color: rgba(254, 247, 229, 0.6); font-size: 15px; font-weight: 500;
  transition: all 0.3s ease;
}
.link-col a:hover { color: var(--c-impulso); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; border-top: 1px solid rgba(254, 247, 229, 0.07);
  color: rgba(254, 247, 229, 0.35); font-size: 13px; font-weight: 500;
}

/* ===== Influencers CTA Section ===== */
.influencers-cta-section {
  padding: 80px 0;
}
.influencers-cta-container {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  position: relative;
}
.influencers-cta-img {
  display: block; width: 100%; height: auto; border-radius: 28px;
}
.influencers-cta-text h2 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  color: var(--c-nuvem); letter-spacing: -0.03em; margin-bottom: 12px;
}
[data-theme="dark"] .influencers-cta-text h2 { color: var(--text-main); }
.influencers-cta-text p {
  font-size: 16px; color: rgba(254, 247, 229, 0.65);
  line-height: 1.65; max-width: 440px;
}
.influencers-cta-left {
  position: absolute; bottom: 16px; left: 84px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 32px; padding: 64px;
  z-index: 1;
}
[data-theme="dark"] .influencers-cta-text p { color: var(--text-muted); }

/* ===== GSAP Animations ===== */
[data-animate] {
  opacity: 0; transform: translateY(32px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr; text-align: center; gap: 48px;
    padding: 160px 40px 80px; min-height: auto;
  }
  .hero-content { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-mockup-img { max-width: 380px; margin: 0 auto; }
  .hero-mascot { width: 100px; top: -40px; right: -20px; }

  .wt-layout { grid-template-columns: 1fr; gap: 40px; }
  .wt-visual-sticky {
    position: sticky; top: 80px; height: 40vh;
    margin-bottom: 16px;
  }
  .wt-step { padding: 40px 0; }

  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-section { padding: 80px 0; }

  .badges-row { justify-content: center; }

  .cta-banner { border-radius: var(--radius-lg); }
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar.menu-open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--c-nuvem);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 24px 24px;
  gap: 4px; z-index: 1001;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  animation: menuSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.navbar.menu-open .nav-links a {
  padding: 12px 16px; font-size: 16px; font-weight: 600;
  border-radius: 100px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-main);
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.navbar.menu-open .nav-links a:hover,
.navbar.menu-open .nav-links a:active {
  background: var(--c-impulso);
  color: var(--c-altitude);
  border-bottom-color: transparent;
}
.navbar.menu-open .nav-links a:last-child { border-bottom: none; }
[data-theme="dark"] .navbar.menu-open .nav-links { background: #0F1A0E; }

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-menu-btn {
    display: flex; color: var(--text-main); font-size: 28px;
    width: 44px; height: 44px; align-items: center; justify-content: center;
  }

  .hero { padding: 140px 24px 60px; }
  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .hero-mockup-img { max-width: 280px; border-radius: 24px; }
  .hero-mascot { width: 80px; top: -32px; right: -8px; }

  .product-section { padding: 100px 0; }
  .product-container,
  .credibility-container,
  .footer-container,
  .nav-container { padding: 0 24px; }

  .product-header { margin-bottom: 56px; }
  .product-header h2,
  .press-header h2 { font-size: clamp(30px, 8vw, 40px); }

  .wt-container { padding: 0 24px; }
  .wt-layout { display: block; }
  .wt-visual-sticky {
    position: sticky; top: 64px; height: 36vh;
    margin: 0 -24px 16px; padding: 0 24px 8px;
    z-index: 2;
    background: var(--bg-main);
  }
  .wt-step h3 { font-size: 22px; }
  .wt-step { padding: 36px 0; }

  .numbers-grid { grid-template-columns: 1fr; gap: 16px; }
  .numbers-section { padding: 64px 0; }
  .numbers-container { padding: 0 24px; }
  .numbers-intro { margin-bottom: 48px; }
  .number-card { padding: 32px 20px; }

  .diferenciais-container { padding: 0 24px; gap: 64px; }
  .diferencial-block { grid-template-columns: 1fr; gap: 24px; }
  .diferencial-block--reverse { grid-template-columns: 1fr; }
  .diferencial-block--reverse .diferencial-word-wrap { order: 0; }
  .diferencial-block--reverse .diferencial-content { order: 0; }
  .diferencial-word { font-size: 56px; }
  .diferenciais-section { padding: 80px 0; }

  .press-section { padding: 60px 0 20px; }
  .press-container,
  .partners-container,
  .faq-container { padding: 0 24px; }
  .press-screenshots {
    position: relative; height: auto; min-height: 400px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }
  .press-shot {
    position: relative !important; width: auto !important;
    top: auto !important; left: auto !important;
    border-radius: var(--radius-md) !important;
  }
  .press-shot img { height: 160px; object-fit: cover; object-position: top; border-radius: var(--radius-md); }
  .press-shot:nth-child(1) { transform: rotate(-3deg) !important; z-index: 3; margin: 4px -8px 4px 0; }
  .press-shot:nth-child(2) { transform: rotate(2deg) !important; z-index: 2; margin: 12px 0 4px -4px; }
  .press-shot:nth-child(3) { transform: rotate(1.5deg) !important; z-index: 4; margin: -8px -4px 4px 8px; }
  .press-shot:nth-child(4) { transform: rotate(-2deg) !important; z-index: 1; margin: -4px 0 4px -8px; }
  .press-shot:nth-child(5) { grid-column: 1 / -1; max-width: 55%; margin: -8px auto 0; transform: rotate(1deg) !important; z-index: 5; }
  .press-shot:nth-child(5) img { height: 120px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-section { padding: 80px 0; }
  .testimonials-container { padding: 0 24px; }
  .partners-strip img { height: 32px; }
  .partners-strip {
    gap: 20px; flex-wrap: nowrap;
    overflow-x: auto; justify-content: flex-start;
    padding: 0 24px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .partners-strip::-webkit-scrollbar { display: none; }
  .partners-strip img { flex-shrink: 0; }

  .press-shot:hover {
    z-index: 10;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }

  .footer { border-radius: 32px 32px 0 0; padding-top: 72px; }
  .cta-banner { display: flex; flex-direction: column; }
  .cta-banner-btn {
    position: relative; bottom: auto; left: auto;
    width: 100%; justify-content: center;
    padding: 14px 24px; font-size: 14px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .footer-links { gap: 40px; }
  .footer-bottom {
    flex-direction: column; gap: 16px; text-align: center; padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .btn-xl { padding: 14px 28px; font-size: 15px; }
  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .influencers-cta-section { padding: 20px 20px 40px; }
  .influencers-cta-left .btn-xl { padding: 10px 20px; font-size: 14px; }
  .influencers-cta-left .btn-xl .icon-circle { width: 28px; height: 28px; font-size: 14px; }
  .influencers-cta-container { padding: 0; }
  .influencers-cta-img-wrap {
    position: relative; border-radius: 20px; overflow: hidden; background-color: #203B32;
  }
  .influencers-cta-img {
    border-radius: 0; min-height: 420px; object-fit: cover; object-position: 63% center;
  }
  .influencers-cta-left {
    left: 0; top: 50%; bottom: auto; transform: translateY(-50%);
    padding: 24px; gap: 16px; max-width: 50%;
  }
  .influencers-cta-text h2 { font-size: 22px; }
  .influencers-cta-text p { font-size: 14px; max-width: 100%; }
}
@media (min-width: 961px) {
  .influencers-cta-img-wrap { display: contents; }
}
@media (max-width: 480px) {
  .influencers-cta-img { min-height: 520px; }
}
@media (min-width: 961px) and (max-width: 1200px) {
  .influencers-cta-left {
    padding: clamp(24px, calc(24px + (64px - 24px) * (100vw - 961px) / (1200px - 961px)), 64px);
  }
}
