:root {
  --brown-deep: #21150f;
  --brown: #5a2b22;
  --brown-mid: #7a4033;
  --gold: #c49a4a;
  --maroon: #7a1f24;
  --red: #8b252b;
  --cream: #f5f0e8;
  --cream-soft: #fbf9f4;
  --white: #ffffff;
  --ink: #251b16;
  --line: rgba(37, 27, 22, 0.14);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 0;
}

/* =========================
RESET
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--maroon);
}

.ornament {
  display: none;
}

/* =========================
BOTÕES
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.72rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
}

.btn-primary:hover {
  background: #64191e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}

.btn-outline:hover {
  background: var(--brown-deep);
  color: #fff;
}

/* =========================
BARRA SUPERIOR
========================= */

.utility-bar {
  position: relative;
  z-index: 80;
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.9);
}

.utility-inner {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.utility-inner button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  opacity: 0.82;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.utility-inner button:hover {
  opacity: 1;
}

/* =========================
CABEÇALHO
========================= */

header {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 70;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent);
  border: 0;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(33, 21, 15, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: #fff;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.brand-text {
  text-align: left;
  line-height: 1.1;
}

.brand-text .inst {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.brand-text .name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links button {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 8px 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.nav-links button:hover {
  color: #fff;
}

header .btn-primary {
  background: #fff;
  color: var(--maroon);
  padding: 13px 20px;
}

header .btn-primary:hover {
  background: var(--gold);
  color: #fff;
}

/* =========================
PÁGINAS
========================= */

.page {
  display: none;
}

.page.active {
  display: block;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: var(--maroon);
  font-weight: 800;
  font-size: 0.72rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 26px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.back-btn svg {
  width: 16px;
  height: 16px;
}

.page-header {
  padding: 90px 0 8px;
}

/* =========================
   DETALHES DOS CURSOS
========================= */

.course-detail {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 110px;
}


/* =========================
   HERO DO CURSO
========================= */

.course-detail-hero {
  position: relative;
  padding: 55px 55px 50px;
  margin-bottom: 20px;

  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;

  overflow: hidden;
}

.course-detail-decoration {
  position: absolute;
  top: -80px;
  right: -60px;

  width: 230px;
  height: 230px;

  border: 1px solid rgba(122, 31, 36, 0.12);
  border-radius: 50%;
}

.course-detail-decoration::before {
  content: '';

  position: absolute;
  inset: 25px;

  border: 1px solid rgba(122, 31, 36, 0.1);
  border-radius: 50%;
}

.course-detail-decoration span {
  position: absolute;

  width: 7px;
  height: 7px;

  background: var(--gold);
  border-radius: 50%;
}

.course-detail-decoration span:nth-child(1) {
  top: 65px;
  left: 35px;
}

.course-detail-decoration span:nth-child(2) {
  top: 105px;
  right: 35px;
}

.course-detail-decoration span:nth-child(3) {
  bottom: 35px;
  left: 95px;
}


/* CÓDIGO + CATEGORIA */

.course-detail-kicker {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;
}

.course-detail .code {
  display: inline-block;

  margin: 0;
  padding: 7px 11px;

  background: var(--maroon);

  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: #fff;
  text-transform: uppercase;
}

.course-detail-category {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: var(--brown);

  text-transform: uppercase;
}


/* TÍTULO */

.course-detail h1 {
  position: relative;
  z-index: 1;

  max-width: 820px;

  margin: 0 0 30px;

  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.025em;

  color: var(--brown-deep);
}


/* =========================
   INFORMAÇÕES
========================= */

.course-detail-info {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  margin: 0;
}

.course-detail-info span {
  display: flex;
  align-items: center;
  gap: 7px;

  padding: 10px 15px;

  background: #fff;
  border: 1px solid var(--line);

  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;

  color: var(--brown);

  text-transform: uppercase;
}

.course-detail-info strong {
  font-size: 0.82rem;
  color: var(--maroon);
}

.course-detail {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0 110px;
}

.course-detail li {
    list-style: none;
}

/* =========================
   SEÇÕES
========================= */

.course-detail-section {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;

  padding: 55px 15px;

  border-top: 1px solid var(--line);
}

.course-detail-section-number {
  padding-top: 5px;

  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: var(--gold);
}

.course-detail-section-content {
  max-width: 760px;
}

.course-detail-section-label {
  display: block;

  margin-bottom: 10px;

  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;

  color: var(--maroon);

  text-transform: uppercase;
}

.course-detail-section h2 {
  margin: 0 0 20px;

  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;

  color: var(--brown-deep);
}

.course-detail-section p {
  max-width: 720px;

  margin: 0;

  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.9;

  color: rgba(37, 27, 22, 0.72);
}


/* =========================
   SOBRE O CURSO
========================= */

.course-detail-about {
  padding-top: 65px;
  padding-bottom: 65px;
}

.course-detail-about .course-detail-section-content {
  padding-right: 30px;
}


/* =========================
   LISTA DO CONTEÚDO
========================= */

.course-detail-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.course-detail-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37, 27, 22, 0.08);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(37, 27, 22, 0.78);
  list-style: none !important;
  list-style-type: none !important;
}

.course-detail-list li::marker {
  content: "";
}

.course-detail-list-marker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: var(--gold);
}


/* =========================
   PARA QUEM É
========================= */

.course-detail-highlight {
  position: relative;

  margin-top: 25px;
  padding: 30px 32px;

}

.course-detail-highlight-mark {
  display: block;

  margin-bottom: 5px;

  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;

  color: var(--gold);
}

.course-detail-highlight p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;

  color: var(--brown-deep);
}


/* =========================
   BENEFÍCIOS
========================= */

.course-detail-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.course-detail-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--brown);
}var (--brown);


.course-detail-check {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  background: var(--maroon);
  border-radius: 50%;

  font-size: 0.65rem;
  font-weight: 800;

  color: #fff;
}


/* =========================
   INVESTIMENTO
========================= */

.course-detail-offer {
  position: relative;

  margin-top: 25px;
  padding: 48px;

  background: var(--brown-deep);
  border-radius: 16px;

  color: #fff;

  overflow: hidden;
}

.course-detail-offer-decoration {
  position: absolute;
  right: -60px;
  bottom: -100px;

  width: 260px;
  height: 260px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.course-detail-offer-decoration::before {
  content: '';

  position: absolute;
  inset: 30px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.course-detail-offer-decoration span {
  position: absolute;

  width: 7px;
  height: 7px;

  background: var(--gold);
  border-radius: 50%;
}

.course-detail-offer-decoration span:nth-child(1) {
  top: 45px;
  left: 45px;
}

.course-detail-offer-decoration span:nth-child(2) {
  bottom: 50px;
  right: 55px;
}

.course-detail-offer-content {
  position: relative;
  z-index: 1;
}

.course-detail-offer span {
  display: block;

  margin-bottom: 12px;

  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;

  color: var(--gold);

  text-transform: uppercase;
}

.course-detail-offer strong {
  display: block;

  margin-bottom: 8px;

  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;

  color: #fff;
}

.course-detail-offer small {
  display: block;

  margin-bottom: 28px;

  font-family: var(--font-body);
  font-size: 0.72rem;

  color: rgba(255, 255, 255, 0.58);
}

.course-detail-offer .btn-primary {
  background: #fff;
  color: var(--maroon);
}

.course-detail-offer .btn-primary:hover {
  background: var(--gold);
  color: #fff;
}

/* =========================
   INVESTIMENTO
========================= */

.course-detail-offer {
  position: relative;

  margin-top: 45px;
  padding: 45px;

  background: var(--brown-deep);
  border-radius: 14px;

  color: #fff;
  overflow: hidden;
}

.course-detail-offer::after {
  content: '';

  position: absolute;
  top: 0;
  right: 0;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;

  transform: translate(35%, -35%);
}

.course-detail-offer span {
  position: relative;
  z-index: 1;

  display: block;
  margin-bottom: 12px;

  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;

  color: var(--gold);
  text-transform: uppercase;
}

.course-detail-offer strong {
  position: relative;
  z-index: 1;

  display: block;
  margin-bottom: 8px;

  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;

  color: #fff;
}

.course-detail-offer small {
  position: relative;
  z-index: 1;

  display: block;
  margin-bottom: 28px;

  font-family: var(--font-body);
  font-size: 0.72rem;

  color: rgba(255, 255, 255, 0.58);
}

.course-detail-offer .btn-primary {
  position: relative;
  z-index: 1;

  background: #fff;
  color: var(--maroon);
}

.course-detail-offer .btn-primary:hover {
  background: var(--gold);
  color: #fff;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .course-detail {
    width: min(100% - 36px, 560px);
    padding: 55px 0 75px;
  }

  /* HERO */

  .course-detail-hero {
    padding: 35px 25px 30px;
    margin-bottom: 10px;
  }

  .course-detail-decoration {
    width: 170px;
    height: 170px;
    top: -55px;
    right: -50px;
  }

  .course-detail-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
  }

  .course-detail .code {
    margin: 0;
    padding: 7px 11px;
  }

  .course-detail h1 {
    margin-bottom: 25px;
    font-size: clamp(2.3rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  /* INFORMAÇÕES */

  .course-detail-info {
    gap: 7px;
    margin-bottom: 0;
  }

  .course-detail-info span {
    padding: 9px 11px;
    font-size: 0.6rem;
  }

  .course-detail-info strong {
    font-size: 0.78rem;
  }

  /* SEÇÕES */

  .course-detail-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 38px 5px;
  }

  .course-detail-section-number {
    padding: 0;
  }

  .course-detail-section h2 {
    max-width: none;
    margin-bottom: 16px;
    font-size: 1.45rem;
  }

  .course-detail-section p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* SOBRE */

  .course-detail-about {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .course-detail-about .course-detail-section-content {
    padding-right: 0;
  }

  /* LISTA DO CONTEÚDO */

  .course-detail-list li {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    font-size: 0.86rem;
  }

  /* PARA QUEM */

  .course-detail-highlight {
    margin-top: 20px;
    padding: 25px 22px;
  }

  .course-detail-highlight p {
    font-size: 1.15rem;
    line-height: 1.45;
  }

  /* BENEFÍCIOS */

  .course-detail-benefits {
    grid-template-columns: 1fr;
  }

  .course-detail-benefits li {
    font-size: 0.8rem;
  }

  /* INVESTIMENTO */

  .course-detail-offer {
    margin-top: 15px;
    padding: 35px 25px;
  }

  .course-detail-offer strong {
    font-size: 2.2rem;
  }

  .course-detail-offer .btn {
    width: 100%;
  }

}
/* =========================
HERO
========================= */

.hero {
  position: relative;
  min-height: 760px;
  padding: 190px 8% 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  color: #fff;
  isolation: isolate;

  background:
    linear-gradient(
      90deg,
      rgba(20, 10, 7, 0.88) 0%,
      rgba(20, 10, 7, 0.68) 38%,
      rgba(20, 10, 7, 0.18) 78%,
      rgba(20, 10, 7, 0.05) 100%
    ),
    url('imagens/hero.jpg') center center / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.42)
  );
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: none;
}

.hero .eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 15px;
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 0.98;
  margin: 0 0 24px;
  text-wrap: balance;
}

.hero h1::after {
  content: '';
  display: block;
  width: 68px;
  height: 3px;
  background: var(--gold);
  margin-top: 27px;
}

.hero p.lead {
  max-width: 570px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  background: var(--maroon);
  color: #fff;
  padding: 9px 15px;
  margin: 0 0 25px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 48px;
}

.hero-actions .btn-primary {
  background: var(--maroon);
  color: #fff;
  padding: 16px 27px;
}

.hero-actions .btn-primary:hover {
  background: var(--red);
}

.directory {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: auto auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 10, 7, 0.35);
  backdrop-filter: blur(5px);
}

.directory button {
  min-height: 86px;
  padding: 17px 20px;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.directory button:last-child {
  border-right: 0;
}

.directory button:hover {
  background: rgba(139, 37, 43, 0.7);
}

.directory .lbl {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.directory .arrow {
  font-size: 0.61rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stat-strip {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

/* =========================
SEÇÕES
========================= */

.rule {
  height: 5px;
  background: var(--maroon);
}

section {
  padding: 96px 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin-top: 10px;
}

.section-head p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px auto 0;
  font-size: 0.98rem;
  color: rgba(37, 27, 22, 0.72);
}

.surface {
  background: var(--cream);
}

/* =========================
CONTEXTO
========================= */

#contexto {
  position: relative;
  background: var(--cream-soft);
}

#contexto .section-head {
  max-width: 920px;
}

#contexto .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

#contexto .section-head p:last-child {
  font-size: 1.08rem;
  line-height: 1.8;
}

/* =========================
PARA QUEM
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.info-card {
  min-height: 245px;
  padding: 30px 25px;
  border: 0;
  border-radius: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  background: #fff;
}

.info-card .ic {
  display: block;
  margin-bottom: 36px;
  color: var(--maroon);
}

.info-card .ic svg {
  width: 28px;
  height: 28px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 11px;
}

.info-card p {
  font-size: 0.86rem;
  color: rgba(37, 27, 22, 0.68);
}

/* =========================
METODOLOGIA
========================= */

#metodologia {
  background: var(--brown-deep);
  color: #fff;
}

#metodologia h2,
#metodologia .section-head p:not(.eyebrow) {
  color: #fff;
}

#metodologia .section-head p:not(.eyebrow) {
  opacity: 0.7;
}

#metodologia .eyebrow {
  color: var(--gold);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar {
  padding: 42px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar:last-child {
  border-right: 0;
}

.pillar .n {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 35px;
}

.pillar h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.pillar p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

/* =========================
   CURSOS
========================= */

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CADA CATEGORIA */

.course-category {
  margin-bottom: 45px;
  padding: 0;
}

.course-category:last-child {
  margin-bottom: 0;
}

.course-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.course-category-header span {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
}

.course-category-header::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line);
}

/* GRID DOS CURSOS DENTRO DA CATEGORIA */

.course-category .course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */

.course-card {
  position: relative;
  min-height: 130px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 31, 36, 0.35);
  box-shadow: 0 18px 45px rgba(37, 27, 22, 0.1);
}


/* =========================
   CARD DE PAGAMENTO
========================= */

.course-payment-card {
  margin-top: 35px;
  padding: 38px;
  background: var(--brown-deep);
  color: #fff;
  border-radius: 14px;
}

.course-payment-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.course-payment-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.course-payment-card p {
  max-width: 650px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

.course-payment-card strong {
  color: #fff;
}

.course-payment-card small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}




/* CONTEÚDO */

.course-card .code {
  display: block;
  margin: 22px 24px 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--maroon);
  text-transform: uppercase;
}

.course-card h3 {
  margin: 0 24px;
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--brown-deep);
}

.course-card .meta {
  display: block;
  margin: 12px 24px 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(37, 27, 22, 0.62);
}

/* PREÇO */

.course-card .price {
  margin: auto 24px 17px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--maroon);
}

.course-card .price small {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  color: rgba(37, 27, 22, 0.55);
}

/* BOTÃO */

.course-card a.btn {
  align-self: stretch;
  margin: 0 24px 24px;
  padding: 11px 15px;
  font-size: 0.63rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .course-category .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .course-category {
    margin-bottom: 35px;
  }

  .course-category-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .course-category-header span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .course-category .course-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .course-card {
    min-height: 130px;
  }

  .course-card .code {
    margin: 19px 21px 7px;
  }

  .course-card h3 {
    margin: 0 21px;
    font-size: 1.22rem;
  }

  .course-card .meta {
    margin: 10px 21px 0;
  }

  .course-card .price {
    margin-left: 21px;
    margin-right: 21px;
  }

  .course-card a.btn {
    margin-left: 21px;
    margin-right: 21px;
    margin-bottom: 21px;
  }

    .course-payment-card {
    margin-top: 28px;
    padding: 30px 23px;
  }

  .course-payment-card h3 {
    font-size: 2.1rem;
  }

}
/* =========================
COMBOS
========================= */

.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.combo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}

.combo-card .plate {
  background: var(--brown-deep);
  color: #fff;
  padding: 20px 24px;
  border-bottom: 4px solid var(--gold);
}

.combo-card.highlight .plate {
  background: var(--maroon);
}

.combo-tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}

.combo-card .plate h3 {
  color: #fff;
  font-size: 1.25rem;
}

.combo-body {
  padding: 24px;
}

.combo-card p.desc {
  font-size: 0.86rem;
  opacity: 0.7;
  margin-bottom: 18px;
}

.combo-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--maroon);
  margin-bottom: 5px;
}

.combo-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  opacity: 0.6;
}

.combo-access {
  font-size: 0.76rem;
  opacity: 0.6;
  margin-bottom: 18px;
}

/* =========================
BÔNUS
========================= */

.bonus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.bonus-item {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  background: #fff;
  padding: 25px;
}

.bonus-item .ic {
  color: var(--maroon);
  flex: 0 0 auto;
}

.bonus-item .ic svg {
  width: 25px;
  height: 25px;
}

.bonus-item h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.bonus-item p {
  font-size: 0.82rem;
  opacity: 0.68;
}

/* =========================
HISTÓRIA
========================= */

.story {
  max-width: 850px;
  margin: 0 auto;
}

.story p {
  margin-bottom: 20px;
  font-size: 1.03rem;
  line-height: 1.85;
  opacity: 0.82;
}

.story p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.45;
  color: var(--brown-deep);
  opacity: 1;
}

/* =========================
PROFESSORES
========================= */

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.teacher-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 30px;
  text-align: center;
}

.teacher-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  border: 4px solid rgba(196, 154, 74, 0.35);
}

.teacher-avatar svg {
  width: 38px;
  height: 38px;
}

.teacher-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.teacher-card p {
  font-size: 0.82rem;
  opacity: 0.62;
}

.todo-note {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--brown);
  background: rgba(122, 31, 36, 0.06);
  border: 1px solid var(--line);
  padding: 16px 22px;
}

/* =========================
FAQ
========================= */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--brown-deep);
}

.faq-q .chev {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--maroon);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding-bottom: 22px;
}

.faq-a p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================
CTA FINAL
========================= */

#contato {
  padding: 100px 0;
  background: var(--cream);
}

.cta-final {
  position: relative;
  overflow: hidden;
  text-align: left;
  background: var(--maroon);
  border-radius: 0;
  padding: 70px clamp(28px, 7vw, 90px);
  color: #fff;
}

.cta-final::after {
  content: 'ECC';
  position: absolute;
  right: 5%;
  bottom: -30px;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.cta-final h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 750px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.03;
  margin: 10px 0 18px;
}

.cta-final p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 28px;
}

.cta-final .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--gold);
}

.cta-final .btn-primary {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--maroon);
}

.cta-final .btn-primary:hover {
  background: var(--gold);
  color: #fff;
}

/* =========================
RODAPÉ
========================= */

footer {
  border-top: 5px solid var(--gold);
}

.footer-main {
  background: var(--brown-deep);
  color: #fff;
  padding: 58px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 13px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-col h4 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col button,
.footer-col a {
  display: block;
  background: none;
  border: 0;
  color: #fff;
  opacity: 0.68;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  padding: 0 0 10px;
  font-family: inherit;
}

.footer-col button:hover,
.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* =========================
WHATSAPP
========================= */

.float-wpp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  color: #29000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 100;
  transition: transform 0.2s ease;
}

.float-wpp svg {
  width: 30px;
  height: 30px;
  display: block;
  color: #020202;
  flex-shrink: 0;
}

.float-wpp:hover {
  transform: scale(1.08);
}

/* =========================
ANIMAÇÕES
========================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================
TABLET
========================= */

@media (max-width: 1000px) {
  .nav-links {
    gap: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory button:nth-child(2) {
    border-right: 0;
  }
}

/* =========================
MOBILE
========================= */

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 36px, 560px);
  }

  .utility-inner {
    min-height: 30px;
    justify-content: center;
    text-align: center;
    padding: 6px 18px;
    font-size: 0.55rem;
  }

  .utility-inner button {
    display: none;
  }

  header {
    top: 30px;
  }

  header.scrolled {
    top: 0;
  }

  .nav {
    width: calc(100% - 32px);
    min-height: 70px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-text .inst {
    font-size: 0.48rem;
  }

  .brand-text .name {
    font-size: 1.05rem;
  }

  .nav-links {
    display: none;
  }

  header .btn-primary {
    padding: 11px 13px;
    font-size: 0.58rem;
  }

  .hero {
  min-height: 760px;
  padding: 145px 22px 35px;

  background:
    linear-gradient(
      0deg,
      rgba(20, 10, 7, 0.88) 0%,
      rgba(20, 10, 7, 0.68) 48%,
      rgba(20, 10, 7, 0.45) 100%
    ),
    url('imagens/hero.jpg') center center / 160% auto no-repeat;

  background-color: #21150f;
}

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.4rem);
    line-height: 1.02;
  }

  .hero p.lead {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 35px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .directory {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .directory button {
    min-height: 75px;
    padding: 13px 14px;
  }

  .directory button:nth-child(3),
  .directory button:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  section {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 35px;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .card-grid,
  .course-grid,
  .combo-grid,
  .teacher-grid,
  .bonus-list {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
    padding: 25px 22px;
  }

  .info-card .ic {
    margin-bottom: 22px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px 23px;
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .pillar .n {
    margin-bottom: 22px;
  }

  .story p:first-of-type {
    font-size: 1.35rem;
  }

  #contato {
    padding: 68px 0;
  }

  .cta-final {
    padding: 48px 25px;
  }

  .cta-final h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .float-wpp {
    width: 52px;
    height: 52px;
    right: 15px;
    bottom: 15px;
  }

  /* Botão Matricule-se menor somente no celular */
  #nav-wpp-btn {
    font-size: 11px !important;
    padding: 8px 12px !important;
  }
}

/* =========================
ACESSIBILIDADE
========================= */

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.teacher-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ========================================
   AJUSTES EXCLUSIVOS DO DESKTOP
   ======================================== */

@media (min-width: 1001px) {
  .nav {
    min-height: 100px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .nav-links {
    gap: 38px;
  }

  header .btn-primary {
    padding: 15px 25px;
  }

  .hero {
    min-height: 850px;
    padding: 210px 8% 65px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(4rem, 5.5vw, 6rem);
  }

  .hero p.lead {
    max-width: 650px;
    font-size: 1.1rem;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .btn {
    padding: 16px 28px;
  }

  .directory {
    max-width: 1280px;
  }
  .course-category .course-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}