:root {
  --purple-deep: #5B18C2;
  --purple-vivid: #6B21D6;
  --blue-mid: #2553C7;
  --cyan: #0DCDC8;
  --cyan-light: #4FE0E8;
  --meli-yellow: #FFE600;
  --meli-blue: #2D3277;
  --green: #25D366;
  --navy: #0D0A1E;
  --navy-mid: #160F30;
  --white: #FFFFFF;
  --off-white: #F3F1FF;
  --gray-light: #E8E4F7;
  --gray-text: #6B6890;
  --text-dark: #1A0F3C;
  --gradient-brand: linear-gradient(135deg, #5B18C2 0%, #2553C7 55%, #0DCDC8 100%);
  --gradient-hero: linear-gradient(135deg, #28105F 0%, #142A78 58%, #067B80 100%);
  --gradient-btn: linear-gradient(135deg, #6B21D6 0%, #0DCDC8 100%);
  --gradient-ml: linear-gradient(135deg, #FFE600 0%, #FFF6A8 58%, #0DCDC8 100%);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, .42);
  --shadow-brand: 0 22px 70px rgba(91, 24, 194, .22);
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  min-width: 0;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.cursor,
.cursor-ring {
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.cursor {
  background: var(--cyan);
  border-radius: 50%;
  height: 10px;
  mix-blend-mode: screen;
  transition: transform .15s ease;
  width: 10px;
}

.cursor-ring {
  border: 1.5px solid rgba(13, 205, 200, .45);
  border-radius: 50%;
  height: 36px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), width .25s, height .25s, opacity .25s;
  width: 36px;
}

@media (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}

nav {
  align-items: center;
  background: rgba(18, 8, 46, .93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 205, 200, .15);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(16px, 5vw, 6%);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow .3s, background .3s;
  z-index: 900;
}

nav.scrolled {
  background: rgba(13, 10, 30, .97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .45);
}

.nav-logo,
.footer-logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  max-width: min(170px, 42vw);
  object-fit: contain;
}

.logo-fallback {
  align-items: center;
  background: rgba(13, 205, 200, .08);
  border: 1px dashed rgba(13, 205, 200, .42);
  border-radius: 8px;
  color: var(--cyan);
  display: none;
  font-size: .72rem;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  letter-spacing: .12em;
  line-height: 1.2;
  min-width: 100px;
  text-align: center;
  text-transform: uppercase;
}

.logo-fallback-dark {
  color: var(--meli-blue);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a::after {
  background: var(--cyan);
  bottom: -5px;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  transition: width .3s;
  width: 0;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav,
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-reset {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  line-height: 1.2;
  max-width: 100%;
  min-height: 44px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.btn-nav {
  background: var(--gradient-btn);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(107, 33, 214, .4);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 10px 22px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}

.btn-nav:hover,
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(107, 33, 214, .58);
  transform: translateY(-3px);
}

.hamburger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  background: var(--white);
  border-radius: 2px;
  height: 2px;
  transition: .3s;
  width: 24px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  background: rgba(13, 10, 30, .98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 205, 200, .15);
  display: none;
  flex-direction: column;
  gap: 18px;
  left: 0;
  max-height: calc(100dvh - 72px);
  opacity: 0;
  overflow-y: auto;
  padding: 24px clamp(16px, 5vw, 6%);
  position: fixed;
  right: 0;
  top: 72px;
  transform: translateY(-10px);
  transition: transform .3s, opacity .3s;
  z-index: 850;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: .98rem;
  font-weight: 700;
  padding: 8px 0 14px;
  text-decoration: none;
}

.hero {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 230, 0, .1) 0%, transparent 34%),
    var(--gradient-hero);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 118px clamp(16px, 5vw, 6%) 86px;
  position: relative;
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgba(13, 205, 200, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 205, 200, .07) 1px, transparent 1px);
  background-size: 58px 58px;
  inset: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 45%, black 0%, transparent 100%);
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(90px);
  opacity: .24;
  position: absolute;
}

.hero-glow-a {
  background: var(--cyan);
  height: 520px;
  right: -150px;
  top: -120px;
  width: 520px;
}

.hero-glow-b {
  background: var(--purple-vivid);
  bottom: -140px;
  height: 440px;
  left: -140px;
  width: 440px;
}

.hero-float {
  align-items: center;
  animation: floatCard 5.8s ease-in-out infinite alternate;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-dark);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.hero-float img {
  height: 74%;
  object-fit: contain;
  width: 74%;
}

.hero-float-vylo {
  background: rgba(13, 10, 30, .48);
  border-radius: 18px;
  bottom: 6%;
  height: 92px;
  left: 4%;
  width: 154px;
}

.hero-float-ml {
  background: rgba(255, 230, 0, .84);
  border-radius: 26px;
  height: 142px;
  right: 6%;
  top: 15%;
  width: 142px;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

.hero-inner,
.section-inner,
.footer-inner {
  margin: 0 auto;
  max-width: 1260px;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
}

.hero-copy,
.lead-card {
  min-width: 0;
}

.hero-badge,
.lead-kicker,
.section-label,
.lesson-date {
  align-items: center;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-badge {
  background: rgba(255, 230, 0, .11);
  border: 1px solid rgba(255, 230, 0, .38);
  border-radius: 999px;
  color: var(--meli-yellow);
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 16px;
}

.hero-badge span {
  animation: pulseYellow 2s ease-in-out infinite;
  background: var(--meli-yellow);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

@keyframes pulseYellow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 230, 0, .58); }
  50% { box-shadow: 0 0 0 8px rgba(255, 230, 0, 0); }
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  max-width: 720px;
  overflow-wrap: anywhere;
}

.hero h1 strong {
  color: var(--meli-yellow);
  font-weight: 900;
}

.hero-copy > p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.08rem;
  line-height: 1.78;
  margin-top: 24px;
  max-width: 610px;
}

.hero-actions,
.final-actions,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  background: var(--gradient-btn);
  border-radius: 999px;
  box-shadow: 0 8px 34px rgba(107, 33, 214, .48);
  color: var(--white);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 15px 30px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}

.btn-primary:disabled {
  cursor: wait;
  opacity: .74;
  transform: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, .03);
  border: 1.5px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: var(--white);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 14px 28px;
  text-transform: uppercase;
  transition: border-color .2s, background .2s, transform .2s;
}

.btn-secondary:hover {
  background: rgba(13, 205, 200, .1);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .28);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 13px 22px;
  text-transform: uppercase;
}

.btn-reset {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 13px 22px;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 680px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  min-height: 96px;
  padding: 16px;
}

.hero-metrics span {
  color: var(--cyan);
  display: block;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-metrics strong {
  color: var(--white);
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.lead-card {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  box-shadow: var(--shadow-dark);
  padding: 28px;
  width: 100%;
}

.lead-card-header {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.lead-kicker {
  color: var(--purple-vivid);
  margin-bottom: 8px;
}

.lead-card h2 {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.lead-card p {
  color: var(--gray-text);
  font-size: .93rem;
  line-height: 1.6;
  margin-top: 8px;
}

.lead-pill {
  background: rgba(255, 230, 0, .24);
  border: 1px solid rgba(45, 50, 119, .12);
  border-radius: 999px;
  color: var(--meli-blue);
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 15px;
}

.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: var(--text-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  color: var(--text-dark);
  max-width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 88px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #FCFEFF;
  border-color: rgba(13, 205, 200, .74);
  box-shadow: 0 0 0 4px rgba(13, 205, 200, .12);
}

.consent-row {
  align-items: flex-start;
  color: var(--gray-text);
  display: flex;
  font-size: .78rem;
  gap: 10px;
  line-height: 1.45;
}

.consent-row input {
  accent-color: var(--purple-vivid);
  flex-shrink: 0;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.form-submit {
  border-radius: 999px;
  margin-top: 2px;
  min-height: 52px;
  width: 100%;
}

.form-note {
  color: var(--gray-text);
  font-size: .77rem;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  border-radius: 12px;
  display: none;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px;
}

.form-status.show {
  display: block;
}

.form-status.info {
  background: rgba(13, 205, 200, .12);
  border: 1px solid rgba(13, 205, 200, .28);
  color: #24505C;
}

.form-status.error {
  background: rgba(255, 75, 118, .1);
  border: 1px solid rgba(255, 75, 118, .26);
  color: #8B1E3F;
}

.success-box {
  background: linear-gradient(135deg, rgba(37, 211, 102, .12), rgba(13, 205, 200, .1));
  border: 1px solid rgba(37, 211, 102, .28);
  border-radius: 18px;
  color: var(--text-dark);
  display: none;
  margin-top: 18px;
  padding: 20px;
}

.success-box.show {
  animation: riseIn .42s ease;
  display: block;
}

.success-box strong {
  color: #09883a;
  display: block;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.marquee-strip {
  background: var(--gradient-brand);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-inner {
  animation: marqueeScroll 26s linear infinite;
  display: flex;
  white-space: nowrap;
  width: max-content;
}

.marquee-inner span {
  align-items: center;
  color: rgba(255, 255, 255, .92);
  display: inline-flex;
  font-size: .82rem;
  font-weight: 900;
  gap: 26px;
  letter-spacing: .1em;
  padding: 0 26px;
  text-transform: uppercase;
}

.marquee-inner span::after {
  background: var(--meli-yellow);
  border-radius: 50%;
  content: "";
  height: 7px;
  opacity: .72;
  width: 7px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

section {
  padding: 100px clamp(16px, 5vw, 6%);
  position: relative;
}

.section-label {
  color: var(--purple-vivid);
  gap: 8px;
  margin-bottom: 14px;
}

.section-label::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  width: 24px;
}

.section-title {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.section-desc {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 680px;
  overflow-wrap: break-word;
}

.section-header-centered {
  margin: 0 auto 60px;
  max-width: 780px;
  text-align: center;
}

.section-header-centered .section-label {
  justify-content: center;
}

.section-header-centered .section-label::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  width: 24px;
}

.section-header-centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.intro-section,
.audience-section {
  background: var(--off-white);
}

.intro-grid,
.included-grid,
.audience-grid,
.outcomes-grid,
.about-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-panel,
.outcome-panel {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 22px;
  box-shadow: 0 18px 56px rgba(91, 24, 194, .1);
  padding: 30px;
}

.event-panel h3,
.outcome-panel h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list div {
  background: var(--off-white);
  border-radius: 14px;
  padding: 14px 16px;
}

.event-list span {
  color: var(--purple-vivid);
  display: block;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.event-list strong {
  color: var(--text-dark);
  display: block;
  font-size: .94rem;
  line-height: 1.35;
}

.schedule-section {
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 20px;
}

.lesson-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(91, 24, 194, .07);
  display: grid;
  gap: 24px;
  grid-template-columns: 92px minmax(0, 1fr);
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.lesson-card::after {
  color: rgba(107, 33, 214, .06);
  content: attr(data-day);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 18px;
}

.lesson-card:hover {
  border-color: rgba(13, 205, 200, .34);
  box-shadow: 0 22px 62px rgba(91, 24, 194, .13);
  transform: translateY(-5px);
}

.lesson-card-featured {
  background: var(--gradient-brand);
  border: 0;
  color: var(--white);
}

.lesson-card-featured::after {
  color: rgba(255, 255, 255, .1);
}

.lesson-number {
  align-items: center;
  background: var(--gradient-btn);
  border-radius: 18px;
  color: var(--white);
  display: flex;
  font-size: 1.45rem;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.lesson-card-featured .lesson-number {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--meli-yellow);
}

.lesson-content {
  position: relative;
  z-index: 1;
}

.lesson-date {
  color: var(--purple-vivid);
  margin-bottom: 10px;
}

.lesson-card-featured .lesson-date {
  color: var(--meli-yellow);
}

.lesson-content h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  line-height: 1.18;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.lesson-speaker {
  color: var(--gray-text);
  font-weight: 800;
  margin-bottom: 18px;
}

.lesson-card-featured .lesson-speaker {
  color: rgba(255, 255, 255, .76);
}

.lesson-content ul,
.included-cards,
.audience-list,
.outcomes-list {
  list-style: none;
}

.lesson-content ul {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lesson-content li {
  align-items: flex-start;
  color: var(--gray-text);
  display: flex;
  font-size: .92rem;
  gap: 10px;
  line-height: 1.52;
}

.lesson-card-featured li {
  color: rgba(255, 255, 255, .82);
}

.lesson-content li::before,
.audience-list li::before {
  background: linear-gradient(135deg, var(--purple-vivid), var(--cyan));
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .72);
  content: "";
  flex-shrink: 0;
  height: 16px;
  margin-top: 4px;
  width: 16px;
}

.lesson-card-featured li::before {
  background: var(--meli-yellow);
  box-shadow: inset 0 0 0 5px rgba(45, 50, 119, .18);
}

.included-section,
.final-cta {
  background:
    linear-gradient(135deg, rgba(255, 230, 0, .1) 0%, transparent 30%),
    var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
}

.included-section::before,
.final-cta::before {
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: .55;
  position: absolute;
}

.included-section .section-label,
.included-section .section-title,
.final-cta .section-label,
.final-cta .section-title {
  color: var(--white);
}

.included-section .section-label,
.final-cta .section-label {
  color: var(--cyan);
}

.included-section .section-desc,
.final-cta p {
  color: rgba(255, 255, 255, .68);
}

.included-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.included-cards article {
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  min-height: 188px;
  padding: 22px;
  transition: transform .25s, background .25s, border-color .25s;
}

.included-cards article:first-child {
  grid-column: span 2;
}

.included-cards article:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(13, 205, 200, .34);
  transform: translateY(-4px);
}

.included-cards span {
  color: var(--meli-yellow);
  display: block;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.included-cards h3 {
  font-size: 1.14rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.included-cards p {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  line-height: 1.6;
}

.audience-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-list li {
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(91, 24, 194, .06);
  display: flex;
  gap: 10px;
  line-height: 1.45;
  min-height: 104px;
  padding: 18px;
}

.audience-list span {
  color: var(--purple-vivid);
  display: block;
  font-weight: 900;
}

.outcomes-section {
  background: var(--white);
}

.outcomes-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcomes-list div {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.45;
  min-height: 94px;
  padding: 18px;
}

.about-vylo {
  background: var(--off-white);
}

.about-grid p {
  color: var(--gray-text);
  line-height: 1.78;
  margin-bottom: 16px;
}

.final-inner {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.final-inner .section-label {
  justify-content: center;
}

.final-inner .section-label::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  width: 24px;
}

.final-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.14;
}

.final-inner p {
  font-size: 1.02rem;
  line-height: 1.74;
  margin: 20px auto 0;
  max-width: 680px;
}

.final-actions {
  justify-content: center;
}

footer {
  background: #070F22;
  border-top: 1px solid rgba(13, 205, 200, .12);
  padding: 44px clamp(16px, 5vw, 6%) 32px;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-logo img {
  height: 42px;
  object-fit: contain;
  width: auto;
}

.footer-copy,
.footer-links a {
  color: rgba(255, 255, 255, .38);
  font-size: .78rem;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--cyan);
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: .72rem;
    letter-spacing: .06em;
  }

  .hero-inner {
    gap: 36px;
  }

  .lead-card {
    padding: 24px;
  }
}

@media (max-width: 1040px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-inner,
  .intro-grid,
  .included-grid,
  .audience-grid,
  .outcomes-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .lead-card {
    max-width: 760px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-float-vylo {
    display: none;
  }

  .hero-float-ml {
    height: 104px;
    right: 22px;
    top: 96px;
    width: 104px;
  }
}

@media (max-width: 820px) {
  section {
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .hero {
    align-items: flex-start;
    padding-bottom: 72px;
  }

  .hero-float {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-metrics,
  .field-grid,
  .included-cards,
  .audience-list,
  .outcomes-list,
  .lesson-content ul {
    grid-template-columns: 1fr;
  }

  .included-cards article:first-child {
    grid-column: span 1;
  }

  .lesson-card {
    grid-template-columns: 1fr;
  }

  .lesson-card::after {
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  nav {
    height: 66px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-logo img {
    height: 42px;
    max-width: 150px;
  }

  .mobile-menu {
    max-height: calc(100dvh - 66px);
    padding: 20px 16px;
    top: 66px;
  }

  section {
    padding: 68px 16px;
  }

  .hero {
    padding: 96px 16px 58px;
  }

  .hero-badge,
  .section-label,
  .lesson-date {
    letter-spacing: .08em;
  }

  .hero-badge {
    flex-wrap: wrap;
    line-height: 1.25;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions,
  .final-actions,
  .success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp,
  .btn-reset {
    padding-left: 18px;
    padding-right: 18px;
    width: 100%;
  }

  .lead-card,
  .event-panel,
  .outcome-panel,
  .lesson-card,
  .included-cards article {
    border-radius: 18px;
    padding: 20px;
  }

  .lead-card-header {
    flex-direction: column;
    gap: 12px;
  }

  .lead-pill {
    align-self: flex-start;
  }

  .lesson-number {
    height: 58px;
    width: 58px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.86rem;
  }

  .section-title,
  .final-inner h2 {
    font-size: 1.7rem;
  }

  .lead-card,
  .event-panel,
  .outcome-panel,
  .lesson-card,
  .included-cards article {
    padding: 18px;
  }

  .form-field label {
    font-size: .7rem;
    letter-spacing: .04em;
  }

  .marquee-inner span {
    font-size: .72rem;
    padding: 0 18px;
  }
}

/* ================================================================
   HERO MINIMALISTA - IMERSÃO ACELERA VYLO
   ================================================================ */

.hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 230, 0, .18), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(13, 205, 200, .16), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F5FF 100%);
  color: var(--text-dark);
  min-height: 100vh;
  padding-bottom: 54px;
  text-align: center;
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgba(91, 24, 194, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 24, 194, .045) 1px, transparent 1px);
  opacity: .75;
}

.hero-glow {
  opacity: .12;
}

.hero-inner-clean {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1120px;
}

.hero-brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 4px;
  padding: 8px;
}

.brand-logo {
  align-items: center;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(107, 33, 214, .12);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(91, 24, 194, .1);
  display: flex;
  height: 72px;
  justify-content: center;
  overflow: hidden;
  padding: 12px 18px;
}

.brand-logo-vylo {
  background: var(--gradient-brand);
  width: 176px;
}

.brand-logo-ml {
  background: rgba(255, 230, 0, .72);
  width: 150px;
}

.brand-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-logo .logo-fallback {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: .78rem;
  height: auto;
  letter-spacing: .08em;
  min-width: auto;
  padding: 0;
}

.brand-logo-vylo .logo-fallback {
  color: var(--white);
}

.brand-logo-ml .logo-fallback {
  color: var(--meli-blue);
}

.nav-logo .logo-fallback,
.footer-logo .logo-fallback {
  background: var(--gradient-brand);
  border: 1px solid rgba(13, 205, 200, .32);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(91, 24, 194, .24);
  color: var(--white);
  height: 38px;
  min-width: 98px;
}

.brand-plus {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  color: var(--purple-vivid);
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.hero-copy-centered {
  margin: 0 auto;
  max-width: 860px;
}

.hero-copy-centered .hero-badge {
  background: rgba(255, 230, 0, .22);
  border-color: rgba(255, 230, 0, .56);
  color: var(--meli-blue);
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-centered .hero-badge span {
  background: var(--cyan);
}

.hero-copy-centered h1 {
  color: var(--text-dark);
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  letter-spacing: 0;
  line-height: .96;
  margin: 0 auto;
  max-width: 940px;
}

.hero-copy-centered h1 small {
  color: var(--purple-vivid);
  display: block;
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  font-weight: 900;
  letter-spacing: .22em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-copy-centered > p {
  color: var(--gray-text);
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.hero-choice-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px auto 0;
  max-width: 960px;
  width: 100%;
}

.hero-choice-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(107, 33, 214, .12);
  border-radius: 20px;
  box-shadow: 0 18px 52px rgba(91, 24, 194, .1);
  color: var(--text-dark);
  display: grid;
  gap: 18px;
  min-height: 360px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hero-choice-card::after {
  background: linear-gradient(90deg, var(--purple-vivid), var(--cyan));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .25s ease;
}

.hero-choice-card:hover {
  border-color: rgba(13, 205, 200, .42);
  box-shadow: 0 24px 72px rgba(91, 24, 194, .16);
  transform: translateY(-6px);
}

.hero-choice-card:hover::after {
  transform: scaleX(1);
}

.choice-image {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(243, 241, 255, .92), rgba(255, 255, 255, .9));
  border: 1px solid rgba(107, 33, 214, .1);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  min-height: 218px;
  overflow: hidden;
  padding: 8px;
}

.choice-image img {
  height: 100%;
  max-height: 238px;
  object-fit: contain;
  transition: transform .3s ease;
  width: 100%;
}

.choice-image-cart {
  background:
    radial-gradient(circle at 50% 45%, rgba(13, 205, 200, .18), transparent 50%),
    linear-gradient(135deg, rgba(91, 24, 194, .08), rgba(255, 255, 255, .95));
}

.choice-image-cart img {
  border-radius: 22px;
  max-height: 206px;
  width: auto;
}

.choice-image-ticket img {
  max-height: 224px;
}

.hero-choice-card:hover .choice-image img {
  transform: scale(1.035);
}

.choice-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.choice-content span {
  color: var(--purple-vivid);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.choice-content strong {
  color: var(--text-dark);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.12;
}

.hero-metrics-clean {
  margin: 2px auto 0;
  max-width: 820px;
  width: 100%;
}

.hero-metrics-clean div {
  background: rgba(255, 255, 255, .8);
  border-color: rgba(107, 33, 214, .1);
  box-shadow: 0 14px 40px rgba(91, 24, 194, .08);
  min-height: 84px;
}

.hero-metrics-clean span {
  color: var(--purple-vivid);
}

.hero-metrics-clean strong {
  color: var(--text-dark);
}

.hero-scroll {
  align-items: center;
  align-self: center;
  color: var(--gray-text);
  display: inline-flex;
  flex-direction: column;
  font-size: .78rem;
  font-weight: 900;
  gap: 7px;
  letter-spacing: .12em;
  margin-top: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.hero-scroll span {
  align-items: center;
  background: var(--gradient-btn);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 1.1rem;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.hero-scroll:hover {
  color: var(--purple-vivid);
  transform: translateY(3px);
}

.contact-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--off-white) 100%);
}

.contact-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
}

.contact-copy {
  min-width: 0;
}

.contact-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-highlights div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(91, 24, 194, .07);
  color: var(--text-dark);
  display: flex;
  font-weight: 800;
  gap: 12px;
  padding: 16px 18px;
}

.contact-highlights span {
  color: var(--purple-vivid);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}

@media (max-width: 1040px) {
  .hero-inner-clean,
  .hero-copy-centered {
    max-width: 840px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section .lead-card {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 104px;
  }

  .hero-choice-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hero-choice-card {
    min-height: auto;
  }

  .hero-metrics-clean {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .brand-logo {
    height: 64px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 92px;
  }

  .hero-brand-lockup {
    gap: 8px;
    padding: 0;
  }

  .brand-logo {
    border-radius: 14px;
    height: 54px;
    padding: 10px 12px;
  }

  .brand-logo-vylo {
    width: 132px;
  }

  .brand-logo-ml {
    width: 112px;
  }

  .brand-plus {
    font-size: .92rem;
    height: 30px;
    width: 30px;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.25rem, 14vw, 3.45rem);
  }

  .hero-copy-centered h1 small {
    letter-spacing: .16em;
  }

  .hero-choice-card {
    border-radius: 20px;
    padding: 18px;
  }

  .choice-image {
    min-height: 190px;
  }

  .choice-image img {
    max-height: 196px;
  }

  .contact-highlights div {
    align-items: flex-start;
  }
}

/* ================================================================
   HERO CLEAN - INSPIRAÇÃO VISUAL ACELERA VYLO
   ================================================================ */

body {
  background: #EEEEEF;
}

nav {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(26, 15, 60, .08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(13, 10, 30, .13);
  height: 64px;
  left: 12px;
  margin: 0 auto;
  max-width: 1480px;
  padding: 0 clamp(18px, 5vw, 72px);
  right: 12px;
  top: 12px;
}

nav.scrolled {
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 14px 36px rgba(13, 10, 30, .16);
}

.nav-logo img {
  height: 38px;
  max-width: min(132px, 34vw);
}

.nav-logo .logo-fallback {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(26, 15, 60, .7);
  height: auto;
  min-width: auto;
}

.nav-links {
  gap: clamp(24px, 4vw, 62px);
}

.nav-links a {
  color: rgba(26, 15, 60, .62);
  font-size: .84rem;
  letter-spacing: .04em;
}

.nav-links a::after {
  background: linear-gradient(90deg, var(--purple-vivid), var(--cyan));
  bottom: -8px;
  height: 2px;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.btn-nav {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(107, 33, 214, .16);
  box-shadow: none;
  color: var(--purple-vivid);
  min-height: 40px;
  padding: 9px 18px;
}

.btn-nav:hover {
  box-shadow: 0 10px 28px rgba(91, 24, 194, .16);
}

.hamburger span {
  background: var(--text-dark);
}

.mobile-menu {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(26, 15, 60, .08);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(13, 10, 30, .16);
  left: 12px;
  padding: 20px;
  right: 12px;
  top: 86px;
}

.mobile-menu a {
  border-bottom-color: rgba(26, 15, 60, .08);
  color: rgba(26, 15, 60, .72);
}

.hero {
  background:
    linear-gradient(180deg, #EEEEEF 0%, #F7F7FA 52%, #FFFFFF 100%);
  min-height: 100svh;
  padding: 118px clamp(16px, 5vw, 6%) 34px;
}

.hero::before {
  animation: heroGradientSweep 8s ease-in-out infinite alternate;
  background:
    linear-gradient(105deg, rgba(255, 230, 0, .32) 0%, rgba(255, 255, 255, .92) 43%, rgba(13, 205, 200, .24) 100%);
  background-size: 160% 100%;
  content: "";
  height: 212px;
  left: 50%;
  max-width: 930px;
  position: absolute;
  top: 102px;
  transform: translateX(-50%);
  width: 66vw;
  z-index: 0;
}

.hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(91, 24, 194, .055) 100%);
  bottom: 0;
  content: "";
  height: 38%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

@keyframes heroGradientSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgba(91, 24, 194, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 24, 194, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  height: 212px;
  left: 50%;
  mask-image: none;
  max-width: 930px;
  opacity: .7;
  right: auto;
  top: 102px;
  transform: translateX(-50%);
  width: 66vw;
}

.hero-glow {
  display: none;
}

.hero-inner-clean {
  gap: 18px;
  max-width: 1320px;
}

.hero-copy-centered {
  max-width: 920px;
  z-index: 2;
}

.hero-copy-centered .hero-badge {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(255, 230, 0, .88);
  box-shadow: 0 10px 28px rgba(255, 230, 0, .12);
  color: var(--meli-blue);
  font-size: .64rem;
  margin-bottom: 16px;
  padding: 7px 17px;
}

.hero-copy-centered h1 {
  color: var(--text-dark);
  font-size: clamp(3.4rem, 7.8vw, 6.6rem);
  line-height: .88;
}

.hero-copy-centered h1 small {
  color: var(--purple-vivid);
  font-size: clamp(.8rem, 1.15vw, 1.08rem);
  letter-spacing: .34em;
  margin-bottom: 14px;
}

.hero-copy-centered > p,
.hero-metrics-clean,
.marquee-strip {
  display: none;
}

.hero-showcase {
  min-height: 540px;
  margin: -8px auto 0;
  max-width: 1180px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-visual {
  display: block;
  position: absolute;
  text-decoration: none;
  transition: filter .28s ease;
  will-change: transform;
}

.hero-visual img {
  filter: drop-shadow(0 22px 32px rgba(13, 10, 30, .16));
  object-fit: contain;
  transition: transform .28s ease, filter .28s ease;
  width: 100%;
}

.hero-visual:hover img {
  filter: drop-shadow(0 26px 38px rgba(13, 10, 30, .2));
  transform: scale(1.035);
}

.hero-visual-ticket {
  animation: heroTicketFloat 5.8s ease-in-out infinite alternate;
  bottom: 120px;
  left: 0;
  max-width: 720px;
  width: 58%;
  z-index: 3;
}

.hero-visual-cart {
  animation: heroCartFloat 6.4s ease-in-out infinite alternate;
  max-width: 470px;
  right: 2%;
  top: 2px;
  width: 38%;
  z-index: 2;
}

.hero-visual-cart img {
  padding: 10px;
}

@keyframes heroTicketFloat {
  0% { transform: translate3d(0, 8px, 0) rotate(-.8deg); }
  100% { transform: translate3d(0, -8px, 0) rotate(.4deg); }
}

@keyframes heroCartFloat {
  0% { transform: translate3d(0, -4px, 0) rotate(.6deg); }
  100% { transform: translate3d(0, 12px, 0) rotate(-.4deg); }
}

.hero-cta-strip {
  align-items: center;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(26, 15, 60, .06);
  border-radius: 8px;
  bottom: 36px;
  box-shadow: 0 18px 46px rgba(13, 10, 30, .08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  left: 50%;
  max-width: 900px;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
  width: 82%;
  z-index: 4;
}

.hero-cta-strip a {
  color: var(--text-dark);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
  padding: 16px 22px;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.hero-cta-strip a:hover {
  background: rgba(107, 33, 214, .08);
  color: var(--purple-vivid);
}

.hero-cta-strip span {
  background: linear-gradient(180deg, transparent 0%, rgba(107, 33, 214, .24) 50%, transparent 100%);
  height: 100%;
  justify-self: center;
  width: 2px;
}

.hero-scroll {
  color: rgba(26, 15, 60, .62);
  flex-direction: row;
  gap: 10px;
  margin-top: -10px;
}

.hero-scroll span {
  animation: arrowSoftBounce 1.8s ease-in-out infinite;
  background: transparent;
  color: var(--purple-vivid);
  font-size: 1rem;
  height: auto;
  width: auto;
}

@keyframes arrowSoftBounce {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-visual-ticket,
  .hero-visual-cart,
  .hero-scroll span {
    animation: none;
  }
}

@media (max-width: 1040px) {
  nav {
    height: 60px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero::before,
  .hero-grid-bg {
    top: 90px;
    width: 84vw;
  }

  .hero-showcase {
    min-height: 470px;
  }

  .hero-visual-ticket {
    bottom: 118px;
    width: 60%;
  }

  .hero-visual-cart {
    right: 0;
    width: 39%;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero::before,
  .hero-grid-bg {
    height: 206px;
    width: 92vw;
  }

  .hero-copy-centered h1 {
    font-size: clamp(3.05rem, 13vw, 5.4rem);
  }

  .hero-showcase {
    display: block;
    max-width: 620px;
    min-height: 520px;
    padding-top: 0;
  }

  .hero-visual {
    animation: none;
    position: absolute;
  }

  .hero-visual-ticket {
    bottom: auto;
    left: 0;
    max-width: none;
    top: 46px;
    width: 76%;
  }

  .hero-visual-cart {
    max-width: none;
    right: 0;
    top: 172px;
    width: 52%;
  }

  .hero-cta-strip {
    bottom: 40px;
    grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
    left: 50%;
    max-width: 560px;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
  }

  .hero-cta-strip span {
    height: 100%;
    width: 2px;
  }

  .hero-cta-strip a {
    font-size: clamp(1rem, 4.4vw, 1.35rem);
    padding: 14px 12px;
  }

  .hero-scroll {
    margin-top: -6px;
  }
}

@media (max-width: 560px) {
  nav {
    border-radius: 16px;
    height: 56px;
    left: 10px;
    padding: 0 16px;
    right: 10px;
    top: 10px;
  }

  .nav-logo img {
    height: 34px;
  }

  .mobile-menu {
    top: 76px;
  }

  .hero {
    padding: 96px 16px 34px;
  }

  .hero::before,
  .hero-grid-bg {
    height: 184px;
    top: 84px;
  }

  .hero-copy-centered .hero-badge {
    border-radius: 999px;
    font-size: .6rem;
    justify-content: center;
    max-width: 100%;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
  }

  .hero-copy-centered h1 small {
    font-size: .78rem;
    letter-spacing: .22em;
  }

  .hero-visual-cart img {
    padding: 8px;
  }

  .hero-showcase {
    min-height: 462px;
  }

  .hero-visual-ticket {
    top: 38px;
    width: 84%;
  }

  .hero-visual-cart {
    top: 168px;
    width: 56%;
  }

  .hero-cta-strip {
    bottom: 34px;
  }

  .hero-cta-strip a {
    font-size: clamp(.92rem, 4.6vw, 1.12rem);
    padding: 13px 8px;
  }
}

/* ================================================================
   HERO ACELERA VYLO - COMPOSICAO FINAL INSPIRADA
   ================================================================ */

body {
  background: #F2F3F7;
}

nav {
  background: rgba(255, 255, 255, .76);
  border-color: rgba(91, 24, 194, .08);
  box-shadow: 0 14px 34px rgba(13, 10, 30, .11);
}

nav::before {
  background: linear-gradient(90deg, rgba(255, 230, 0, .3), rgba(13, 205, 200, .24), rgba(107, 33, 214, .18));
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity .25s ease;
  z-index: -1;
}

nav:hover::before {
  opacity: .4;
}

.hero {
  background:
    linear-gradient(155deg, rgba(255, 230, 0, .18) 0%, transparent 24%),
    linear-gradient(25deg, rgba(91, 24, 194, .12) 0%, transparent 34%),
    linear-gradient(135deg, #ECEEF4 0%, #FFFFFF 42%, #EAFBFA 100%);
  min-height: 100svh;
  padding-bottom: 18px;
}

.hero::before {
  background:
    linear-gradient(110deg, rgba(255, 230, 0, .32), rgba(255, 255, 255, .88) 46%, rgba(13, 205, 200, .28)),
    radial-gradient(ellipse at 50% 0%, rgba(107, 33, 214, .13), transparent 60%);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(91, 24, 194, .09);
  height: 252px;
  top: 106px;
  width: min(940px, 76vw);
}

.hero::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .52) 38%, rgba(107, 33, 214, .07) 100%);
  height: 46%;
}

.hero-grid-bg {
  border-radius: 30px;
  height: 252px;
  top: 106px;
  width: min(940px, 76vw);
}

.hero-inner-clean {
  gap: 14px;
  max-width: 1360px;
}

.hero-copy-centered .hero-badge {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(255, 230, 0, .9);
  box-shadow: 0 12px 30px rgba(13, 205, 200, .1);
  color: #243178;
  margin-bottom: 14px;
}

.hero-copy-centered h1 {
  color: #20113F;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  letter-spacing: 0;
  line-height: .92;
  text-shadow: 0 18px 46px rgba(13, 10, 30, .08);
}

.hero-copy-centered h1 small {
  color: rgba(32, 17, 63, .62);
  font-size: clamp(.8rem, 1.25vw, 1.1rem);
  letter-spacing: .2em;
  margin-bottom: 10px;
}

.hero-showcase {
  margin-top: -12px;
  max-width: 1240px;
  min-height: 535px;
}

.hero-showcase::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .72) 42%, transparent 100%);
  content: "";
  height: 1px;
  left: 8%;
  opacity: .8;
  position: absolute;
  right: 8%;
  top: 52%;
  z-index: 1;
}

.hero-visual {
  outline: none;
}

.hero-visual:focus-visible img,
.hero-cta-strip a:focus-visible {
  outline: 3px solid rgba(13, 205, 200, .72);
  outline-offset: 7px;
}

.hero-visual img {
  filter: drop-shadow(0 30px 42px rgba(13, 10, 30, .18));
  transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) scale(1);
}

.hero-visual:hover img {
  filter: drop-shadow(0 34px 48px rgba(13, 10, 30, .22));
  transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) scale(1.035);
}

.hero-visual-ticket {
  bottom: 96px;
  left: 2.5%;
  max-width: 735px;
  width: 55%;
}

.hero-visual-ticket img {
  --hero-shift-x: var(--ticket-x, 0px);
  --hero-shift-y: var(--ticket-y, 0px);
}

.hero-visual-cart {
  max-width: 470px;
  right: 4%;
  top: 8px;
  width: 38%;
}

.hero-visual-cart img {
  /* --hero-shift-x: var(--cart-x, 0px);
  --hero-shift-y: var(--cart-y, 0px); */
  /* background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)); */
  /* border: 1px solid rgba(255, 255, 255, .86); */
  /* box-shadow:
    0 34px 90px rgba(13, 10, 30, .1),
    inset 0 0 0 1px rgba(91, 24, 194, .04); */
  padding: 12px;
}

.hero-cta-strip {
  align-items: end;
  background: transparent;
  border: 0;
  border-radius: 0;
  bottom: 0;
  box-shadow: none;
  column-gap: clamp(26px, 5vw, 82px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1120px;
  overflow: visible;
  width: 91%;
}

.hero-cta-strip span {
  display: none;
}

.hero-cta-strip a {
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(13, 10, 30, .08);
  color: #251443;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  line-height: 1.02;
  padding: 18px 22px 20px;
  position: relative;
  transition: color .22s ease, transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hero-cta-strip a::after {
  background: linear-gradient(90deg, var(--purple-vivid), var(--cyan));
  border-radius: 999px;
  bottom: 8px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(.25);
  transform-origin: center;
  transition: transform .22s ease;
  width: min(180px, 54%);
}

.hero-cta-strip a:hover {
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 22px 60px rgba(91, 24, 194, .13);
  color: var(--purple-vivid);
  transform: translateY(-5px);
}

.hero-cta-strip a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.hero-scroll {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(13, 10, 30, .06);
  color: rgba(32, 17, 63, .68);
  flex-direction: row;
  margin-top: -8px;
  padding: 10px 18px;
}

.hero-scroll:hover {
  background: rgba(255, 255, 255, .82);
}

@media (max-width: 1180px) {
  .hero-showcase {
    min-height: 530px;
  }

  .hero-visual-ticket {
    bottom: 122px;
    width: 57%;
  }

  .hero-visual-cart {
    width: 40%;
  }

  .hero-cta-strip a {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 102px;
  }

  .hero::before,
  .hero-grid-bg {
    height: 210px;
    top: 86px;
    width: calc(100vw - 30px);
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }

  .hero-showcase {
    max-width: 620px;
    min-height: 530px;
  }

  .hero-showcase::before {
    display: none;
  }

  .hero-visual-ticket {
    bottom: auto;
    left: 0;
    top: 34px;
    width: 78%;
  }

  .hero-visual-cart {
    right: 0;
    top: 172px;
    width: 54%;
  }

  .hero-cta-strip {
    bottom: 44px;
    column-gap: 12px;
    width: 100%;
  }

  .hero-cta-strip a {
    border-radius: 14px;
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    padding: 14px 10px 16px;
  }

  .hero-cta-strip a::after {
    bottom: 6px;
    height: 2px;
    width: 58%;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 28px;
  }

  .hero::before,
  .hero-grid-bg {
    height: 184px;
  }

  .hero-copy-centered .hero-badge {
    font-size: .56rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.55rem, 13.8vw, 3.75rem);
  }

  .hero-copy-centered h1 small {
    letter-spacing: .16em;
  }

  .hero-showcase {
    min-height: 444px;
  }

  .hero-visual-ticket {
    top: 28px;
    width: 83%;
  }

  .hero-visual-cart {
    top: 154px;
    width: 57%;
  }

  .hero-visual-cart img {
    padding: 7px;
  }

  .hero-cta-strip {
    bottom: 24px;
    column-gap: 8px;
  }

  .hero-cta-strip a {
    font-size: clamp(.86rem, 4.55vw, 1.02rem);
    padding: 12px 7px 14px;
  }

  .hero-scroll {
    font-size: .7rem;
    margin-top: -4px;
    padding: 8px 14px;
  }
}

/* ================================================================
   HERO ACELERA VYLO - ORGANIZADA E PROFISSIONAL
   ================================================================ */

body {
  background: #F7F8FC;
}

.hero {
  align-items: center;
  background:
    radial-gradient(ellipse at 7% 10%, rgba(255, 230, 0, .26), transparent 36%),
    radial-gradient(ellipse at 92% 15%, rgba(13, 205, 200, .26), transparent 38%),
    radial-gradient(ellipse at 48% 98%, rgba(91, 24, 194, .14), transparent 45%),
    linear-gradient(135deg, #F8F7EF 0%, #FFFFFF 45%, #EEFDFC 100%);
  min-height: 100svh;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 72px) 38px;
}

.hero::before {
  animation: heroGradientSweep 11s ease-in-out infinite alternate;
  background:
    linear-gradient(rgba(91, 24, 194, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 24, 194, .035) 1px, transparent 1px),
    linear-gradient(115deg, rgba(255, 230, 0, .15), rgba(255, 255, 255, .52) 45%, rgba(13, 205, 200, .18));
  background-size: 56px 56px, 56px 56px, 160% 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  content: "";
  height: auto;
  inset: 0;
  left: 0;
  max-width: none;
  opacity: .9;
  position: absolute;
  top: 0;
  transform: none;
  width: auto;
  z-index: 0;
}

.hero::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .46) 56%, rgba(91, 24, 194, .07) 100%);
  bottom: 0;
  content: "";
  height: 44%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

.hero-grid-bg {
  display: none;
}

.hero-inner-clean {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.8vw, 32px);
  max-width: 1180px;
  width: 100%;
}

.hero-copy-centered {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.hero-copy-centered .hero-badge {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(255, 230, 0, .94);
  box-shadow: 0 12px 30px rgba(13, 205, 200, .1);
  color: #243178;
  font-size: .66rem;
  margin-bottom: 14px;
}

.hero-copy-centered h1 {
  color: #1D103D;
  font-size: clamp(3rem, 6.4vw, 6rem);
  letter-spacing: 0;
  line-height: .94;
  margin: 0 auto;
  max-width: 960px;
  text-shadow: 0 18px 48px rgba(13, 10, 30, .08);
}

.hero-copy-centered h1 small {
  color: rgba(29, 16, 61, .62);
  font-size: clamp(.78rem, 1.1vw, 1.05rem);
  letter-spacing: .22em;
  margin-bottom: 10px;
}

.hero-showcase {
  align-items: end;
  display: grid;
  gap: clamp(44px, 8vw, 112px);
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .82fr);
  margin: 0 auto;
  max-width: 1060px;
  min-height: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-showcase::before {
  display: none;
}

.hero-option {
  align-items: center;
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  justify-items: center;
  min-width: 0;
  position: relative;
}

.hero-option-ticket {
  transform: translateY(8px);
}

.hero-option-specialist {
  transform: translateY(-4px);
}

.hero-visual {
  align-items: center;
  animation: none;
  bottom: auto;
  display: flex;
  justify-content: center;
  left: auto;
  max-width: none;
  outline: none;
  position: relative;
  right: auto;
  text-decoration: none;
  top: auto;
  width: 100%;
  z-index: 1;
}

.hero-visual-ticket {
  animation: heroTicketFloatClean 6s ease-in-out infinite alternate;
  max-width: 590px;
}

.hero-visual-cart {
  animation: heroCartFloatClean 6.6s ease-in-out infinite alternate;
  max-width: 355px;
}

.hero-visual img {
  filter: drop-shadow(0 24px 34px rgba(13, 10, 30, .14));
  height: auto;
  object-fit: contain;
  transition: transform .28s ease, filter .28s ease;
  width: 100%;
}

.hero-visual-ticket img {
  transform: translate3d(var(--ticket-x, 0px), var(--ticket-y, 0px), 0) scale(1);
}

.hero-visual-cart img {
  /* background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 22px 70px rgba(13, 10, 30, .08); */
  padding: 12px;
  transform: translate3d(var(--cart-x, 0px), var(--cart-y, 0px), 0) scale(1);
}

.hero-visual-ticket:hover img {
  filter: drop-shadow(0 30px 44px rgba(13, 10, 30, .18));
  transform: translate3d(var(--ticket-x, 0px), var(--ticket-y, 0px), 0) scale(1.025);
}

.hero-visual-cart:hover img {
  filter: drop-shadow(0 30px 44px rgba(13, 10, 30, .18));
  transform: translate3d(var(--cart-x, 0px), var(--cart-y, 0px), 0) scale(1.025);
}

.hero-option-cta {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(13, 10, 30, .08);
  color: #1D103D;
  display: inline-flex;
  font-size: clamp(1.06rem, 1.5vw, 1.32rem);
  font-weight: 900;
  justify-content: center;
  line-height: 1.12;
  max-width: 420px;
  min-height: 58px;
  padding: 15px 28px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background .22s ease, box-shadow .22s ease, color .22s ease, transform .22s ease;
  width: min(100%, 420px);
}

.hero-option-specialist .hero-option-cta {
  max-width: 360px;
  width: min(100%, 360px);
}

.hero-option-cta::after {
  background: linear-gradient(90deg, var(--purple-vivid), var(--cyan));
  border-radius: 999px;
  bottom: 9px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(.35);
  transform-origin: center;
  transition: transform .22s ease;
  width: 120px;
}

.hero-option-cta:hover {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 52px rgba(91, 24, 194, .14);
  color: var(--purple-vivid);
  transform: translateY(-4px);
}

.hero-option-cta:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.hero-cta-strip {
  display: none;
}

.hero-scroll {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(13, 10, 30, .06);
  color: rgba(29, 16, 61, .68);
  display: inline-flex;
  flex-direction: row;
  font-size: .72rem;
  gap: 10px;
  margin-top: clamp(10px, 1.4vw, 20px);
  padding: 9px 16px;
  position: relative;
  z-index: 2;
}

.hero-scroll span {
  animation: arrowSoftBounce 1.8s ease-in-out infinite;
  background: transparent;
  color: var(--purple-vivid);
  height: auto;
  width: auto;
}

@keyframes heroTicketFloatClean {
  0% { transform: translate3d(0, 5px, 0) rotate(-.45deg); }
  100% { transform: translate3d(0, -7px, 0) rotate(.35deg); }
}

@keyframes heroCartFloatClean {
  0% { transform: translate3d(0, -5px, 0) rotate(.35deg); }
  100% { transform: translate3d(0, 7px, 0) rotate(-.3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-visual-ticket,
  .hero-visual-cart,
  .hero-scroll span {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 104px;
  }

  .hero-showcase {
    gap: clamp(34px, 6vw, 72px);
    grid-template-columns: minmax(0, 1fr) minmax(220px, .74fr);
    max-width: 900px;
  }

  .hero-visual-ticket {
    max-width: 500px;
  }

  .hero-visual-cart {
    max-width: 300px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 96px 16px 42px;
  }

  .hero-copy-centered .hero-badge {
    font-size: .58rem;
    justify-content: center;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .hero-copy-centered h1 small {
    letter-spacing: .16em;
  }

  .hero-showcase {
    gap: 24px;
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero-option {
    gap: 14px;
    transform: none;
  }

  .hero-visual-ticket {
    max-width: 440px;
    width: min(100%, 440px);
  }

  .hero-visual-cart {
    max-width: 200px;
    width: min(56vw, 200px);
  }

  .hero-option-cta,
  .hero-option-specialist .hero-option-cta {
    font-size: clamp(.98rem, 4.5vw, 1.18rem);
    max-width: 360px;
    min-height: 52px;
    padding: 13px 20px;
    width: min(100%, 360px);
  }
}

@media (max-width: 380px) {
  .hero-showcase {
    gap: 22px;
  }

  .hero-copy-centered h1 {
    font-size: 2.32rem;
  }

  .hero-option-cta,
  .hero-option-specialist .hero-option-cta {
    font-size: .95rem;
  }

  .hero-visual-cart {
    max-width: 178px;
    width: min(54vw, 178px);
  }
}
