/* ═══════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #f5c500;
  --yellow-dk: #c9a000;
  --green: #8dc63f;
  --text: #0d0d0d;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --faq-bg: #f5c500;
  --foot-bg: #0d0d0d;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;
  --max-w: 1160px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 767px) {
  .br-lg {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

[data-animate][data-delay='1'] {
  transition-delay: 0.1s;
}
[data-animate][data-delay='2'] {
  transition-delay: 0.2s;
}
[data-animate][data-delay='3'] {
  transition-delay: 0.3s;
}
[data-animate][data-delay='4'] {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════
   PILL FORM
═══════════════════════════════════════════ */
.pill-form {
  width: 100%;
}

.pill-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--text);
  border-radius: var(--pill);
  background: #fff;
  padding: 6px 6px 6px 20px;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}

.pill-wrap:focus-within {
  box-shadow: 0 0 0 4px rgba(245, 197, 0, 0.25);
  border-color: var(--yellow);
}

.pill-icon {
  flex-shrink: 0;
  color: #9ca3af;
  display: flex;
}

.pill-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}

.pill-input::placeholder {
  color: #9ca3af;
}

/* ── BUTTON: black + yellow — diferente da referência ── */
.pill-btn {
  flex-shrink: 0;
  background: var(--text);
  color: var(--yellow);
  border: 2px solid var(--text);
  border-radius: var(--pill);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.1s;
  white-space: nowrap;
}

.pill-btn:hover {
  background: var(--yellow);
  color: var(--text);
}
.pill-btn:active {
  transform: scale(0.97);
}
.pill-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.form-msg {
  min-height: 1.4em;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.form-msg.ok {
  color: #16a34a;
}
.form-msg.err {
  color: #dc2626;
}

/* ═══════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 56px 0 96px;
  text-align: center;
  overflow: hidden;
}

/* Decorative animated blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blob-drift 12s ease-in-out infinite;
}

.hero-glow--a {
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 0, 0.18) 0%,
    transparent 70%
  );
  top: -180px;
  right: -120px;
}

.hero-glow--b {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(141, 198, 63, 0.12) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -80px;
  animation-delay: -6s;
  animation-direction: reverse;
}

@keyframes blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.04);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}

.hero-logo-wrap {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* ── TYPING HEADLINE ── */
.cnbr-headline {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.cnbr-line1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.cnbr-fixed {
  color: var(--text);
  margin-right: 0.22em;
}

.cnbr-typed-area {
  display: inline-flex;
  align-items: baseline;
}

.cnbr-typed-text {
  display: inline-block;
  background: linear-gradient(90deg, #f5c500 0%, #8dc63f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cnbr-cursor {
  display: inline-block;
  color: var(--text);
  font-weight: 900;
  margin-left: 0.04em;
  animation: cursor-blink 0.75s steps(1) infinite;
}

@keyframes cursor-blink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

.cnbr-line2 {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-top: 0.06em;
}

/* Sub + form */
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero .pill-form {
  max-width: 520px;
  margin: 0 auto;
}

/* Trust badge */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(141, 198, 63, 0.1);
  }
}

/* ═══════════════════════════════════════════
   2. COMO FUNCIONA — CAROUSEL
═══════════════════════════════════════════ */
.how-section {
  padding: 88px 0 80px;
  background: var(--bg-alt);
}

.section-eyebrow {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 48px;
}

.section-eyebrow strong {
  color: var(--text);
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.car-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.car-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.car-slide {
  flex: 0 0 100%;
  width: 100%;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 68px 80px;
  min-height: 400px;
  box-shadow: var(--shadow-md);
}

.step-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: lowercase;
}

.step-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
}

.slide-visual img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.1));
  border-radius: var(--radius);
}

.car-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}

.car-arrow:hover {
  border-color: var(--text);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}

.dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════
   3. REELS
═══════════════════════════════════════════ */
.reels-section {
  padding: 88px 0;
  background: var(--bg);
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Destaques de texto ── */
.hl {
  background: linear-gradient(90deg, #f5c500 0%, #8dc63f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* versão para fundo escuro (CTA) */
.hl-inv {
  color: var(--yellow);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reel-card {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.reel-tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition:
    background 0.25s,
    transform 0.25s;
}

.reel-card:hover .reel-play {
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.12);
}

.reel-card:hover .reel-play svg path,
.reel-card:hover .reel-play svg polygon {
  fill: var(--text);
}

.reel-caption {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════════
   4. BANNER (dentro do container)
═══════════════════════════════════════════ */
.banner-section {
  padding: 0 0 88px;
  background: var(--bg);
}

.banner-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.banner-img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   5. FEED — estilo Instagram
═══════════════════════════════════════════ */
.feed-section {
  padding: 88px 0;
  background: var(--bg-alt);
}

/* Instagram-style post grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insta-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  cursor: pointer;
}

.insta-post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Header */
.insta-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.insta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}

.insta-headmeta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.insta-handle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insta-time {
  font-size: 0.7rem;
  color: var(--muted);
}

.insta-dots {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Media area */
.insta-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.insta-media-inner {
  position: relative;
  z-index: 1;
  padding: 14px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.insta-cat {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 6px;
}

.insta-media-hl {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Gate overlay (lock / subscribe) */
.insta-gate {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.insta-post:hover .insta-gate {
  opacity: 1;
}

.insta-gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  color: #fff;
}

.insta-gate-card svg {
  opacity: 0.9;
}

.insta-gate-card p {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  max-width: 140px;
  line-height: 1.4;
}

.insta-gate-btn {
  display: inline-block;
  margin-top: 4px;
  background: var(--yellow);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--pill);
  transition: transform 0.15s;
}

.insta-gate-btn:hover {
  transform: scale(1.04);
}

/* Action bar */
.insta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 6px;
}

.insta-bar-left {
  display: flex;
  gap: 14px;
  color: var(--text);
}

.insta-bar-left svg,
.insta-bar > svg {
  transition:
    color 0.2s,
    transform 0.2s;
}

.insta-post:hover .insta-bar-left svg:first-child {
  color: #e1306c;
}
.insta-bar svg:hover {
  transform: scale(1.15);
}

/* Caption */
.insta-caption {
  padding: 4px 14px 14px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-caption strong {
  font-weight: 700;
  margin-right: 4px;
}

/* ═══════════════════════════════════════════
   6. CTA ASSINAR
═══════════════════════════════════════════ */
.cta-section {
  padding: 88px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 0, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #fff;
}

.cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 380px;
}

.cta-form-wrap {
  flex: 1;
  max-width: 480px;
}

/* Override pill-wrap inside dark CTA */
.cta-section .pill-wrap {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.cta-section .pill-wrap:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 197, 0, 0.2);
}

.cta-section .pill-input {
  color: #fff;
}
.cta-section .pill-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cta-section .pill-icon {
  color: rgba(255, 255, 255, 0.4);
}

.cta-section .pill-btn {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
}

.cta-section .pill-btn:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
}

.cta-section .form-msg {
  color: rgba(255, 255, 255, 0.7);
}
.cta-section .form-msg.ok {
  color: #86efac;
}
.cta-section .form-msg.err {
  color: #fca5a5;
}

/* ═══════════════════════════════════════════
   7. FAQ
═══════════════════════════════════════════ */
.faq-section {
  padding: 88px 0;
  background: var(--faq-bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.faq-desc {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.65;
  max-width: 280px;
}

.accordion {
  display: flex;
  flex-direction: column;
}
.acc-item {
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  line-height: 1.4;
}

.acc-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
}

.acc-item.open .acc-chevron {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.acc-item.open .acc-body {
  max-height: 300px;
}

.acc-body p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   8. FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--foot-bg);
  padding: 64px 0 32px;
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-logo-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  line-height: 1.65;
}

.social-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}

.social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--text);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--yellow);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .slide-inner {
    padding: 52px 48px;
    gap: 36px;
  }
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner {
    gap: 40px;
  }
  .faq-inner {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 0 72px;
  }
  .hero-logo-wrap {
    margin-bottom: 40px;
  }

  .cnbr-line1,
  .cnbr-line2 {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }
  .cnbr-line2 {
    margin-top: 0.1em;
  }

  .slide-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    min-height: auto;
    gap: 24px;
  }
  /* .slide-visual {
    display: none;
  } */
  .car-arrow {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .cta-form-wrap {
    max-width: 100%;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-desc {
    max-width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  /* 2 colunas no mobile — mais compacto e bonito */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* No grid de 2 colunas, simplificar o card para caber melhor */
  .insta-caption {
    display: none;
  }
  .insta-bar {
    padding: 8px 10px 4px;
  }
  .insta-bar-left {
    gap: 10px;
  }
  .insta-bar svg,
  .insta-bar-left svg {
    width: 18px;
    height: 18px;
  }
  .insta-head {
    padding: 9px 10px;
    gap: 7px;
  }
  .insta-avatar {
    width: 26px;
    height: 26px;
  }
  .insta-handle {
    font-size: 0.72rem;
  }
  .insta-time {
    font-size: 0.62rem;
  }
  .insta-dots {
    font-size: 0.85rem;
  }
  .insta-cat {
    font-size: 0.58rem;
    margin-bottom: 4px;
  }
  .insta-media-hl {
    font-size: 0.72rem;
  }
  .insta-media-inner {
    padding: 10px;
  }

  .pill-wrap {
    padding: 5px 5px 5px 14px;
  }
  .pill-btn {
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  .cnbr-line1,
  .cnbr-line2 {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-glow,
  .trust-dot {
    animation: none;
  }
  .cnbr-cursor {
    animation: none;
  }
}
