/* ============================================
   CIE – CARTEIRA INTERNACIONAL DE ESTUDANTE
   Sales Page · v2.0
   ============================================ */

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS ─────────────────────────────── */
:root {
  --purple:    #7c3aed;
  --purple-d:  #5b21b6;
  --purple-l:  #ede9fe;
  --purple-xl: #f5f3ff;
  --green:     #16a34a;
  --green-l:   #22c55e;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
  --gray-800:  #1f2937;
  --dark-bg:   #0f0a1e;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.1);
  --sh-lg: 0 8px 32px rgba(0,0,0,.12);
  --sh-xl: 0 20px 48px rgba(0,0,0,.15);
  --sh-purple: 0 8px 32px rgba(124,58,237,.35);
  --tr: all .22s ease;
}

/* ─── CONTAINER ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

/* ─── TYPOGRAPHY HELPERS ─────────────────── */
em { font-style: normal; color: var(--purple); }
.em-purple { font-style: normal; color: #a78bfa; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--purple-l);
  color: var(--purple-d);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-tag--light {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--gray-800);
  margin-bottom: .9rem;
}
.section-heading--white { color: #fff; }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.section-desc--light { color: rgba(255,255,255,.82); }

/* ─── BUTTONS ────────────────────────────── */
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(34,197,94,.4);
  letter-spacing: .01em;
}
.btn-cta-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(34,197,94,.5);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 1.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(34,197,94,.4);
  transition: var(--tr);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(34,197,94,.5); }

.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 1.85rem;
  border-radius: 999px;
  box-shadow: var(--sh-purple);
  transition: var(--tr);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(124,58,237,.5); }

.btn-cta-price {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(34,197,94,.45);
  transition: var(--tr);
  text-align: center;
  margin-bottom: .75rem;
}
.btn-cta-price:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(34,197,94,.55); }
.btn-cta-price--large {
  width: auto;
  display: inline-flex;
  margin-bottom: 0;
  font-size: 1.15rem;
  padding: 1.15rem 2.5rem;
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  transition: var(--tr);
}
.btn-outline-w:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--tr);
}
.header-nav a:hover { color: var(--purple); }
.header-nav .btn-nav {
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: #fff !important;
  font-weight: 700;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  font-size: .88rem;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.header-nav .btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--tr);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: .8rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: #fff !important;
  font-weight: 700;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  text-align: center;
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: 66px;
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 45%, #faf5ff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(124,58,237,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 90%, rgba(167,139,250,.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 4rem 6rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.22);
  color: var(--purple-d);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.pill-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--gray-800);
  margin-bottom: 1.1rem;
}
.hero-title em { color: var(--purple); }

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* Micro social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.9);
  border-radius: var(--r-md);
  border: 1px solid rgba(124,58,237,.15);
  width: fit-content;
  box-shadow: var(--sh-sm);
}
.proof-avatars-grid {
  width: 120px;
  flex-shrink: 0;
}
.proof-avatars-img {
  width: 100%;
  height: 40px;
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: var(--r-sm);
}
.hero-social-proof p { font-size: .85rem; color: var(--gray-600); margin: 0; white-space: nowrap; }
.hero-social-proof strong { color: var(--gray-800); }

.hero-cta-wrap { margin-bottom: 1.5rem; }
.hero-cta-note {
  font-size: .83rem;
  color: var(--gray-400);
  margin-top: .65rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}
.hero-trust-row span {
  font-size: .83rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-img-frame { position: relative; width: 100%; max-width: 600px; }

.hero-photo {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  /* Removed aspect-ratio and object-fit: cover so the landscape banner is not cropped */
  height: auto;
  display: block;
}

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.97);
  border-radius: var(--r-md);
  padding: .55rem .9rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(124,58,237,.12);
  white-space: nowrap;
  animation: chipFloat 3.5s ease-in-out infinite;
}
.hero-chip span { font-size: 1.4rem; }
.hero-chip b { display: block; font-size: .85rem; color: var(--gray-800); }
.hero-chip small { font-size: .72rem; color: var(--gray-400); }
.hero-chip--left { top: 20px; left: -18px; animation-delay: 0s; }
.hero-chip--right { bottom: 70px; right: -18px; animation-delay: .8s; }

@keyframes chipFloat {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

.hero-card-overlay {
  position: absolute;
  bottom: -20px;
  left: -16px;
  width: 105px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: .5rem;
  box-shadow: var(--sh-xl);
  animation: chipFloat 4s ease-in-out infinite .4s;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 56px; }

/* ============================================
   VIDEO
   ============================================ */
.video-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, #4c1d95 0%, #2d1458 100%);
  text-align: center;
}
.video-section .section-tag {
  background: rgba(255,255,255,.15);
  color: #e9d5ff;
  border: 1px solid rgba(255,255,255,.2);
}
.video-section .section-heading { color: #fff; }
.video-section em { color: #c4b5fd; }
.video-section .section-desc { color: rgba(255,255,255,.78); margin-inline: auto; }

.video-frame {
  position: relative;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  background: #000;
  aspect-ratio: 16/9;
  cursor: pointer;
}

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

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(15,10,30,.45);
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--tr);
}
.video-play-overlay:hover { background: rgba(15,10,30,.3); }
.video-play-overlay.hidden { display: none; }

.play-circle {
  width: 76px;
  height: 76px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  transition: var(--tr);
}
.video-play-overlay:hover .play-circle { transform: scale(1.08); background: #fff; }
.play-circle svg { margin-left: 4px; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: 7rem 0;
  background: var(--gray-50);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--tr);
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--purple-l);
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .65rem;
}
.benefit-card p {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.benefit-stat {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-stat strong { font-size: 1.4rem; font-weight: 800; color: var(--purple); display: block; }
.benefit-stat small { font-size: .78rem; color: var(--gray-400); }

.benefit-card--highlight {
  background: linear-gradient(145deg, #6d28d9, #4c1d95);
  border: none;
  color: #fff;
}
.benefit-card--highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(109,40,217,.5);
}
.benefit-card--highlight h3 { color: #fff !important; }
.benefit-card--highlight p { color: #fff !important; }
.benefit-card--highlight .benefit-stat { border-top-color: rgba(255,255,255,.3); }
.benefit-card--highlight .benefit-stat strong { color: #fff !important; }
.benefit-card--highlight .benefit-stat small { color: #fff !important; }

.benefit-top-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================
   ELIGIBILITY (Quem pode)
   ============================================ */
.eligibility {
  padding: 7rem 0;
  background: linear-gradient(145deg, #3b0764 0%, #1e0050 100%);
  overflow: hidden;
  position: relative;
}
.eligibility::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(167,139,250,.2) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(124,58,237,.15) 0%, transparent 55%);
}

.eligibility-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .98rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.chk { font-size: 1.05rem; }

/* Mosaic photos */
.student-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: .8rem;
}
.student-mosaic img {
  border-radius: var(--r-lg);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
  width: 100%;
  transition: var(--tr);
}
.student-mosaic img:hover { border-color: rgba(255,255,255,.6); transform: scale(1.03); }
.mosaic-a { grid-row: span 2; height: 100%; aspect-ratio: auto; }
.mosaic-b, .mosaic-c, .mosaic-e { aspect-ratio: 1; }
.mosaic-d { grid-column: span 2; aspect-ratio: 2/1; }

/* Eligibility main image (img-info-quero-meia) */
.eligibility-main-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  object-fit: cover;
}

/* ============================================
   TRUST / SECURITY
   ============================================ */
.trust {
  padding: 7rem 0;
  background: #fff;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.trust-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--tr);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(124,58,237,.25);
}
.trust-card--purple {
  background: var(--purple-xl);
  border-color: rgba(124,58,237,.18);
}

.trust-icon { font-size: 2rem; margin-bottom: .9rem; }
.trust-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .45rem; }
.trust-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.trust-logos img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: .7;
  filter: grayscale(20%);
  transition: var(--tr);
}
.trust-logos img:hover { opacity: 1; filter: none; }

/* ============================================
   WHERE TO USE
   ============================================ */
.where-use {
  padding: 7rem 0;
  background: var(--gray-50);
  text-align: center;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.use-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  transition: var(--tr);
}
.use-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.use-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.use-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.use-card:hover .use-img img { transform: scale(1.07); }
.use-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(255,255,255,.96);
  color: var(--purple-d);
  font-size: .75rem;
  font-weight: 700;
  padding: .28rem .85rem;
  border-radius: 999px;
}

.use-body {
  padding: 1.1rem 1.25rem 1.25rem;
  text-align: left;
}
.use-body h3 { font-size: .98rem; font-weight: 700; color: var(--gray-800); margin-bottom: .3rem; }
.use-body p { font-size: .84rem; color: var(--gray-600); line-height: 1.5; }

/* ============================================
   TESTIMONIALS — MULTI-CARD TRACK
   ============================================ */
.testimonials {
  padding: 7rem 0;
  background: #fff;
  text-align: center;
}

/* Outer clipping mask with fade edges */
.msg-track-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin-inline: auto;
}

/* Fade edges left and right */
.msg-track-wrap::before,
.msg-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.msg-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.msg-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Scrolling track — CSS animation, no JS needed */
.msg-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: trackScroll 45s linear infinite;
}

.msg-track:hover { animation-play-state: paused; }

@keyframes trackScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each card = mini phone frame */
.msg-card {
  flex: 0 0 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  border: 3px solid #1a1a2e;
  background: #1a1a2e;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: zoom-in;
}

.msg-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.msg-card-img {
  width: 100%;
  display: block;
  border-radius: 13px 13px 0 0;
}

.msg-card-badge {
  background: #1a1a2e;
  color: #22c55e;
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  padding: .4rem .5rem;
  letter-spacing: .04em;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 7rem 0;
  background: linear-gradient(145deg, #1e0050 0%, #0f0a1e 100%);
  position: relative;
  overflow: hidden;
}
.pricing-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 50%, rgba(124,58,237,.3) 0%, transparent 55%),
    radial-gradient(circle at 75% 30%, rgba(167,139,250,.15) 0%, transparent 55%);
  pointer-events: none;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pricing-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.pricing-title em { color: #c4b5fd; font-style: normal; }

/* Countdown */
.countdown-box {
  margin-bottom: 1.75rem;
}
.countdown-label {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .65rem;
}
.countdown-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: .7rem 1.1rem;
  min-width: 72px;
  gap: .15rem;
}
.cd-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-unit small { font-size: .65rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
.cd-sep { font-size: 1.8rem; font-weight: 800; color: rgba(255,255,255,.4); margin-top: -.75rem; }

/* Price card */
.price-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .3rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-align: center;
  margin-bottom: 1rem;
}
.price-block { text-align: center; margin-bottom: 1.5rem; }
.price-was { display: block; font-size: .83rem; color: rgba(255,255,255,.45); margin-bottom: .2rem; }
.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .15rem;
  line-height: 1;
}
.price-cur { font-size: 1.4rem; font-weight: 700; color: #fff; margin-top: .5rem; }
.price-int { font-size: 5rem; font-weight: 900; color: #fff; letter-spacing: -.04em; }
.price-dec { font-size: 1.9rem; font-weight: 700; color: #fff; margin-top: 1rem; }
.price-period { display: block; font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

.price-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.price-features li { font-size: .93rem; color: rgba(255,255,255,.9); }
.price-security { font-size: .76rem; color: rgba(255,255,255,.45); text-align: center; }

/* Mockup */
.pricing-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.mockup-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(167,139,250,.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.pricing-mockup-img {
  width: 100%;
  max-width: 240px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
  animation: chipFloat 4s ease-in-out infinite;
}
.mockup-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.97);
  border-radius: var(--r-md);
  padding: .55rem .9rem;
  box-shadow: var(--sh-xl);
  white-space: nowrap;
}
.mockup-chip span { font-size: 1.35rem; }
.mockup-chip b { display: block; font-size: .83rem; color: var(--gray-800); }
.mockup-chip small { font-size: .7rem; color: var(--gray-400); }
.mockup-chip--top { top: 15%; left: 0; animation: chipFloat 3.2s ease-in-out infinite .3s; }
.mockup-chip--bot { bottom: 18%; right: 0; animation: chipFloat 3.8s ease-in-out infinite .9s; }

/* ============================================
   NON STUDENT
   ============================================ */
.non-student {
  padding: 7rem 0;
  background: var(--gray-50);
}
.non-student-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.non-student-img img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  object-fit: cover;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.icon-list li { font-size: .95rem; font-weight: 500; color: var(--gray-600); }
.icon-list--dark li { color: var(--gray-800); font-weight: 500; }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  padding: 7rem 0;
  background: #fff;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.guarantee-seal-wrap { flex-shrink: 0; }
.guarantee-seal {
  width: 200px;
  /* Removido o slowSpin porque estava péssimo */
  filter: drop-shadow(0 8px 20px rgba(34,197,94,.25));
}
@keyframes slowSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* ============================================
   LEGAL
   ============================================ */
.legal {
  padding: 7rem 0;
  background: var(--gray-50);
  text-align: center;
}
.legal-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: left;
  max-width: 860px;
  margin-inline: auto;
  box-shadow: var(--sh-md);
}
.legal-icon { font-size: 3rem; flex-shrink: 0; }
.legal-body { flex: 1; }
.legal-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray-800); margin-bottom: .6rem; }
.legal-body p { font-size: .93rem; color: var(--gray-600); line-height: 1.7; }
.legal-logos {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex-shrink: 0;
  align-items: center;
}
.legal-logos img { height: 34px; width: auto; object-fit: contain; opacity: .7; transition: var(--tr); }
.legal-logos img:hover { opacity: 1; }

/* ============================================
   SUPPORT
   ============================================ */
.support {
  padding: 7rem 0;
  background: linear-gradient(145deg, #3b0764 0%, #1e0050 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(167,139,250,.18) 0%, transparent 60%);
}
.support .container { position: relative; z-index: 1; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.support-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 2.25rem 1.75rem;
  backdrop-filter: blur(6px);
  transition: var(--tr);
}
.support-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-4px);
}
.support-ico { font-size: 2.4rem; margin-bottom: .9rem; }
.support-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .65rem; }
.support-card p { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 1.5rem; }

.app-badges {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
}
.app-badges img { height: 40px; width: auto; transition: var(--tr); filter: brightness(1.1); }
.app-badges a:hover img { transform: scale(1.05); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 7rem 0;
  background: #0f0a1e;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(124,58,237,.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(167,139,250,.18) 0%, transparent 50%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .9rem;
}
.final-cta em { color: #c4b5fd; font-style: normal; }
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-bottom: 2.25rem; }
.final-trust { margin-top: 1.25rem; font-size: .88rem; color: rgba(255,255,255,.45); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #06040f; padding-top: 4rem; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { max-width: 300px; }
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.1rem; }
.footer-social { display: flex; gap: .65rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--tr);
}
.footer-social a:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }

.footer-col h4 {
  font-size: .83rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.45); transition: var(--tr); }
.footer-col a:hover { color: #c4b5fd; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.28);
}

/* ============================================
   FLOATING BAR
   ============================================ */
.floating-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #3b0764, #1e0050);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .85rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.floating-bar.show { transform: translateY(0); }
.floating-text { font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 500; }

.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .65rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(34,197,94,.45);
  white-space: nowrap;
  transition: var(--tr);
}
.floating-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(34,197,94,.55); }

/* ============================================
   SCROLL ANIMATION UTILITY
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .benefits-grid,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { gap: 2.5rem; }
  .eligibility-inner { gap: 3rem; }
  .pricing-inner { gap: 3rem; }
  .non-student-inner { gap: 3rem; }
  .guarantee-inner { gap: 3rem; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero — mobile */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.5rem 5rem;
    text-align: center;
  }
  .hero-title { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-subtitle { font-size: 1rem; margin-inline: auto; }
  .hero-social-proof { margin-inline: auto; }
  .hero-trust-row { justify-content: center; }
  .hero-cta-wrap { display: flex; flex-direction: column; align-items: center; }

  /* Move image above content */
  .hero-visual { order: -1; }
  .hero-img-frame { max-width: 100%; }
  .hero-photo { height: auto; }
  .hero-chip { display: none; }
  .hero-card-overlay { display: none; }

  /* Video */
  .video-section { padding: 4rem 0; }

  /* Benefits & Testimonials */
  .benefits, .trust, .where-use, .testimonials,
  .non-student, .guarantee, .legal, .support { padding: 5rem 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  /* Smaller cards on mobile so 3 fit at once */
  .msg-card { flex: 0 0 165px; }
  .msg-track-wrap::before,
  .msg-track-wrap::after { width: 40px; }

  /* Eligibility */
  .eligibility { padding: 5rem 0; }
  .eligibility-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .eligibility-images { order: -1; }
  .eligibility-content { text-align: center; }
  .check-list li { justify-content: center; }
  .student-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-a { grid-row: span 1; aspect-ratio: 1; }
  .mosaic-d { grid-column: span 2; }

  /* Pricing */
  .pricing { padding: 5rem 0; }
  .pricing-inner { grid-template-columns: 1fr; }
  .pricing-right { order: -1; }
  .pricing-mockup-img { max-width: 180px; }
  .mockup-chip { display: none; }
  .countdown-row { justify-content: flex-start; }

  /* Non student */
  .non-student-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .non-student-text { text-align: center; }
  .non-student-text .icon-list li { text-align: left; }

  /* Guarantee */
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .guarantee-seal { width: 150px; margin-inline: auto; }
  .guarantee-text { text-align: center; }

  /* Legal */
  .legal-card { flex-direction: column; align-items: center; text-align: center; }
  .legal-logos { flex-direction: row; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: 100%; }

  /* Floating bar */
  .floating-bar { flex-direction: column; gap: .75rem; padding: 1rem; }
  .floating-text { font-size: .82rem; }
}

/* ============================================
   RESPONSIVE — SMALL (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding-inline: .9rem; }
  .hero-inner { padding-block: 2rem 4rem; }
  .hero-title { font-size: clamp(1.75rem, 9vw, 2.2rem); }
  .btn-cta-hero { font-size: .95rem; padding: .9rem 1.5rem; }
  .price-card { padding: 1.75rem 1.25rem; }
  .price-int { font-size: 4rem; }
  .cd-num { font-size: 1.5rem; }
  .cd-unit { min-width: 62px; padding: .6rem .9rem; }
  .section-heading { font-size: clamp(1.55rem, 7.5vw, 2rem); }
  .msg-screenshot-frame { max-width: 100%; }
  .pricing-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .final-cta h2 { font-size: clamp(1.65rem, 7vw, 2.2rem); }
}
