/* =============================================================
   CEO em Vendas — page-specific styles
   Shared classes (.btn-primary, .card, .label-tag, .icon-box,
   .check-icon, .form-field, .field-label, .stat-num, .big-quote)
   live in smartsale-main.css
   ============================================================= */

body.cev-body {
  min-height: 100vh;
  background: #171C22;
}

.cev-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* ── Nav ──────────────────────────────────────── */
.cev-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(23, 28, 34, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Hero cinematic ──────────────────────────────────── */
.cev-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}
.cev-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}
.cev-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23,28,34,.88) 0%,
    rgba(23,28,34,.94) 55%,
    rgba(23,28,34,.98) 100%
  );
}
.cev-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cev-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e8c9a8;
  border: 1px solid rgba(160,111,71,.4);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(160,111,71,.1);
}

/* ── Wordmark "CEO em Vendas" no topo do hero ── */
.cev-hero__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 22px;
}
.cev-hero__wordmark-main {
  font-family: 'Playfair Display SC', 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(5rem, 5vw, 2rem);
  line-height: .9;
  color: #fff;
}
.cev-hero__wordmark-sub {
  font-family: 'Playfair Display SC', 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(.85rem, 1.6vw, 1.1rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  padding-left: .35em; /* compensa o letter-spacing no fim do texto */
}
.cev-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cev-hero__stats { grid-template-columns: repeat(4, 1fr); }
}
.cev-hero__stats > div {
  border: 1px solid rgba(160,111,71,.18);
  border-radius: 10px;
  padding: 18px 12px;
  background: rgba(255,255,255,.02);
  text-align: center;
}
.cev-hero__stats p {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}

/* ── Timeline strip ──────────────────────────────────── */
.cev-timeline {
  background: #1a1f27;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ── Editorial photo (pain / modules sections) ──────────────────────────────────── */
.cev-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.cev-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Story section — photo band ──────────────────────────────────── */
.cev-story {
  position: relative;
  overflow: hidden;
}
.cev-story__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cev-story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,28,34,.93);
}
.cev-story__content {
  position: relative;
  z-index: 2;
}

/* ── Mentor photo ──────────────────────────────────── */
.cev-mentor-photo {
  width: 180px;
  height: 180px;
  border-radius: 9999px;
  overflow: hidden;
  border: 3px solid rgba(160,111,71,.4);
}
.cev-mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Testimonial avatars ──────────────────────────────────── */
.cev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(160,111,71,.3);
}

/* ── CTA final — photo band ──────────────────────────────────── */
.cev-cta {
  position: relative;
  overflow: hidden;
}
.cev-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cev-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,28,34,.90);
}
.cev-cta__content {
  position: relative;
  z-index: 2;
}

/* ── Module accordion ──────────────────────────────────── */
.cev-module {
  border: 1px solid rgba(160,111,71,.14);
  border-radius: 8px;
  overflow: hidden;
}
.cev-module__header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.cev-module__toggle {
  font-size: 20px;
  color: #A06F47;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.cev-module.open .cev-module__toggle { transform: rotate(45deg); }

.cev-module__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}
.cev-module.open .cev-module__body {
  max-height: 500px;
  padding: 0 22px 22px;
}

.cev-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cev-topics li {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(160,111,71,.1);
  color: #e8c9a8;
}

/* ── Pricing lot cards ──────────────────────────────────── */
.cev-lot {
  border: 1px solid rgba(160,111,71,.14);
  border-radius: 12px;
  padding: 28px;
  background: #1c2229;
}
.cev-lot--active {
  border-color: rgba(160,111,71,.5);
  background: linear-gradient(135deg, rgba(160,111,71,.1), #1c2229);
  transform: scale(1.02);
}

/* ── FAQ accordion ──────────────────────────────────── */
.cev-faq {
  border: 1px solid rgba(160,111,71,.14);
  border-radius: 8px;
  overflow: hidden;
}
.cev-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.cev-faq__icon {
  font-size: 18px;
  color: #A06F47;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.cev-faq.open .cev-faq__icon { transform: rotate(45deg); }

.cev-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}
.cev-faq.open .cev-faq__a {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* ── Pop-up de pré-inscrição (Turma 2) ── */
.cev-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cev-modal.hidden { display: none; }

.cev-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cev-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  background: rgba(23, 28, 34, .96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  animation: cevModalIn .25s ease;
}

.cev-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.cev-modal__close:hover {
  background: rgba(160,111,71,.2);
  color: #fff;
}

@keyframes cevModalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

body.cev-modal-open { overflow: hidden; }
