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

:root {
  --preto:      #080808;
  --roxo:       #7B2FBE;
  --roxo-light: #9B51E0;
  --branco:     #ffffff;
  --dourado:    #c9a84c;
  --cinza:      rgba(255,255,255,0.55);
  --card-bg:    #0f0f18;
  --border:     rgba(123,47,190,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--preto);
  color: var(--branco);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.hl { color: var(--roxo-light); }

/* ===========================
   REVEAL ON SCROLL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1),
              transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAV
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 52px;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 3px;
  border: 1px solid var(--roxo);
  padding: 5px 14px;
  border-radius: 4px;
  color: var(--branco);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--branco); }
.nav-cta {
  background: var(--roxo) !important;
  color: var(--branco) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--roxo-light) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--branco);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 200;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--branco);
}
.mobile-menu .nav-cta {
  padding: 14px 40px !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
}
.mobile-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--branco);
  font-size: 2rem;
  cursor: pointer !important;
  z-index: 201;
  line-height: 1;
  padding: 8px;
}

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #080808;
}

/* grade pontilhada canto direito */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* linha roxa diagonal superior */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 85%;
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, #7B2FBE 25%, #a855f7 60%, transparent 100%);
  transform: rotate(-13deg);
  transform-origin: left center;
  filter: blur(1px);
  opacity: 0.95;
}

/* linha roxa diagonal inferior */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 40%;
  left: -10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #5a1a9e 20%, #7B2FBE 55%, transparent 100%);
  transform: rotate(-13deg);
  transform-origin: left center;
  filter: blur(0.5px);
  opacity: 0.55;
}

.hero-photo {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 85%;
  width: auto;
  max-width: 42%;
  z-index: 2;
  object-fit: contain;
  object-position: bottom right;
  filter: brightness(0.7);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 95%),
                      linear-gradient(to top, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 95%),
              linear-gradient(to top, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
  pointer-events: none;
}

/* diagonal roxa na base */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 130px;
  background: var(--preto);
  clip-path: polygon(0 65%, 100% 0%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 140px 52px 100px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--roxo-light);
  margin-bottom: 18px;
}

.hero-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.8rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--roxo-light);
  border: 1px solid rgba(155,81,224,0.4);
  padding: 5px 14px;
  border-radius: 50px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.btn-primary {
  background: var(--roxo);
  color: var(--branco);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--roxo-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(123,47,190,0.4);
}

.btn-ghost {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--branco); border-color: var(--branco); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 52px;
  z-index: 4;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--roxo-light));
  animation: lineDown 2.4s ease-in-out infinite;
}
@keyframes lineDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ===========================
   SHARED
=========================== */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--roxo-light);
  border-left: 2px solid var(--roxo);
  padding-left: 10px;
  margin-bottom: 14px;
  display: inline-block;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===========================
   SOBRE
=========================== */
#sobre {
  padding: 120px 0 100px;
  background: var(--preto);
  position: relative;
  overflow: hidden;
}

#sobre::before {
  content: '';
  position: absolute;
  top: -80px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,190,0.18) 0%, transparent 70%);
  pointer-events: none;
}

#sobre::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155,81,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-desc {
  font-size: 1rem;
  color: var(--cinza);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.85;
  font-weight: 300;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sobre-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.sobre-card:hover {
  border-color: rgba(123,47,190,0.5);
  transform: translateY(-4px);
}

.sobre-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.sobre-icon { font-size: 1.6rem; }
.sobre-card-header h3 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--dourado);
}

.sobre-inst-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 10px;
}

.sobre-list {
  list-style: none;
  padding: 0;
  margin-bottom: 6px;
}
.sobre-list li {
  font-size: 0.85rem;
  color: var(--cinza);
  padding: 6px 0 6px 14px;
  border-left: 2px solid rgba(123,47,190,0.4);
  margin-bottom: 4px;
  line-height: 1.5;
}
.sobre-list li em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dourado);
  margin-top: 2px;
}

/* ===========================
   QUESTIONÁRIO
=========================== */
#questionario {
  padding: 120px 0;
  background: #0a0a12;
  position: relative;
}
#questionario::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--roxo), transparent);
}

.quiz-sub {
  font-size: 0.95rem;
  color: var(--cinza);
  margin-bottom: 48px;
  font-weight: 300;
}

.quiz-wrapper {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quiz-card {
  background: var(--branco);
  color: #111;
  border-radius: 16px;
  padding: 30px 32px;
}
.quiz-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.field-group { margin-bottom: 14px; }
.field-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--roxo);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field-group input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 0.9rem;
  color: #222;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-group input:focus {
  outline: none;
  border-color: var(--roxo);
  box-shadow: 0 0 0 3px rgba(123,47,190,0.1);
}

.field-group select {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 0.9rem;
  color: #222;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B2FBE' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field-group select:focus {
  outline: none;
  border-color: var(--roxo);
  box-shadow: 0 0 0 3px rgba(123,47,190,0.1);
}

.radio-group { display: flex; gap: 28px; flex-wrap: wrap; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  user-select: none;
}
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 20px; height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.radio-label input:checked + .radio-custom { border-color: var(--roxo); }
.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  background: var(--roxo);
  border-radius: 50%;
}

.quiz-msg {
  display: none;
  margin-top: 18px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: #166534;
  line-height: 1.65;
}
.quiz-msg.show { display: block; }

#bloco-sim, #bloco-carteira {
  display: none;
  animation: slideDown 0.4s cubic-bezier(.16,1,.3,1);
}
#bloco-sim.show, #bloco-carteira.show { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-hint {
  font-size: 0.78rem;
  color: var(--roxo);
  margin-bottom: 14px;
  font-weight: 500;
}

.carteira-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.carteira-item label {
  display: block;
  font-size: 0.75rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 4px;
}
.pct-input {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pct-input:focus-within { border-color: var(--roxo); }
.pct-input input {
  border: none;
  padding: 10px 12px;
  font-size: 0.88rem;
  width: 100%;
  color: #222;
  font-family: 'DM Sans', sans-serif;
}
.pct-input input:focus { outline: none; box-shadow: none; }
.pct-input span {
  padding: 0 12px;
  font-size: 0.82rem;
  color: #999;
  background: #f8f8f8;
  border-left: 1px solid #e0e0e0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.pct-total {
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  margin-top: 4px;
}
.pct-total.over { color: #dc2626; }
.pct-total.ok   { color: #16a34a; }

.btn-quiz {
  width: 100%;
  background: var(--roxo);
  color: var(--branco);
  border: none;
  border-radius: 50px;
  padding: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-quiz:hover {
  background: var(--roxo-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(123,47,190,0.35);
}

/* ===========================
   CTA FINAL
=========================== */
#cta-final {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0c0220 0%, #18044a 45%, #280870 100%);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(123,47,190,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(155,81,224,0.15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px;
}
.cta-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.25;
  margin-bottom: 44px;
}

.cta-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 44px;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}
.logo-text sup { font-size: 0.55rem; color: var(--roxo-light); vertical-align: super; }
.logo-text small { display: block; font-size: 0.5rem; letter-spacing: 3px; opacity: 0.6; font-weight: 400; }
.cta-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.25); }
.logo-xp-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ===========================
   FOOTER
=========================== */
#footer {
  background: #050505;
  border-top: 1px solid rgba(123,47,190,0.15);
  padding: 52px 32px;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer-role {
  font-size: 0.72rem;
  color: var(--roxo-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.footer-empresa {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-social { display: flex; gap: 22px; }
.footer-social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--roxo-light); }

.footer-legal {
  max-width: 760px;
  font-size: 0.62rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.22);
  font-weight: 300;
  letter-spacing: 0.1px;
}

.footer-copy {
  margin: 0 !important;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }

  .hero-content { padding: 110px 24px 80px; }
  .hero-name { letter-spacing: -1px; }
  .hero-photo {
    height: 44%;
    max-width: 55%;
    right: -3%;
    bottom: 80px;
    filter: brightness(0.65);
  }

  .sobre-grid { grid-template-columns: 1fr; }
  .carteira-grid { grid-template-columns: 1fr; }
  .quiz-card { padding: 24px 20px; }
}

@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 20px; }
  .cta-content h2 { letter-spacing: 1.5px; }
}

/* ===========================
   VÍDEO
=========================== */
#video {
  padding: 110px 0;
  background: var(--preto);
  position: relative;
  overflow: hidden;
}

#video::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,47,190,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.video-wrapper {
  max-width: 480px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(123,47,190,0.2);
  aspect-ratio: 9/16;
}

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

.video-desc {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.video-desc p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
}

.video-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--branco);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.2s;
}

.video-insta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ===========================
   UPGRADE VISUAL PRO
=========================== */

/* Linha separadora roxa entre seções */
#sobre, #investir, #video {
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent, rgba(123,47,190,0.3), transparent) 1;
}

/* Cursor personalizado */
* { cursor: none !important; }
.custom-cursor {
  width: 10px; height: 10px;
  background: var(--roxo-light);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.custom-cursor.grow {
  width: 32px; height: 32px;
  background: rgba(155,81,224,0.3);
}
.custom-cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(155,81,224,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

/* Scrollbar roxa */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--preto); }
::-webkit-scrollbar-thumb { background: var(--roxo); border-radius: 2px; }

/* Glow nos cards do sobre ao hover */
.sobre-card {
  box-shadow: 0 0 0 rgba(123,47,190,0);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.sobre-card:hover {
  box-shadow: 0 8px 40px rgba(123,47,190,0.2);
}

/* Animação de entrada do nome no hero */
.hero-name {
  background: linear-gradient(135deg, #ffffff 0%, #e0d0ff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Linha animada embaixo do section-tag */
.section-tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: var(--roxo);
  margin-top: 6px;
  transition: width 0.6s ease;
}
.section-tag.visible::after { width: 100%; }

/* Badge hover glow */
.badge {
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.badge:hover {
  border-color: var(--roxo-light);
  box-shadow: 0 0 12px rgba(155,81,224,0.3);
  color: #fff;
}

/* Glow no botão quiz */
.btn-quiz {
  position: relative;
  overflow: hidden;
}
.btn-quiz::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s, height 0.5s;
}
.btn-quiz:active::after {
  width: 300px; height: 300px;
}

/* Particle dots background no hero */
#hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(155,81,224,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.4) 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.4) 0%, transparent 65%);
}

/* Video menor */
.video-wrapper {
  max-width: 320px !important;
  box-shadow: 0 0 80px rgba(123,47,190,0.25), 0 0 0 1px rgba(123,47,190,0.15) !important;
}

/* CTA logo img */
.cta-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  margin-bottom: 4px;
}

/* Número animado na eyebrow */
.hero-eyebrow {
  animation: fadeSlideDown 1s ease both;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Linha roxa pulsante embaixo do CTA */
#cta-final::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--roxo-light);
  border-radius: 2px;
  animation: pulse-line 3s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { width: 80px; opacity: 0.4; }
  50%       { width: 180px; opacity: 0.9; }
}

/* ===========================
   BARRA DE PROGRESSO
=========================== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--roxo), var(--roxo-light));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(155,81,224,0.6);
}

/* ===========================
   PARTÍCULAS NO HERO
=========================== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(155,81,224,0.6);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* ===========================
   SEPARADOR DE ONDAS
=========================== */
.wave-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.wave-sep svg {
  display: block;
  width: 100%;
}

/* ===========================
   GLOW TEXTO HERO SUB
=========================== */
.hero-sub {
  text-shadow: 0 0 40px rgba(123,47,190,0.2);
}

/* ===========================
   TIPOGRAFIA PREMIUM
=========================== */

/* Nome principal — cinematográfico */
.hero-name {
  font-family: 'DM Serif Display', serif !important;
  font-size: clamp(4.5rem, 10vw, 8rem) !important;
  font-weight: 400 !important;
  letter-spacing: -3px !important;
  line-height: 0.9 !important;
  font-style: italic;
}

/* Eyebrow — tracking grande, peso leve */
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 300 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  color: var(--roxo-light) !important;
}

/* Sub hero — elegante e leve */
.hero-sub {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.2px !important;
  line-height: 1.85 !important;
  color: rgba(255,255,255,0.65) !important;
}

/* Títulos de seção */
.section-title {
  font-family: 'DM Serif Display', serif !important;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
  font-weight: 400 !important;
  letter-spacing: -1px !important;
  line-height: 1.1 !important;
}

/* Section tag — micro tipografia */
.section-tag {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 4px !important;
}

/* Cards sobre — nome da instituição */
.sobre-inst-name {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
}

/* Cards sobre — header */
.sobre-card-header h3 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.65rem !important;
  letter-spacing: 3px !important;
  font-weight: 600 !important;
}

/* Lista sobre */
.sobre-list li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.1px !important;
}

/* Quiz */
.quiz-card h3 {
  font-family: 'DM Serif Display', serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.3px !important;
  color: #111 !important;
}

.field-group label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
}

.field-group input,
.field-group select {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 300 !important;
}

/* CTA final */
.cta-content h2 {
  font-family: 'DM Serif Display', serif !important;
  font-size: clamp(2rem, 5vw, 3.6rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.5px !important;
  text-transform: none !important;
  line-height: 1.2 !important;
}

/* Botões — consistência */
.btn-primary,
.btn-quiz,
.btn-whatsapp,
.video-insta-btn,
.nav-cta {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
}

.btn-ghost {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
}

/* Badges */
.badge {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 2.5px !important;
}

/* Nav links */
.nav-links a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
}

/* Footer */
.footer-name {
  font-family: 'DM Serif Display', serif !important;
  font-size: 1.5rem !important;
  font-style: italic !important;
  letter-spacing: -0.5px !important;
}

.footer-role,
.footer-empresa,
.footer-copy {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 1.5px !important;
}

/* Nav logo */
.nav-logo {
  font-family: 'DM Serif Display', serif !important;
  font-style: italic !important;
  letter-spacing: 1px !important;
}

/* Descrição sobre */
.sobre-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.1px !important;
  line-height: 1.9 !important;
}

/* Quiz sub */
.quiz-sub {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.2px !important;
}

/* Video desc */
.video-desc p {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  line-height: 1.9 !important;
  letter-spacing: 0.1px !important;
}


/* ===========================
   CURSOR — ESCONDER NO MOBILE
=========================== */
@media (max-width: 860px) {
  * { cursor: auto !important; }
  .custom-cursor,
  .custom-cursor-ring { display: none !important; }
}
/* ============================================
   MARCA D'ÁGUA - LURDIN (FOOTER BOTTOM)
   ============================================ */

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Linha divisória sutil */
  padding-top: 25px;
}

.lurdin-wm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9; /* Quase 100% de opacidade para garantir leitura */
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lurdin-wm:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lurdin-wm-label {
  color: rgba(255, 255, 255, 0.85) !important; /* Texto bem claro e visível no fundo escuro */
  font-size: 13px;
  font-family: 'DM Sans', sans-serif !important;
  letter-spacing: 0.8px;
  text-transform: lowercase;
}

.lurdin-wm img {
  height: 65px; /* Aumentado bastante para o logo e o nome ficarem bem legíveis */
  width: auto;
  display: block;
  filter: none; 
  opacity: 0.95; /* Um pouco mais aceso para destacar melhor */
  transition: all 0.2s ease;
}

.lurdin-wm:hover img {
  opacity: 1; /* Fica 100% nítido quando passa o mouse */
}

/* ============================================
   RESPONSIVIDADE DO RODAPÉ (MOBILE)
   ============================================ */
@media (max-width: 600px) {
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }

  /* Garante que o texto longo do Diogo Flores quebre linha e centralize */
  .footer-copy {
    display: block;
    text-align: center;
    line-height: 1.6 !important;
    white-space: normal !important;
    font-size: 11px !important; /* Ajuste sutil de tamanho para celular */
  }

  /* Organiza a assinatura em coluna no celular para não espremer nas laterais */
  .lurdin-wm {
    flex-direction: column !important;
    gap: 6px !important;
    width: 100%;
    justify-content: center;
  }

  /* Reduz ligeiramente o logo para não estourar no celular */
  .lurdin-wm img {
    height: 48px !important; 
  }
}