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

:root {
  --blue:       #2563EB;
  --blue-dark:  #1D4ED8;
  --blue-light: #EFF6FF;
  --orange:     #F97316;
  --orange-dark:#EA6C0A;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-500:   #64748B;
  --gray-700:   #334155;
  --gray-900:   #0F172A;
  --white:      #FFFFFF;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn--primary  { background: var(--blue);   color: var(--white); }
.btn--primary:hover { background: var(--blue-dark); }
.btn--orange   { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--ghost    { background: transparent; color: var(--gray-700); }
.btn--ghost:hover { background: var(--gray-100); }
.btn--outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.1); }
.btn--lg       { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.hero__btn-main {
  font-size: 15px;
  letter-spacing: .4px;
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn--sm       { padding: 8px 16px; font-size: 13px; }
.btn--block    { width: 100%; display: flex; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: -.3px;
  color: var(--blue);
  justify-self: start; /* não estica para preencher 1fr */
}
.logo__icon { font-size: 20px; }
.logo__text strong { font-weight: 800; }
.logo__com { color: var(--gray-500); font-size: 13px; }

/* Logo com imagem */
.logo--img { line-height: 0; justify-self: start; }
.logo__img {
  max-height: 52px;
  height: auto;
  width: auto;
  max-width: 280px;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .2s;
}
.nav a:hover { color: var(--blue); }

/* Nav dropdown */
.nav__dropdown { position: relative; }
.nav__trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.nav__trigger:hover { color: var(--blue); }
.nav__arrow { font-size: 10px; transition: transform .2s; }
.nav__dropdown:hover .nav__arrow { transform: rotate(180deg); }
.nav__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 300px;
  padding: 12px 0 8px;
  z-index: 200;
  /* Bridge invisible para não perder hover ao mover o cursor */
  margin-top: 0;
}
/* Pseudo-elemento cobre o gap visual entre trigger e menu */
.nav__menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown:hover .nav__menu { display: flex; flex-direction: column; }
.nav__menu a {
  padding: 10px 18px;
  font-size: 13px;
  color: var(--gray-700);
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__menu a:hover { background: var(--blue-light); color: var(--blue); }

.header__actions { display: flex; gap: 10px; align-items: center; }

/* ============================================================
   HERO
   ============================================================ */
:root {
  --header-h: 88px;
}

.hero {
  background:
    linear-gradient(to right, rgba(10,20,60,.82) 45%, rgba(10,20,60,.55) 100%),
    url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1400&q=80') center/cover no-repeat;
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: stretch; /* hero__inner preenche altura total */
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  min-height: 540px;
}
.hero__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  /* sem position relative — hero é o contexto do phone absoluto */
}
.hero__content { flex: 1; max-width: 580px; }
.hero__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — coluna direita no flex, phone ancorado ao bottom via abs */
.hero__visual {
  flex: 0 0 300px;   /* reserva a coluna direita no flex flow */
  position: static;  /* phone será absoluto relativo ao hero__inner */
}

/* Phone ocupa do topo do conteúdo até além da base do hero */
.hero__phone-anchor {
  position: absolute;
  right: calc(max(0px, (100% - 1160px) / 2) + 24px);
  top: 60px;      /* alinhado ao topo do conteúdo (igual ao padding do hero) */
  bottom: -80px;  /* 80px abaixo do hero = corte na base */
  transform: none;
}

/* ============================================================
   HERO PHONE MOCKUP
   ============================================================ */
.hero__phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(37,99,235,.38) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Float wrapper — keeps float animation separate from enter */
.phone-float-wrap {
  margin-top: 20px;
  animation: phone-float 4s ease-in-out 0.9s infinite;
  position: relative;
  z-index: 2;
}
.phone-float-wrap:hover { animation-play-state: paused; }

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

/* Mockup — entrance animation */
.phone-mockup {
  animation: phone-enter .9s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes phone-enter {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Phone chrome */
.phone-frame {
  width: 300px;
  background: #18181b;
  border-radius: 44px;
  padding: 12px 8px 20px;
  border: 1.5px solid #3f3f46;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.07),
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(0,0,0,.25);
    height: 800px;
}
.phone-island {
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #fff;
  border-radius: 32px;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.phone-home-bar {
  width: 110px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  margin: 10px auto 0;
}

/* ── App bar ───────────────────────────────────────────── */
.pf-appbar {
  background: var(--blue);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  box-sizing: border-box;
}
.pf-appbar__left { display: flex; align-items: center; gap: 6px; }
.pf-appbar__icon { font-size: 13px; }
.pf-appbar__title { font-size: 11px; font-weight: 700; color: #fff; }
.pf-appbar__step {
  font-size: 10px;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── Panels (absolute, stacked) ────────────────────────── */
.pf-panel {
  position: absolute;
  top: 44px; left: 0; right: 0; bottom: 0;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.phone-s1 .pf-panel--form,
.phone-s2 .pf-panel--form,
.phone-s3 .pf-panel--form { opacity: 1; pointer-events: auto; }
.phone-s4 .pf-panel--loading { opacity: 1; pointer-events: auto; }
.phone-s5 .pf-panel--success { opacity: 1; pointer-events: auto; }

/* ── Form panel ────────────────────────────────────────── */
.pf-bar {
  height: 4px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.pf-bar__fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  width: 0%;
  transition: width .6s ease;
}
.phone-s1 .pf-bar__fill { width: 33%; }
.phone-s2 .pf-bar__fill { width: 66%; }
.phone-s3 .pf-bar__fill { width: 100%; }

.pf-title {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pf-steps { display: flex; flex-direction: column; gap: 8px; }
.pf-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .4s ease, transform .4s ease;
}
.phone-s1 .pf-step--1,
.phone-s2 .pf-step--1,
.phone-s3 .pf-step--1 { opacity: 1; transform: none; }
.phone-s2 .pf-step--2,
.phone-s3 .pf-step--2 { opacity: 1; transform: none; transition-delay: .12s; }
.phone-s3 .pf-step--3 { opacity: 1; transform: none; transition-delay: .24s; }

.pf-step__icon { font-size: 16px; flex-shrink: 0; }
.pf-step__body { flex: 1; display: flex; flex-direction: column; }
.pf-step__label { font-size: 9px; color: #94A3B8; text-transform: uppercase; letter-spacing: .4px; }
.pf-step__val   { font-size: 12px; font-weight: 600; color: #0F172A; }
.pf-step__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* blinking cursor shown in s1 */
.pf-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 14px;
  opacity: 0;
  animation: cur-blink .8s step-end infinite;
  transition: opacity .3s;
}
.phone-s1 .pf-cursor { opacity: 1; }
@keyframes cur-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Loading panel ─────────────────────────────────────── */
.pf-panel--loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 14px;
  text-align: center;
  margin-top: 30px;
}
.pf-panel__heading { font-size: 13px; font-weight: 600; color: #0F172A; }
.pf-panel__sub     { font-size: 11px; color: #94A3B8; }

.pf-dots { display: flex; gap: 8px; }
.pf-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  animation: dot-pulse 1.2s ease-in-out infinite;
}
.pf-dots span:nth-child(2) { animation-delay: .2s; }
.pf-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot-pulse {
  0%,60%,100% { transform: translateY(0); opacity: .4; }
  30%          { transform: translateY(-8px); opacity: 1; }
}

.pf-shimmer-wrap {
  width: 80%;
  height: 4px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}
.pf-shimmer {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #7C3AED, var(--blue));
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer { 0%{background-position:100%} 100%{background-position:-100%} }

/* ── Success panel ─────────────────────────────────────── */
.pf-panel--success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  text-align: center;
}
.pf-ok {
  position: relative;
  width: 64px; height: 64px;
  margin-bottom: 4px;
}
.pf-ok__icon {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #10B981;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  transform: scale(0);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1) .2s;
  box-shadow: 0 6px 20px rgba(16,185,129,.4);
}
.phone-s5 .pf-ok__icon { transform: scale(1); }

.pf-ok__title { font-size: 18px; font-weight: 800; color: #0F172A; }
.pf-ok__price {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.pf-ok__price small { font-size: 13px; font-weight: 500; color: #64748B; }

.pf-ok__policy {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  color: #166534;
  width: 100%;
  justify-content: center;
}
.pf-ok__badge {
  background: #10B981;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.pf-ok__btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background .2s, transform .1s;
}
.pf-ok__btn:hover { background: var(--blue-dark); transform: scale(1.02); }
.iphone-mockup {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.45));
}
.iphone-frame {
  width: 210px;
  background: #1C1C1E;
  border-radius: 38px;
  padding: 14px 10px 18px;
  border: 2px solid #3A3A3C;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.iphone-notch {
  width: 80px;
  height: 22px;
  background: #1C1C1E;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}
.iphone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}
.iphone-app-bar {
  background: var(--blue);
  padding: 12px 14px;
  display: flex;
  align-items: center;
}
.iphone-app-bar__logo {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.iphone-success {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.iphone-success__circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(16,185,129,.35);
}
.iphone-success__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.iphone-success__sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.iphone-policy {
  width: 100%;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  border: 1px solid var(--gray-200);
}
.iphone-policy__row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-500);
}
.iphone-policy__row span:last-child { font-weight: 600; color: var(--gray-900); }
.iphone-policy__active {
  color: #10B981 !important;
  background: #D1FAE5;
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 10px !important;
}
.iphone-cta {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
}
.iphone-home {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
  margin: 10px auto 0;
}

.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  margin-top: 14px;
  position: relative;
  z-index: 2;
}
.chat-bubble__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-bubble__text { font-size: 13px; color: var(--gray-700); }

.eve-bot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  justify-content: flex-end;
}
.eve-bot__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(37,99,235,.4);
}
.eve-bot__status { font-size: 12px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 5px; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--green { background: #10B981; box-shadow: 0 0 6px #10B981; }

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

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 48px;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps__track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}
.steps__track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 3px;
  background: linear-gradient(to right, var(--blue) 66%, var(--gray-200) 66%);
  z-index: 0;
}
.step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(37,99,235,.15);
  color: var(--blue);
}
.step__icon--check {
  background: var(--blue);
  color: var(--white);
  font-size: 32px;
}
.step__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.step__desc { font-size: 14px; color: var(--gray-500); }

/* ============================================================
   FEATURES
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-card__icon { 
  font-size: 46px;
  margin-bottom: 14px;
  color: #2d81c5;
}
.feature-card__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card__desc { font-size: 14px; color: var(--gray-500); }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calculator__box {
  max-width: 540px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue) 0%, #1E40AF 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
  box-shadow: 0 8px 40px rgba(37,99,235,.3);
}
.calculator__title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
}
.calculator__form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  color: var(--gray-700);
  background: rgba(255,255,255,.95);
  outline: none;
  font-family: inherit;
  transition: box-shadow .2s;
}
.form-control:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.4); }
.form-control--select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.calculator__from {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.calculator__from strong { color: var(--white); font-size: 16px; }

/* ============================================================
   EVENT TYPES
   ============================================================ */
.event-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform .2s;
}
.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 40%, transparent 100%);
}
.event-card:hover { transform: scale(1.02); }
.event-card__label {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  z-index: 1;
  text-align: center;
}
.event-card__subtitle {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  z-index: 1;
}

/* ============================================================
   DEPOIMENTOS CAROUSEL
   ============================================================ */
.depos-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1E3A5F 100%);
}
.depos-section__eyebrow {
  color: rgba(255,255,255,.45);
}
.depos-section__heading {
  color: var(--white);
  margin-bottom: 0;
}

/* carousel wrapper */
.depos-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 24px;
}

/* track — CSS grid stacks all slides on top of each other */
.depos-track {
  display: grid;
  flex: 1;
}
.depos-slide {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.depos-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* card */
.depos-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 760px;
  width: 100%;
}
.depos-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.depos-card__stars {
  color: #F59E0B;
  font-size: 20px;
  letter-spacing: 3px;
}
.depos-card__quote {
  font-size: 88px;
  line-height: 1;
  color: rgba(255,255,255,.12);
  font-family: Georgia, serif;
  margin-top: -20px;
  user-select: none;
}
.depos-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  font-style: italic;
  margin-bottom: 28px;
}
.depos-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depos-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.depos-card__avatar--1 { background: var(--blue); }
.depos-card__avatar--2 { background: #7C3AED; }
.depos-card__avatar--3 { background: var(--orange); }
.depos-card__avatar--4 { background: #059669; }
.depos-card__avatar--5 { background: #DC2626; }
.depos-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.depos-card__role {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.48);
  margin-top: 2px;
}

/* nav arrows */
.depos-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.depos-btn:hover {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

/* dots */
.depos-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
}
.depos-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.depos-dot.active {
  background: var(--orange);
  transform: scale(1.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 56px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer__logo strong { color: var(--white); }
.footer__sub { font-size: 13px; margin-bottom: 12px; }
.footer__legal { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__col a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner { flex-direction: column; gap: 40px; }
  .hero__visual { display: none; } /* phone oculto em tablet/mobile */
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .event-types__grid { grid-template-columns: repeat(2, 1fr); }
  .depos-btn { display: none; }
  .depos-card { padding: 28px 24px; }
  .depos-card__quote { font-size: 64px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .steps__track::before { display: none; }
}

/* ── Hamburger button ────────────────────────────────────── */
.nav-toggle {
  display: none; /* oculto no desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Header mobile: hamburger abaixo de 768px ── */
@media (max-width: 768px) {
  /* Botão Cotar: oculto no header mobile */
  .nav-cta-btn { display: none !important; }

  /* Logo: limitar largura no mobile */
  .logo__img { max-width: 180px; max-height: none; }

  /* Hamburguer: visível */
  .nav-toggle { display: flex; }

  /* Nav: painel deslizante fixo abaixo do header */
  .nav {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 6px 0 18px;
    z-index: 98;
    box-shadow: none;           /* sem shadow quando fechado — evita faixa visível */
    visibility: hidden;         /* esconde completamente, incluindo sombras */
    transform: translateY(-110%);
    transition: transform .3s ease, visibility 0s linear .3s;
    pointer-events: none;
  }
  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    transition: transform .3s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }

  /* Links do nav mobile */
  .nav a,
  .nav__trigger {
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .nav a:hover, .nav__trigger:hover { color: var(--blue); background: none; }

  /* Dropdown mobile: recolhido por padrão, expande ao clicar */
  .nav__dropdown { position: static; }
  .nav__menu {
    display: none;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--gray-100);
    border-radius: 0;
    padding: 4px 0;
    min-width: unset;
    background: var(--gray-50);
    margin-top: 0;
  }
  .nav__dropdown.is-open .nav__menu { display: flex; }
  .nav__menu::before { display: none; }
  .nav__menu a {
    padding: 11px 24px 11px 40px;
    font-size: 13px;
    color: var(--gray-500);
    border-bottom: none;
  }
  /* Seta indica estado aberto */
  .nav__arrow { display: inline-block; transition: transform .25s; }
  .nav__dropdown.is-open .nav__arrow { transform: rotate(180deg); }
}

/* ── Layout mobile: abaixo de 600px ── */
@media (max-width: 600px) {
  /* Hero: centralizar em mobile */
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center; }

  .features__grid { grid-template-columns: 1fr; }
  .event-types__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .steps__track { flex-direction: column; align-items: center; gap: 32px; }
}

/* Dark theme: hamburger + nav mobile */
body.theme-dark .nav-toggle span { background: #94A3B8; }
body.theme-dark .nav {
  background: #0F2236;
  border-bottom-color: rgba(255,255,255,.08);
}
body.theme-dark .nav a,
body.theme-dark .nav__trigger { border-bottom-color: rgba(255,255,255,.06); }
body.theme-dark .nav__menu { background: #091525; }
body.theme-dark .nav__menu a { color: #64748B; }

/* ============================================================
   DARK THEME  (body.theme-dark)
   Paleta: navy/slate-blue — não preto puro
   --dk-page   : #0D1B2A   fundo principal
   --dk-surface: #1A2B3C   cards e painéis
   --dk-raised : #0F2236   header / sections alternadas
   --dk-border : rgba(255,255,255,.09)
   --dk-text   : #CBD5E1   corpo
   --dk-heading: #F1F5F9   títulos
   --dk-muted  : #94A3B8   texto secundário
   --dk-accent : #60A5FA   azul claro (hover/eyebrow)
   ============================================================ */
body.theme-dark {
  background: #0D1B2A;
  color: #CBD5E1;
}

/* ── Header ──────────────────────────────────────────────── */
body.theme-dark .header {
  background: #0F2236;
  border-bottom-color: rgba(255,255,255,.08);
}
body.theme-dark .logo__com { color: #64748B; }

body.theme-dark .nav a,
body.theme-dark .nav__trigger { color: #94A3B8; }
body.theme-dark .nav a:hover,
body.theme-dark .nav__trigger:hover { color: #60A5FA; }

body.theme-dark .nav__menu {
  background: #1A2B3C;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
body.theme-dark .nav__menu a { color: #94A3B8; }
body.theme-dark .nav__menu a:hover {
  background: rgba(96,165,250,.1);
  color: #60A5FA;
}

/* ── Buttons ─────────────────────────────────────────────── */
body.theme-dark .btn--ghost { color: #94A3B8; }
body.theme-dark .btn--ghost:hover { background: rgba(255,255,255,.07); }

/* ── Sections comuns ─────────────────────────────────────── */
body.theme-dark .section--gray { background: #0F2236; }

body.theme-dark .section__title { color: #F1F5F9; }
body.theme-dark .section__eyebrow { color: #60A5FA; }

/* ── Steps ───────────────────────────────────────────────── */
body.theme-dark .steps__track::before {
  background: linear-gradient(to right, #2563EB 66%, rgba(255,255,255,.12) 66%);
}
body.theme-dark .step__icon {
  background: #1A2B3C;
  border-color: #2563EB;
  box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
body.theme-dark .step__name { color: #F1F5F9; }
body.theme-dark .step__desc { color: #94A3B8; }

/* ── Feature cards ───────────────────────────────────────── */
body.theme-dark .feature-card {
  background: #1A2B3C;
  border-color: rgba(255,255,255,.08);
}
body.theme-dark .feature-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
body.theme-dark .feature-card__title { color: #F1F5F9; }
body.theme-dark .feature-card__desc  { color: #94A3B8; }

/* ── Chat bubble (hero) ──────────────────────────────────── */
body.theme-dark .chat-bubble {
  background: #1A2B3C;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
body.theme-dark .chat-bubble__text { color: #CBD5E1; }

/* ── Depoimentos — já é escuro; apenas ajuste sutil ──────── */
body.theme-dark .depos-section {
  background: linear-gradient(135deg, #091525 0%, #0F2236 100%);
}

/* ── Parceiros section ───────────────────────────────────── */
body.theme-dark .parceiros-section {
  background: #0F2236;
}
body.theme-dark .parceiros-section .section__title { color: #F1F5F9; }

/* ── Footer — escurece ainda mais no dark mode ───────────── */
body.theme-dark .footer { background: #060E18; }

/* ── Footer — linha de créditos ─────────────────────────── */
body.theme-dark .footer-bottom {
  border-top-color: rgba(255,255,255,.06);
}

/* ── Iphone policy rows (dentro da tela branca) — mantém escuro ── */
/* (nenhuma alteração necessária — fundo é branco fixo) */

/* ── Event cards — overlay já escuro; labels já brancos ─── */
/* (nenhuma alteração necessária) */

/* ============================================================
   DARK THEME — PÁGINAS INTERNAS (is-inner-page)
   Header e footer mantêm dark; área de conteúdo volta ao branco
   ============================================================ */
body.theme-dark.is-inner-page {
  background: #ffffff;
  color: #334155;
}

/* Seções */
body.theme-dark.is-inner-page .section--gray { background: #F8FAFC; }
body.theme-dark.is-inner-page .section__title  { color: #0F172A; }
body.theme-dark.is-inner-page .section__eyebrow { color: #2563EB; }

/* Feature cards */
body.theme-dark.is-inner-page .feature-card {
  background: #ffffff;
  border-color: #E2E8F0;
}
body.theme-dark.is-inner-page .feature-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
body.theme-dark.is-inner-page .feature-card__title { color: #0F172A; }
body.theme-dark.is-inner-page .feature-card__desc  { color: #64748B; }

/* Steps */
body.theme-dark.is-inner-page .steps__track::before {
  background: linear-gradient(to right, #2563EB 66%, #E2E8F0 66%);
}
body.theme-dark.is-inner-page .step__icon {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(37,99,235,.15);
}
body.theme-dark.is-inner-page .step__name { color: #0F172A; }
body.theme-dark.is-inner-page .step__desc { color: #64748B; }

/* Chat bubble */
body.theme-dark.is-inner-page .chat-bubble {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
body.theme-dark.is-inner-page .chat-bubble__text { color: #334155; }

/* Parceiros / seções alternadas em páginas internas */
body.theme-dark.is-inner-page .parceiros-section { background: #F8FAFC; }
body.theme-dark.is-inner-page .parceiros-section .section__title { color: #0F172A; }

/* Depoimentos — mantém dark (seção já tem fundo próprio) */
/* (nenhuma alteração necessária) */

/* Botão ghost restaurado */
body.theme-dark.is-inner-page .btn--ghost { color: #334155; }
body.theme-dark.is-inner-page .btn--ghost:hover { background: #F1F5F9; }

/* Nav dropdown restaurado */
body.theme-dark.is-inner-page .nav__menu {
  background: #ffffff;
  border-color: #E2E8F0;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
body.theme-dark.is-inner-page .nav__menu a { color: #334155; }
body.theme-dark.is-inner-page .nav__menu a:hover {
  background: #EFF6FF;
  color: #2563EB;
}
