/* ===========================
   VARIÁVEIS E RESET
=========================== */
:root {
  --primary: #7B2D8B;
  --primary-dark: #5a1f67;
  --pink: #E91E8C;
  --pink-light: #ff4db8;
  --gradient: linear-gradient(135deg, #7B2D8B 0%, #E91E8C 100%);
  --gradient-light: linear-gradient(135deg, #a044b8 0%, #ff4db8 100%);
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --shadow-purple: 0 8px 32px rgba(123,45,139,.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 999px;
  --font: 'Inter', system-ui, sans-serif;
  --transition: all .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BOTÕES
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(123,45,139,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ===========================
   TEXTOS GRADIENT
=========================== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #e8a0ff, #ff9de0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .3s, background .3s, border-color .3s;
}
.header.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--gray-200);
}

/* Backdrop do menu mobile (escurece o resto da tela, atrás do menu) */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,0,40,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 990;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }
/* Some ao rolar para baixo, reaparece ao subir */
.header.header--hidden { transform: translateY(-100%); }

/* Hero ocupa o topo: header começa transparente sobre a imagem */
.header.header--transparent {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.header.header--transparent .nav-link { color: rgba(255,255,255,.85); }
.header.header--transparent .nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
.header.header--transparent .hamburger span { background: #fff; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 88px;
}

.logo-img {
  height: 68px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  position: relative;
}

/* Magic sliding pill indicator (desktop only) */
.nav-indicator {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  height: 34px;
  border-radius: 999px;
  background: var(--gray-100);
  pointer-events: none;
  transition: left .28s cubic-bezier(.34,1.2,.64,1), width .28s cubic-bezier(.34,1.2,.64,1), opacity .2s ease, background .3s ease;
  opacity: 0;
  z-index: 0;
}
.header--transparent .nav-indicator { background: rgba(255,255,255,.15); }

.nav-mobile-footer { display: none; }

.nav-link {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .22s ease, transform .2s ease;
}
.nav-link:hover { color: var(--primary); background: transparent; transform: translateY(-1px); }
.nav-link.active {
  font-weight: 700;
  background: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient);
}
.header--transparent .nav-link.active { -webkit-text-fill-color: #fff; background-image: none; color: #fff; }
.header--transparent .nav-link:hover { color: #fff; }

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--gradient);
  color: var(--white);
  transition: var(--transition);
}
.social-icon:hover { transform: translateY(-2px); box-shadow: var(--shadow-purple); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  border-radius: 10px;
  transition: background .2s ease;
  z-index: 1001;
}
.hamburger:hover { background: rgba(142,36,170,.1); }
.hamburger span {
  display: block;
  border-radius: 2px;
  transition: transform .38s cubic-bezier(.34,1.2,.64,1), opacity .25s ease, width .3s ease, background .3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 22px; height: 2px; background: var(--gray-800); }
.hamburger span:nth-child(2) { width: 16px; height: 2px; background: var(--gray-800); align-self: flex-end; }
.hamburger span:nth-child(3) { width: 22px; height: 2px; background: var(--gray-800); }
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ===========================
   SCROLL PROGRESS BAR
=========================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 1100;
  background: linear-gradient(90deg, #e5179f, #8e24aa, #6a1b9a);
  box-shadow: 0 0 10px rgba(229,23,159,.6);
  transition: width .1s linear;
}

/* ===========================
   HERO — CINEMATOGRÁFICO FULL-SCREEN
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2a0a3f;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { position: absolute; inset: 0; display: block; }
.hero-media__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: #2a0a3f;   /* evita flash antes do poster/vídeo carregar */
  transform: scale(1.04);
  will-change: transform;
}
.hero-media__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.05);
  animation: hero-kenburns 18s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.14) translateX(-2%); }
}
.hero-media__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(42,10,63,.92) 0%, rgba(74,14,107,.72) 38%, rgba(74,14,107,.15) 68%, rgba(74,14,107,.05) 100%),
    linear-gradient(180deg, rgba(42,10,63,.4) 0%, transparent 30%, rgba(42,10,63,.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-rise .9s cubic-bezier(.22,1,.36,1) .15s forwards;
}
@keyframes hero-rise { to { opacity: 1; transform: none; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,.7);
  animation: hero-pulse 2s infinite;
}
@keyframes hero-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero-title {
  font-size: clamp(31px, 5.2vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
  text-wrap: balance;
}
.hero-title .gradient-text {
  display: block;
  margin-top: 2px;
  background: linear-gradient(135deg, #ff7ad1, #ffb3e6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.9);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.25);
}

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  animation: hero-rise .9s ease 1s forwards;
}
.hero-scroll__mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll__wheel {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: #fff;
  animation: hero-wheel 1.6s ease-in-out infinite;
}
@keyframes hero-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
.hero-scroll__txt {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ===========================
   SECTIONS BASE
=========================== */
.section { padding: 100px 0; }
.section-gray { background: var(--gray-50); }

.section-purple {
  background: linear-gradient(135deg, #4a0e6b 0%, #7B2D8B 50%, #c0186e 100%);
}

.section-vagas {
  background: linear-gradient(135deg, #1a0a2e 0%, #4a0e6b 50%, #9b1a6e 100%);
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 14px; }
.section-header p { font-size: 16px; color: var(--gray-600); }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(123,45,139,.1), rgba(233,30,140,.1));
  color: var(--primary);
  border: 1px solid rgba(123,45,139,.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.section-badge.light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

/* GRID DE SEÇÃO */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-grid.reverse .section-text { order: 2; }
.section-grid.reverse .section-image { order: 1; }

.section-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-text p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.75;
}
.section-text h2.light,
.section-text p.light { color: rgba(255,255,255,.9); }

.section-image img {
  width: 100%;
  border-radius: var(--radius);
}

.img-rounded { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.img-float {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* CHECK LIST */
.check-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.check-list li::before {
  content: '';
  display: inline-flex;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.check-list.light li { color: rgba(255,255,255,.9); }
.check-list.light li::before { background-color: rgba(255,255,255,.25); }

/* ===========================
   COMO FUNCIONA — STEPS
=========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===========================
   ÁREAS DE ATUAÇÃO
=========================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.area-img-wrap {
  height: 220px;
  overflow: hidden;
}
.area-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.area-card:hover .area-img-wrap img { transform: scale(1.05); }

.area-body { padding: 28px; }

.area-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(123,45,139,.1), rgba(233,30,140,.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.area-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.area-body p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }

.area-link {
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity .2s;
}
.area-link:hover { opacity: .75; }

/* ===========================
   VAGAS
=========================== */
.vagas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vagas-text h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.vagas-text p.light { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 32px; }

.vagas-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vagas-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

/* ===========================
   CONTATO
=========================== */
.contato-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }

.contato-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(123,45,139,.1), rgba(233,30,140,.1));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--gray-500); margin-bottom: 2px; }
.info-item a, .info-item span { font-size: 15px; color: var(--gray-800); font-weight: 500; }
.info-item a:hover { color: var(--primary); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--gray-900);
  padding: 64px 0 0;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}

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

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-links a,
.footer-links span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color .2s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0 80px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ===========================
   WHATSAPP FLUTUANTE
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

/* ===========================
   ANIMAÇÕES
=========================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in-delay { opacity: 0; transform: translateY(30px); transition: opacity .7s ease .2s, transform .7s ease .2s; }
.fade-in.visible, .fade-in-delay.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TABLET ===== */
@media (max-width: 980px) {
  .nav, .header-social { display: none; }
  .hamburger { display: flex; }

  /* Menu mobile — overlay full-screen premium */
  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #1a0030 0%, #2d0060 50%, #1a0030 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity .38s cubic-bezier(.22,1,.36,1), transform .38s cubic-bezier(.22,1,.36,1), visibility .38s;
    z-index: 999;
    overflow-y: auto;
  }
  .nav::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(229,23,159,.25) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(106,27,154,.30) 0%, transparent 55%);
    pointer-events: none;
  }
  .nav.open {
    opacity: 1; visibility: visible; transform: scale(1);
  }
  .nav-indicator { display: none; }
  .nav-mobile-footer {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    position: relative; z-index: 1;
  }
  .nav-mobile-footer .social-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
  }
  .nav-mobile-footer .social-icon:hover { background: rgba(255,255,255,.22); }

  /* Links do menu */
  .nav .nav-link {
    position: relative; z-index: 1;
    display: block;
    color: rgba(255,255,255,.75);
    padding: 14px 32px;
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 700;
    border-radius: 16px;
    text-align: center;
    width: 100%; max-width: 380px;
    transform: translateY(1px);
    transition: color .22s ease, background .22s ease, transform .22s ease;
    -webkit-text-fill-color: initial;
    background-image: none;
  }
  .nav .nav-link:hover { color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
  .nav .nav-link.active { color: #fff; background: rgba(229,23,159,.18); }
  .nav .nav-link.active::after {
    content: '';
    display: block; margin: 4px auto 0;
    width: 24px; height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e5179f, #8e24aa);
  }
  .header.header--transparent .nav .nav-link { color: rgba(255,255,255,.75); -webkit-text-fill-color: initial; }
  .header.header--transparent .nav .nav-link.active { color: #fff; }

  /* Entrada dos links em cascata */
  @keyframes navItemIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav.open .nav-link { animation: navItemIn .5s cubic-bezier(.22,1,.36,1) both; }
  .nav.open .nav-link:nth-child(2){animation-delay:.06s}
  .nav.open .nav-link:nth-child(3){animation-delay:.11s}
  .nav.open .nav-link:nth-child(4){animation-delay:.16s}
  .nav.open .nav-link:nth-child(5){animation-delay:.21s}
  .nav.open .nav-link:nth-child(6){animation-delay:.26s}
  .nav.open .nav-link:nth-child(7){animation-delay:.31s}
  .nav.open .nav-link:nth-child(8){animation-delay:.36s}
  .nav.open .nav-link:nth-child(9){animation-delay:.41s}
  .nav.open .nav-mobile-footer { animation: navItemIn .5s cubic-bezier(.22,1,.36,1) .46s both; }

  .header-inner { height: 76px; gap: 16px; }
  .logo-img { height: 56px; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  /* Hero full-screen: foto preenchendo a tela com o texto por cima */
  .hero {
    display: flex;
    align-items: flex-end;        /* conteúdo na parte de baixo */
    min-height: 100svh;
    padding: 0;
  }
  .hero-media__img {
    object-position: center;  /* recorte mobile já está centrado no casal */
  }
  .hero-media__overlay {
    background:
      linear-gradient(180deg, rgba(42,10,63,.45) 0%, rgba(42,10,63,.05) 30%, rgba(42,10,63,.55) 62%, rgba(42,10,63,.92) 100%);
  }
  .hero-inner { padding: 100px 22px 90px; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 19px; }
  .hero-scroll__txt { display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-divider { display: none; }
  .hero-stats {
    gap: 10px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 14px 18px;
    backdrop-filter: blur(6px);
  }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===========================
   GRAIN OVERLAY
=========================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .028;
}

/* ===========================
   CUSTOM CURSOR — só desktop
=========================== */
@media (pointer: fine) {
  html, html * { cursor: none !important; }

  .wbly-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(229,23,159,.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%,-50%);
    transition: transform .18s ease, border-color .2s ease,
                background .2s ease, width .18s ease, height .18s ease;
    will-change: transform;
    backface-visibility: hidden;
  }
  .wbly-cursor.is-hovering {
    width: 56px; height: 56px;
    border-color: rgba(229,23,159,.85);
    background: rgba(229,23,159,.08);
  }
  .wbly-cursor.is-clicking {
    transform: translate(-50%,-50%) scale(.75);
    background: rgba(229,23,159,.18);
  }

  .wbly-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: #e5179f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%,-50%);
    transition: opacity .15s ease;
    will-change: transform;
    box-shadow: 0 0 8px rgba(229,23,159,.7);
  }
}

/* ===========================
   HERO — AURORA ANIMADA
=========================== */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  animation: aurora-drift 12s ease-in-out infinite alternate;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(229,23,159,.35) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.hero::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,45,139,.4) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -6s;
}
@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-20px, 50px) scale(.95); }
  100% { transform: translate(60px, 20px) scale(1.05); }
}

/* ===========================
   MARQUEE
=========================== */
.wbly-marquee {
  overflow: hidden;
  background: linear-gradient(135deg, #3d0d5c 0%, #6a1b9a 50%, #c0186e 100%);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.wbly-marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-slide 28s linear infinite;
  will-change: transform;
}
.wbly-marquee__track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  padding: 0 28px;
}
.wbly-marquee__sep {
  color: rgba(255,255,255,.4) !important;
  padding: 0 !important;
  font-size: 10px !important;
}
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.wbly-marquee:hover .wbly-marquee__track { animation-play-state: paused; }

/* ===========================
   ANIMATED GRADIENT BORDER — CTAs
=========================== */
.wbly-btn, .btn-white, .wbly-wpp {
  position: relative;
}
.wbly-btn::before, .btn-white::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle, 0deg),
    #e5179f, #8e24aa, #6a1b9a, #e5179f
  );
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
  animation: spin-border 3s linear infinite;
}
.wbly-btn:hover::before { opacity: 1; }
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-border {
  to { --angle: 360deg; }
}

/* ===========================
   GLOW ACCENTS — botões e badges
=========================== */
.wbly-btn {
  box-shadow: 0 12px 28px rgba(229,23,159,.35),
              0 0 0 0 rgba(229,23,159,0);
  transition: transform .2s ease, box-shadow .3s ease;
}
.wbly-btn:hover {
  box-shadow: 0 18px 38px rgba(229,23,159,.5),
              0 0 40px rgba(229,23,159,.2);
}
.scroll-progress {
  box-shadow: 0 0 12px rgba(229,23,159,.8),
              0 0 4px rgba(142,36,170,.6);
}

/* ===========================
   SPOTLIGHT CARD — variável CSS via JS
=========================== */
.wbly-card, .wbly-area, .wbly-feat, .wbly-aboutcard {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
}
.wbly-card::after, .wbly-area::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--spotlight-x) var(--spotlight-y),
    rgba(229,23,159,.07),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
.wbly-card:hover::after, .wbly-area:hover::after { opacity: 1; }

/* ===========================
   GRADIENT TEXT ANIMADO
=========================== */
.hero-title .gradient-text {
  background: linear-gradient(135deg, #ff7ad1, #ffb3e6, #e5179f, #ff7ad1);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===========================
   HERO PARALLAX LAYER
=========================== */
.hero-media__img {
  will-change: transform;
}

/* ===========================
   REDUCED MOTION — acessibilidade
=========================== */
@media (prefers-reduced-motion: reduce) {
  .wbly-marquee__track { animation: none; }
  .hero::before, .hero::after { animation: none; }
  .hero-title .gradient-text { animation: none; background-position: 0% 50%; }
  .hero-media__img { animation: none; transform: none; }
  .hero-media__video { transform: none; }
  @keyframes spin-border { to { --angle: 0deg; } }
}
