/* ── Background — réplica das ellipses do V1 (1px = 1/1920 × 100vw) ── */
.bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.bg-glow > div { position: absolute; border-radius: 50%; }

.bg-e6 {
  width: 167vw; height: 77vw;
  top: 2.8vw;  left: -102vw;
  transform: rotate(6.2deg);
  background: radial-gradient(50% 50% at 50% 50%, rgba(116,0,0,.36) 0%, transparent 100%);
}
.bg-e2 {
  width: 205vw; height: 73vw;
  top: 14.2vw; left: -109vw;
  transform: rotate(-23.2deg);
  background: radial-gradient(50% 50% at 50% 50%, rgba(242,14,9,.34) 0%, transparent 100%);
}
.bg-e {
  width: 167vw; height: 73vw;
  top: 21.7vw; left: 22.7vw;
  transform: rotate(6.2deg);
  background: radial-gradient(50% 50% at 50% 50%, rgba(242,14,9,.34) 0%, transparent 100%);
}
.bg-e4 {
  width: 167vw; height: 77vw;
  top: 2.8vw;  left: 27.9vw;
  transform: rotate(6.2deg);
  background: radial-gradient(50% 50% at 50% 50%, #fd7222 0%, transparent 100%);
}

/* ─── Nav — largura extra pra caber o widget de usuário ──────── */
.dash-nav { grid-template-columns: 235px minmax(0, 1fr) auto; }

.dash-user {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.dash-notification {
  position: relative;
  display: flex;
  width: 23px;
  flex-shrink: 0;
}
.dash-notification img { width: 100%; height: 27px; }
.dash-notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fc5a5a;
}

.dash-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.dash-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
}
.dash-user-name {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  color: #fafafb;
}
.dash-user-role {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #696974;
}

.dash-dropdown { width: 12px; height: 7.5px; flex-shrink: 0; }

.dash-user-menu { position: relative; }
.dash-dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 8px;
}

.dash-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  z-index: 10;
}
.dash-user-menu.open .dash-user-dropdown { display: block; }

.dash-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-poppins);
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
}
.dash-dropdown-item:hover { background: rgba(255,255,255,0.08); }

/* ── Nav active override ─────────────────────────────────────────── */
.nav-active      { color: var(--white)       !important; }
.text-wrapper-20 { color: var(--white-muted) !important; }

/* ── Hero ────────────────────────────────────────────────────────── */
.exp-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.exp-deco-left {
  position: absolute;
  left: 0;
  top: 220px;
  width: clamp(120px, 15vw, 300px);
  pointer-events: none;
  user-select: none;
}
.exp-deco-right {
  position: absolute;
  right: 0;
  top: 220px;
  width: clamp(120px, 15vw, 300px);
  pointer-events: none;
  user-select: none;
}

.exp-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-hero-logo {
  width: clamp(240px, 33vw, 540px);
  aspect-ratio: 613 / 336; /* corta a margem transparente do PNG (639×639, conteúdo real 613×336) */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.exp-intro {
  text-align: center;
  max-width: 900px;
  margin-bottom: 36px;
}
.exp-intro-lead {
  font-family: var(--font-poppins);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  letter-spacing: -0.36px;
  margin-bottom: 10px;
}
.exp-intro-body {
  font-family: var(--font-poppins);
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  letter-spacing: -0.36px;
}

.exp-hero-banner {
  position: relative;
  width: 100%;
  max-width: 1195px;
}
.exp-hero-banner > img {
  width: 100%;
  height: auto;
  border-radius: 41px;
  object-fit: cover;
  display: block;
}

.exp-feature-badge,
.exp-feature-2 {
  position: absolute;
  width: 118px;
  height: 118px;
  background: rgba(148,148,148,0.09);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-feature-badge { left: -54px;  bottom: 144px; }
.exp-feature-2      { right: -54px; bottom: 347px; }

.exp-feature-badge img,
.exp-feature-2 img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

/* ── Cards section ───────────────────────────────────────────────── */
.exp-cards-section { padding-top: 48px; }

.exp-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Card — 3 colunas: img | texto principal | tag local + detalhes ── */
.exp-card {
  display: grid;
  grid-template-columns: 33% 1fr 27%;
  grid-template-areas: "img main vip";
  min-height: 425px;
  background: rgba(148,148,148,0.09);
  border-radius: 20px;
}

/* Cards pares: img passa para a direita — inverter colunas também */
.exp-card:nth-child(even) {
  grid-template-columns: 1fr 27% 33%;
  grid-template-areas: "main vip img";
}

/* ── Col 1: Imagem ───────────────────────────────────────────────── */
.exp-card-img {
  grid-area: img;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: 4px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  min-height: 415px;
}

/* ── Col 2: Texto principal ──────────────────────────────────────── */
.exp-card-main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
}

.exp-card-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.exp-card-title {
  font-family: var(--font-poppins);
  font-size: clamp(26px, 2.6vw, 50px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.3;
  text-transform: capitalize;
}

.exp-card-points {
  font-family: var(--font-poppins);
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 600;
  color: #f20e09;
  letter-spacing: -0.48px;
  white-space: nowrap;
  text-transform: capitalize;
  flex-shrink: 0;
}

.exp-card-desc {
  font-family: var(--font-poppins);
  font-size: clamp(13px, 0.94vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  letter-spacing: -0.36px;
}

/* ── Col 3: Tag local + VIP details ─────────────────────────────── */
.exp-card-vip {
  grid-area: vip;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 28px;
  gap: 18px;
}

/* Tag de localização — pill com gradiente */
.exp-card-local {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  height: 67px;
  padding-inline: 20px;
  white-space: nowrap;
  background: linear-gradient(180deg, #fd7222 0%, #c30400 100%);
  border-radius: 18px;
  font-family: var(--font-poppins);
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.48px;
  text-transform: capitalize;
  flex-shrink: 0;
  align-self: flex-start;
}

/* Detalhes VIP abaixo da tag */
.exp-card-details {
  font-family: var(--font-poppins);
  font-size: clamp(12px, 0.83vw, 16px);
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.36px;
}
.exp-card-details p {
  margin: 0;
  line-height: 2.2;
}
.exp-card-details strong {
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { margin-top: 80px; }

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .exp-deco-left,
  .exp-deco-right  { display: none; }
  .exp-feature-badge { display: none; }
  .exp-hero-logo { width: clamp(200px, 55vw, 320px); }
  .exp-hero-banner > img { border-radius: 20px; }
  .exp-intro br { display: none; }

  .exp-card,
  .exp-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "main"
      "vip";
    min-height: auto;
  }

  .exp-card-img {
    width: calc(100% - 8px);
    height: 220px;
    min-height: unset;
    margin: 4px 4px 0;
  }

  .exp-card-main { padding: 20px 20px 12px; }

  .exp-card-vip {
    padding: 12px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .exp-card-local { width: 100%; }
}

/* Alinhado ao breakpoint de nav mobile do global.css (768px) */
@media (max-width: 768px) {
  .dash-nav { grid-template-columns: auto 1fr; }
  .dash-user { display: none; }
}
