:root {
  --color-primary: #e16d00;
  --color-secondary: #15a495;
  --color-accent: #edb414;
  --color-coral: #e8654a;

  --color-title: #17202c;
  --color-text: #424242;
  --color-muted: #6f7782;
  --color-white: #ffffff;
  --color-ice: #f8f9fa;

  --gradient-main: linear-gradient(
    135deg,
    #e16d00 0%,
    #e8654a 28%,
    #edb414 58%,
    #15a495 100%
  );

  --shadow-soft: 0 18px 46px rgba(8, 16, 24, 0.10);
  --shadow-card: 0 26px 70px rgba(8, 16, 24, 0.12);
  --shadow-cta:
    0 18px 34px rgba(225, 109, 0, 0.22),
    0 0 34px rgba(21, 164, 149, 0.14);

  --radius-pill: 999px;
  --radius-card: 30px;
  --container: 1240px;
  --transition: 0.35s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: #ffffff;
  color: var(--color-text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* BOTÕES */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 34%;
  height: 360%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: rotate(18deg);
  transition: transform 0.72s ease;
  z-index: -1;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(420%) rotate(18deg);
}

.btn--nav,
.btn--hero,
.btn--card {
  color: var(--color-white);
  background: var(--gradient-main);
  box-shadow: var(--shadow-cta);
}

.btn--nav {
  min-width: 190px;
  font-size: 15px;
}

.btn--hero {
  min-width: 250px;
  min-height: 60px;
  padding-inline: 30px;
  font-size: 16px;
}

.btn--ghost {
  min-width: 190px;
  min-height: 60px;
  color: var(--color-title);
  border: 1px solid rgba(23, 32, 44, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(8, 16, 24, 0.08);
  backdrop-filter: blur(12px);
}

.btn--card {
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  font-size: 15px;
}

/* NAVBAR */
.site-header {
  position: relative;
  background: #ffffff;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  width: 100%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  transition:
    padding var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(8, 16, 24, 0.12);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  flex-shrink: 0;
}

.brand__logo {
  width: auto;
  max-height: 46px;
  object-fit: contain;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  color: var(--color-title);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-main);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: 1px solid rgba(23, 32, 44, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(8, 16, 24, 0.08);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-title);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.12) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.10) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-effect--orange {
  top: 42%;
  left: 44%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.08) 0%, transparent 70%);
  filter: blur(12px);
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.hero-bg-effect--green {
  right: 8%;
  top: 20%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.08) 0%, transparent 70%);
  filter: blur(12px);
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

.hero-bg-effect--yellow {
  left: 18%;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(237, 180, 20, 0.08) 0%, transparent 70%);
  filter: blur(12px);
  animation: floatGlow 11s ease-in-out infinite alternate;
}

.hero__container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 410px;
  align-items: center;
  gap: 42px;
  padding-top: 126px;
  padding-bottom: 74px;
}

.hero__content {
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  border: 1px solid rgba(225, 109, 0, 0.14);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(225, 109, 0, 0.08);
}

.hero__eyebrow i {
  color: var(--color-accent);
  font-size: 16px;
}

.hero__title {
  margin-bottom: 22px;
  color: var(--color-title);
  font-size: 60px;
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 800;
}

.hero__title span {
  display: block;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__description {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-info__item {
  min-height: 116px;
  padding: 18px 16px;
  border-radius: 22px;
  color: var(--color-title);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 38px rgba(8, 16, 24, 0.08);
  backdrop-filter: blur(12px);
}

.hero-info__item i {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 20px;
}

.hero-info__item strong,
.hero-info__item span {
  display: block;
}

.hero-info__item strong {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-info__item span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* CARD DO HERO */
.hero-card {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  color: var(--color-title);
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.12), transparent 38%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-main);
  opacity: 0.22;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.hero-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-secondary);
  background: rgba(21, 164, 149, 0.09);
  border: 1px solid rgba(21, 164, 149, 0.16);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card h2 {
  margin-bottom: 14px;
  color: var(--color-title);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -1.3px;
  font-weight: 800;
}

.hero-card p {
  margin-bottom: 22px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-card__list {
  display: grid;
  gap: 12px;
}

.hero-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-title);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-card__list i {
  margin-top: 2px;
  color: var(--color-primary);
  font-size: 15px;
  flex-shrink: 0;
}

/* ANIMAÇÃO */
@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(22px, -18px, 0);
  }
}

/* RESPONSIVO */
@media (max-width: 1180px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__content {
    max-width: 850px;
  }

  .hero-card {
    max-width: 640px;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrapper {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 22px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(8, 16, 24, 0.18);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .nav-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 14px;
  }

  .nav-links a {
    color: var(--color-title);
    font-size: 15px;
  }

  .nav-actions {
    display: grid;
  }

  .btn--nav {
    width: 100%;
  }

  .hero__container {
    padding-top: 126px;
  }

  .hero__title {
    font-size: 58px;
    letter-spacing: -3.8px;
  }

  .hero__description {
    font-size: 17px;
  }

  .hero-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    padding: 14px 0;
  }

  .brand__logo {
    max-height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    width: 360px;
    height: 360px;
    top: 80px;
    left: -180px;
  }

  .hero::after {
    width: 360px;
    height: 360px;
    right: -180px;
    bottom: 120px;
  }

  .hero__container {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 70px;
  }

  .hero__eyebrow {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero__eyebrow i {
    font-size: 14px;
  }

  .hero__title {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -2.8px;
  }

  .hero__description {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    font-size: 14px;
  }

  .btn--hero,
  .btn--ghost {
    min-width: 100%;
    font-size: 15px;
  }

  .hero-info {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card h2 {
    font-size: 24px;
  }

  .hero-card p {
    font-size: 14px;
  }

  .hero-card__list li {
    font-size: 13px;
  }
}















/* SEÇÕES GERAIS */
.section {
  position: relative;
  padding: 96px 0;
  background: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* TÍTULOS PADRÃO DAS SEÇÕES */
.section-heading {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-bottom: 44px;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--color-secondary);
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(21, 164, 149, 0.06);
}

.section-heading__eyebrow i {
  color: var(--color-primary);
  font-size: 16px;
}

.section-heading__title {
  margin-bottom: 18px;
  color: var(--color-title);
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -2.8px;
  font-weight: 800;
}

.section-heading__text {
  max-width: 760px;
  margin-inline: auto;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 300;
}

/* SESSÃO 2 - VISÃO GERAL */
.overview-section {
  overflow: hidden;
  background: #ffffff;
}

.overview-section::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.08) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.overview-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.overview-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.overview-bg-effect--orange {
  top: 48%;
  left: 46%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.06) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.overview-bg-effect--green {
  right: 14%;
  top: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.overview-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.overview-card {
  position: relative;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 109, 0, 0.22);
  box-shadow: 0 26px 64px rgba(8, 16, 24, 0.12);
}

.overview-card--highlight {
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.12), transparent 36%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.95);
}

.overview-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 24px;
}

.overview-card__content span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-card__content strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-title);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.overview-card__content p {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
}

/* BLOCO DE DECISÃO */
.overview-decision {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.overview-decision::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-main);
  opacity: 0.18;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.overview-decision__content {
  position: relative;
  z-index: 1;
}

.overview-decision__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  border: 1px solid rgba(225, 109, 0, 0.14);
  font-size: 13px;
  font-weight: 800;
}

.overview-decision__label i {
  color: var(--color-accent);
  font-size: 15px;
}

.overview-decision h3 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--color-title);
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.overview-decision p {
  max-width: 760px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.78;
  font-weight: 300;
}

.overview-decision__cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.overview-decision__badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  color: var(--color-title);
  background: rgba(21, 164, 149, 0.07);
  border: 1px solid rgba(21, 164, 149, 0.12);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.overview-decision__badge i {
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* RESPONSIVO DA SESSÃO 2 */
@media (max-width: 1180px) {
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-decision {
    grid-template-columns: 1fr;
  }

  .overview-decision__cta {
    max-width: 420px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 82px 0;
  }

  .section-heading__title {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .section-heading__text {
    font-size: 16px;
  }

  .overview-decision h3 {
    font-size: 26px;
    letter-spacing: -1.2px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading__eyebrow {
    font-size: 12px;
    line-height: 1.45;
  }

  .section-heading__title {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .section-heading__text {
    font-size: 15px;
    line-height: 1.72;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .overview-card__icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .overview-card__content strong {
    font-size: 19px;
  }

  .overview-card__content p {
    font-size: 14px;
  }

  .overview-decision {
    padding: 24px;
    border-radius: 26px;
  }

  .overview-decision__label {
    font-size: 12px;
    line-height: 1.45;
  }

  .overview-decision h3 {
    font-size: 23px;
    line-height: 1.22;
    letter-spacing: -1px;
  }

  .overview-decision p {
    font-size: 14px;
  }

  .overview-decision__badge {
    font-size: 13px;
  }
}

/* EFEITO GLOBAL DE GRADIENTE PARA TRECHOS DOS TÍTULOS */
.title-gradient {
  display: inline;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}










/* SESSÃO 3 - PROBLEMA / OPORTUNIDADE */
.opportunity-section {
  overflow: hidden;
  background: #ffffff;
}

.opportunity-section::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.08) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.opportunity-section::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: 70px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.opportunity-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.opportunity-bg-effect--orange {
  top: 42%;
  left: 42%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.06) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.opportunity-bg-effect--green {
  top: 14%;
  left: 12%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.055) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.opportunity-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
}

.opportunity-content {
  max-width: 560px;
}

.opportunity-title {
  margin-bottom: 22px;
  color: var(--color-title);
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -2.8px;
  font-weight: 800;
}

.opportunity-text {
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 300;
}

.opportunity-quote {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.10), transparent 42%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(225, 109, 0, 0.14);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
}

.opportunity-quote i {
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

.opportunity-quote strong {
  display: block;
  color: var(--color-title);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.6px;
  font-weight: 800;
}

.opportunity-actions {
  display: flex;
  margin-top: 28px;
}

/* CARDS DA OPORTUNIDADE */
.opportunity-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.opportunity-card {
  position: relative;
  min-height: 300px;
  padding: 26px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.065), transparent 36%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.opportunity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 109, 0, 0.22);
  box-shadow: 0 28px 68px rgba(8, 16, 24, 0.12);
}

.opportunity-card--featured {
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.12), transparent 38%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.95);
}

.opportunity-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(225, 109, 0, 0.12);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 800;
}

.opportunity-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 24px;
}

.opportunity-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--color-title);
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -0.8px;
  font-weight: 800;
}

.opportunity-card p {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
}

/* RESPONSIVO DA SESSÃO 3 */
@media (max-width: 1180px) {
  .opportunity-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .opportunity-content {
    max-width: 820px;
  }

  .opportunity-cards {
    max-width: 920px;
  }
}

@media (max-width: 992px) {
  .opportunity-title {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .opportunity-text {
    font-size: 15px;
  }

  .opportunity-card {
    min-height: 280px;
  }

  .opportunity-quote strong {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .opportunity-title {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .opportunity-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .opportunity-actions,
  .opportunity-actions .btn {
    width: 100%;
  }

  .opportunity-quote {
    padding: 20px;
    border-radius: 24px;
  }

  .opportunity-quote i {
    font-size: 24px;
  }

  .opportunity-quote strong {
    font-size: 17px;
  }

  .opportunity-cards {
    grid-template-columns: 1fr;
  }

  .opportunity-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .opportunity-card__number {
    top: 18px;
    right: 20px;
    font-size: 46px;
  }

  .opportunity-card__icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .opportunity-card h3 {
    font-size: 19px;
  }

  .opportunity-card p {
    font-size: 14px;
  }
}






















/* SESSÃO 5 - O QUE O ALUNO VAI DOMINAR */
.mastery-section {
  overflow: hidden;
  background: #ffffff;
}

.mastery-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -170px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.mastery-section::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: 70px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.mastery-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mastery-bg-effect--orange {
  top: 45%;
  left: 42%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.mastery-bg-effect--green {
  right: 12%;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.mastery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mastery-card {
  min-height: 210px;
  padding: 24px 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.07), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.mastery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 109, 0, 0.22);
  box-shadow: 0 26px 62px rgba(8, 16, 24, 0.12);
}

.mastery-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 22px;
}

.mastery-card h3 {
  margin-bottom: 10px;
  color: var(--color-title);
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.7px;
  font-weight: 800;
}

.mastery-card p {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 300;
}

.mastery-summary {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 30px auto 0;
  padding: 22px 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  text-align: center;
}

.mastery-summary i {
  color: var(--color-primary);
  font-size: 22px;
  flex-shrink: 0;
}

.mastery-summary strong {
  color: var(--color-title);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.4px;
  font-weight: 800;
}

/* RESPONSIVO DA SESSÃO 5 */
@media (max-width: 1180px) {
  .mastery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mastery-card {
    min-height: 190px;
  }
}

@media (max-width: 992px) {
  .mastery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mastery-summary {
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .mastery-grid {
    grid-template-columns: 1fr;
  }

  .mastery-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .mastery-card__icon {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .mastery-card h3 {
    font-size: 18px;
  }

  .mastery-card p {
    font-size: 14px;
  }

  .mastery-summary {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 22px;
    border-radius: 24px;
  }

  .mastery-summary strong {
    font-size: 15px;
  }
}























/* SESSÃO 6 - CONTEÚDO PROGRAMÁTICO */
.program-section {
  overflow: hidden;
  background: #ffffff;
}

.program-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.program-section::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: 80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.program-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.program-bg-effect--orange {
  top: 38%;
  left: 40%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.program-bg-effect--green {
  right: 10%;
  bottom: 12%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.program-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 54px;
}

/* IMAGEM SAINDO DO CANTO ESQUERDO ATÉ O CENTRO */
.program-visual {
  position: relative;
  min-height: 780px;
  margin-left: calc((100vw - min(100vw - 40px, var(--container))) / -2);
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(21, 164, 149, 0.12);
  border-left: 0;
  box-shadow: 0 28px 78px rgba(8, 16, 24, 0.14);
}

.program-visual img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.program-visual:hover img {
  transform: scale(1.07);
}

.program-visual__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.08) 0%, rgba(8, 16, 24, 0.46) 100%),
    radial-gradient(circle at 20% 20%, rgba(225, 109, 0, 0.22) 0%, transparent 42%);
  pointer-events: none;
}

.program-visual__badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 330px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(8, 16, 24, 0.18);
}

.program-visual__badge i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-white);
  background: var(--gradient-main);
  font-size: 22px;
  flex-shrink: 0;
}

.program-visual__badge strong,
.program-visual__badge span {
  display: block;
}

.program-visual__badge strong {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.program-visual__badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

/* CONTEÚDO */
.program-content {
  max-width: 620px;
}

.program-title {
  margin-bottom: 18px;
  color: var(--color-title);
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -2.4px;
  font-weight: 800;
}

.program-text {
  margin-bottom: 28px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

/* ACCORDION */
.program-accordion {
  display: grid;
  gap: 12px;
}

.program-accordion__item {
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.055), transparent 36%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 16px 40px rgba(8, 16, 24, 0.07);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.program-accordion__item:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 109, 0, 0.2);
  box-shadow: 0 22px 54px rgba(8, 16, 24, 0.1);
}

.program-accordion__item.is-open {
  border-color: rgba(225, 109, 0, 0.24);
  box-shadow: 0 22px 58px rgba(8, 16, 24, 0.11);
}

.program-accordion__button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--color-title);
  cursor: pointer;
  text-align: left;
}

.program-accordion__button span {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.program-accordion__button i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 16px;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.program-accordion__item.is-open .program-accordion__button i {
  transform: rotate(45deg);
  color: var(--color-white);
  background: var(--gradient-main);
}

.program-accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.program-accordion__inner {
  padding: 0 22px 22px;
}

.program-accordion__inner ul {
  display: grid;
  gap: 10px;
}

.program-accordion__inner li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

.program-accordion__inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-main);
}

/* RESPONSIVO DA SESSÃO 6 */
@media (max-width: 1180px) {
  .program-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

.program-visual {
  min-height: 500px;
  margin-left: 0;
  border-radius: 0;
  border-left: 1px solid rgba(21, 164, 149, 0.12);
}

  .program-visual img {
    min-height: 500px;
  }

  .program-content {
    max-width: 820px;
  }
}

@media (max-width: 992px) {
  .program-title {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .program-text {
    font-size: 15px;
  }

  .program-visual {
    min-height: 420px;
  }

  .program-visual img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .program-layout {
    gap: 32px;
  }

.program-visual {
  min-height: 320px;
  border-radius: 0;
}

  .program-visual img {
    min-height: 320px;
  }

  .program-visual__badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 16px;
    border-radius: 20px;
  }

  .program-visual__badge i {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .program-visual__badge strong {
    font-size: 16px;
  }

  .program-visual__badge span {
    font-size: 12px;
  }

  .program-title {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .program-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .program-accordion__button {
    min-height: 66px;
    padding: 18px;
  }

  .program-accordion__button span {
    font-size: 15px;
  }

  .program-accordion__button i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .program-accordion__inner {
    padding: 0 18px 20px;
  }

  .program-accordion__inner li {
    font-size: 13px;
  }
}


























/* SESSÃO 7 - METODOLOGIA */
.methodology-section {
  overflow: hidden;
  background: #ffffff;
}

.methodology-section::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -170px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.methodology-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 70px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.methodology-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.methodology-bg-effect--orange {
  top: 42%;
  left: 42%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.methodology-bg-effect--green {
  right: 12%;
  top: 16%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.methodology-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.methodology-card {
  min-height: 260px;
  padding: 30px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.07), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.methodology-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 109, 0, 0.22);
  box-shadow: 0 26px 64px rgba(8, 16, 24, 0.12);
}

.methodology-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 25px;
}

.methodology-card h3 {
  margin-bottom: 12px;
  color: var(--color-title);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.9px;
  font-weight: 800;
}

.methodology-card p {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
}

.methodology-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* RESPONSIVO DA SESSÃO 7 */
@media (max-width: 992px) {
  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .methodology-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .methodology-card {
    padding: 24px;
    border-radius: 24px;
  }

  .methodology-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .methodology-card h3 {
    font-size: 20px;
  }

  .methodology-card p {
    font-size: 14px;
  }

  .methodology-cta,
  .methodology-cta .btn {
    width: 100%;
  }
}

























/* SESSÃO 8 - PRECEPTORES / CORPO DOCENTE */
.preceptors-section {
  --preceptors-marquee-speed: 20s; /* VELOCIDADE DO CARROSSEL: menor = mais rápido | maior = mais lento */

  overflow: hidden;
  background: #ffffff;
}

.preceptors-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.preceptors-section::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: 80px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.preceptors-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.preceptors-bg-effect--orange {
  top: 45%;
  left: 45%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.preceptors-bg-effect--green {
  right: 12%;
  top: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.preceptors-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 34px;
  margin-bottom: 38px;
}

.preceptors-header__content {
  max-width: 820px;
}

.preceptors-title {
  margin-bottom: 18px;
  color: var(--color-title);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -2.4px;
  font-weight: 800;
}

.preceptors-text {
  max-width: 720px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.preceptors-header__cta {
  display: flex;
  justify-content: flex-end;
}

.preceptors-header__cta .btn {
  width: 100%;
}

/* MARQUEE */
.preceptors-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 12px;
}

.preceptors-marquee::before,
.preceptors-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.preceptors-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.preceptors-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.preceptors-marquee__track {
  display: flex;
  width: max-content;
  animation: preceptorsMarquee var(--preceptors-marquee-speed) linear infinite;
}

.preceptors-marquee:hover .preceptors-marquee__track {
  animation-play-state: paused;
}

.preceptors-marquee__group {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-right: 18px;
}

/* CARD */
.preceptor-card {
  width: 330px;
  flex: 0 0 330px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 20px 52px rgba(8, 16, 24, 0.09);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.preceptor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 109, 0, 0.22);
  box-shadow: 0 30px 76px rgba(8, 16, 24, 0.13);
}

/* CARD DESTAQUE - COORDENADOR */
.preceptor-card--coordinator {
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.28), transparent 42%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.20), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 2px solid rgba(225, 109, 0, 0.34);
  box-shadow:
    0 28px 78px rgba(225, 109, 0, 0.18),
    0 12px 34px rgba(21, 164, 149, 0.10);
}

.preceptor-card--coordinator:hover {
  border-color: rgba(225, 109, 0, 0.54);
  box-shadow:
    0 34px 92px rgba(225, 109, 0, 0.24),
    0 18px 42px rgba(21, 164, 149, 0.14);
}

.preceptor-card--coordinator .preceptor-card__badge {
  background: linear-gradient(135deg, #111827 0%, #e16d00 58%, #15a495 100%);
  box-shadow:
    0 14px 30px rgba(225, 109, 0, 0.28),
    0 0 22px rgba(21, 164, 149, 0.18);
}

.preceptor-card--coordinator .preceptor-card__meta span {
  color: #ffffff;
  background: var(--gradient-main);
  border-color: rgba(225, 109, 0, 0.22);
}

.preceptor-card--coordinator .preceptor-card__links a {
  color: #ffffff;
  background: var(--gradient-main);
  border-color: rgba(225, 109, 0, 0.22);
}

.preceptor-card__media {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #f3f5f7;
}

.preceptor-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0) 45%, rgba(8, 16, 24, 0.46) 100%),
    radial-gradient(circle at 20% 20%, rgba(225, 109, 0, 0.14), transparent 38%);
  pointer-events: none;
}

.preceptor-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.preceptor-card:hover .preceptor-card__media img {
  transform: scale(1.06);
}

.preceptor-card__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 12px 26px rgba(225, 109, 0, 0.22);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.preceptor-card__content {
  padding: 24px 22px 22px;
}

.preceptor-card__content h3 {
  margin-bottom: 8px;
  color: var(--color-title);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  font-weight: 800;
}

.preceptor-card__content p {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.preceptor-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
}

.preceptor-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.preceptor-card__meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--color-secondary);
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.preceptor-card__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.preceptor-card__links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  border: 1px solid rgba(225, 109, 0, 0.12);
  font-size: 16px;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}

.preceptor-card__links a:hover,
.preceptor-card__links a:focus-visible {
  transform: translateY(-3px);
  color: #ffffff;
  background: var(--gradient-main);
}

.preceptors-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 860px;
  margin: 34px auto 0;
  padding: 22px 28px;
  border-radius: 999px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
}

.preceptors-footer i {
  color: var(--color-primary);
  font-size: 22px;
  flex-shrink: 0;
}

.preceptors-footer strong {
  color: var(--color-title);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.4px;
  font-weight: 800;
}

@keyframes preceptorsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVO DA SESSÃO 8 */
@media (max-width: 992px) {
  .preceptors-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .preceptors-header__cta {
    justify-content: flex-start;
    max-width: 340px;
  }

  .preceptors-title {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .preceptors-text {
    font-size: 15px;
  }

  .preceptor-card {
    width: 300px;
    flex-basis: 300px;
  }

  .preceptor-card__media {
    height: 330px;
  }

  .preceptor-card__footer {
    align-items: flex-start;
  }

  .preceptor-card__meta span {
    font-size: 11px;
    padding: 8px 10px;
  }

  .preceptor-card__links a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .preceptors-title {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .preceptors-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .preceptors-header__cta,
  .preceptors-header__cta .btn {
    width: 100%;
    max-width: none;
  }

  .preceptors-marquee::before,
  .preceptors-marquee::after {
    width: 42px;
  }

  .preceptor-card {
    width: 280px;
    flex-basis: 280px;
    border-radius: 26px;
  }

  .preceptor-card__media {
    height: 310px;
  }

  .preceptor-card__content {
    padding: 22px 20px 20px;
  }

  .preceptor-card__content h3 {
    font-size: 17px;
  }

  .preceptor-card__content p {
    font-size: 13px;
  }

  .preceptor-card__footer {
    align-items: flex-start;
    gap: 10px;
  }

  .preceptor-card__meta {
    gap: 6px;
  }

  .preceptor-card__meta span {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .preceptor-card__links {
    gap: 6px;
  }

  .preceptor-card__links a {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 14px;
  }

  .preceptors-footer {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 22px;
    border-radius: 24px;
  }

  .preceptors-footer strong {
    font-size: 14px;
  }
}
























/* SESSÃO 9 - ESTRUTURA CTR / AMBIENTE DE APRENDIZADO */
.structure-section {
  overflow: hidden;
  background: #ffffff;
}

.structure-section::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -170px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.structure-section::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: 80px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.structure-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.structure-bg-effect--orange {
  top: 42%;
  left: 44%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.structure-bg-effect--green {
  right: 12%;
  top: 16%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.structure-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 46px;
}

.structure-content {
  max-width: 560px;
}

.structure-title {
  margin-bottom: 18px;
  color: var(--color-title);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -2.4px;
  font-weight: 800;
}

.structure-text {
  margin-bottom: 24px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.structure-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.structure-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 164, 149, 0.11);
  box-shadow: 0 14px 34px rgba(8, 16, 24, 0.06);
}

.structure-point i {
  margin-top: 2px;
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.structure-point span {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.structure-cta {
  display: flex;
}

/* SLIDER DE IMAGENS */
.structure-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 28px 78px rgba(8, 16, 24, 0.14);
}

.structure-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 1s ease,
    visibility 1s ease,
    transform 1s ease;
}

.structure-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.structure-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.structure-visual:hover .structure-slide.is-active img {
  transform: scale(1.07);
}

.structure-visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.05) 0%, rgba(8, 16, 24, 0.48) 100%),
    radial-gradient(circle at 20% 20%, rgba(225, 109, 0, 0.18) 0%, transparent 42%);
  pointer-events: none;
}

.structure-visual__badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(8, 16, 24, 0.18);
}

.structure-visual__badge i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-white);
  background: var(--gradient-main);
  font-size: 22px;
  flex-shrink: 0;
}

.structure-visual__badge strong,
.structure-visual__badge span {
  display: block;
}

.structure-visual__badge strong {
  margin-bottom: 4px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.structure-visual__badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.structure-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.structure-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition:
    width 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.structure-dot.is-active {
  width: 38px;
  background: var(--gradient-main);
  box-shadow:
    0 10px 22px rgba(225, 109, 0, 0.28),
    0 0 22px rgba(21, 164, 149, 0.24);
}

/* CARDS */
.structure-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.structure-card {
  min-height: 205px;
  padding: 24px 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.07), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.structure-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 109, 0, 0.22);
  box-shadow: 0 26px 62px rgba(8, 16, 24, 0.12);
}

.structure-card--highlight {
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.14), transparent 38%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(225, 109, 0, 0.2);
}

.structure-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 22px;
}

.structure-card h3 {
  margin-bottom: 10px;
  color: var(--color-title);
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.7px;
  font-weight: 800;
}

.structure-card p {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 300;
}

/* RESPONSIVO DA SESSÃO 9 */
@media (max-width: 1180px) {
  .structure-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .structure-content {
    max-width: 820px;
  }

  .structure-visual {
    min-height: 460px;
  }

  .structure-slide img {
    min-height: 460px;
  }

  .structure-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .structure-card {
    min-height: 190px;
  }
}

@media (max-width: 992px) {
  .structure-title {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .structure-text {
    font-size: 15px;
  }

  .structure-visual {
    min-height: 400px;
  }

  .structure-slide img {
    min-height: 400px;
  }

  .structure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .structure-title {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .structure-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .structure-cta,
  .structure-cta .btn {
    width: 100%;
  }

  .structure-point {
    padding: 14px;
  }

  .structure-point span {
    font-size: 13px;
  }

  .structure-visual {
    min-height: 320px;
    border-radius: 26px;
  }

  .structure-slide img {
    min-height: 320px;
  }

  .structure-visual__badge {
    left: 18px;
    right: 18px;
    bottom: 54px;
    padding: 16px;
    border-radius: 20px;
  }

  .structure-visual__badge i {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .structure-visual__badge strong {
    font-size: 16px;
  }

  .structure-visual__badge span {
    font-size: 12px;
  }

  .structure-dots {
    bottom: 20px;
  }

  .structure-grid {
    grid-template-columns: 1fr;
  }

  .structure-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .structure-card h3 {
    font-size: 18px;
  }

  .structure-card p {
    font-size: 14px;
  }
}

























/* SESSÃO - PRELETOR DO CURSO */
.speaker-section {
  overflow: hidden;
  background: #ffffff;
}

.speaker-section::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.speaker-section::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: 70px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.speaker-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.speaker-bg-effect--orange {
  top: 42%;
  left: 40%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.speaker-bg-effect--green {
  right: 12%;
  top: 14%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.speaker-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 58px;
}

.speaker-visual {
  position: relative;
}

.speaker-photo-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.12), transparent 38%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 164, 149, 0.14);
  box-shadow: 0 30px 82px rgba(8, 16, 24, 0.14);
}

.speaker-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.00) 38%, rgba(8, 16, 24, 0.42) 100%),
    radial-gradient(circle at 22% 18%, rgba(225, 109, 0, 0.16), transparent 38%);
  pointer-events: none;
}

.speaker-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s ease;
}

.speaker-photo-card:hover img {
  transform: scale(1.06);
}

.speaker-photo-card__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow:
    0 18px 38px rgba(225, 109, 0, 0.28),
    0 0 28px rgba(21, 164, 149, 0.20);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.speaker-photo-card__badge i {
  color: #ffffff;
  font-size: 16px;
}

.speaker-signature-card {
  position: absolute;
  right: -26px;
  top: 42px;
  z-index: 3;
  width: 190px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 164, 149, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 58px rgba(8, 16, 24, 0.14);
}

.speaker-signature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-title);
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.8px;
  font-weight: 600;
}

.speaker-signature-card strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--gradient-main);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.speaker-content {
  max-width: 760px;
}

.speaker-title {
  margin-bottom: 22px;
  color: var(--color-title);
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -3px;
  font-weight: 800;
}

.speaker-text {
  max-width: 700px;
  margin-bottom: 26px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 300;
}

.speaker-specialty {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 620px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 16px 42px rgba(8, 16, 24, 0.07);
}

.speaker-specialty > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 16px 34px rgba(225, 109, 0, 0.20);
  font-size: 24px;
  flex-shrink: 0;
}

.speaker-specialty span,
.speaker-specialty strong {
  display: block;
}

.speaker-specialty span {
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.speaker-specialty strong {
  color: var(--color-title);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.6px;
  font-weight: 800;
}

.speaker-credentials {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.speaker-credential {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 164, 149, 0.11);
  box-shadow: 0 14px 34px rgba(8, 16, 24, 0.055);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.speaker-credential:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 109, 0, 0.18);
  box-shadow: 0 18px 42px rgba(8, 16, 24, 0.08);
}

.speaker-credential i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 17px;
  flex-shrink: 0;
}

.speaker-credential p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
}

.speaker-actions {
  display: flex;
}

/* RESPONSIVO - PRELETOR DO CURSO */
@media (max-width: 1180px) {
  .speaker-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .speaker-visual {
    max-width: 680px;
  }

  .speaker-photo-card {
    min-height: 560px;
  }

  .speaker-photo-card img {
    min-height: 560px;
  }

  .speaker-signature-card {
    right: 24px;
  }

  .speaker-content {
    max-width: 860px;
  }
}

@media (max-width: 992px) {
  .speaker-title {
    font-size: 42px;
    letter-spacing: -2.2px;
  }

  .speaker-text {
    font-size: 16px;
  }

  .speaker-specialty strong {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .speaker-photo-card {
    min-height: 420px;
    border-radius: 28px;
  }

  .speaker-photo-card img {
    min-height: 420px;
  }

  .speaker-photo-card__badge {
    left: 18px;
    bottom: 18px;
    min-height: 44px;
    padding: 12px 15px;
    font-size: 13px;
  }

  .speaker-signature-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    border-radius: 24px;
  }

  .speaker-signature-card span {
    font-size: 20px;
  }

  .speaker-title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.6px;
  }

  .speaker-text {
    font-size: 15px;
    line-height: 1.72;
  }

  .speaker-specialty {
    align-items: flex-start;
    padding: 16px;
    border-radius: 22px;
  }

  .speaker-specialty > i {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .speaker-specialty strong {
    font-size: 16px;
  }

  .speaker-credential {
    padding: 14px;
  }

  .speaker-credential p {
    font-size: 14px;
  }

  .speaker-actions,
  .speaker-actions .btn {
    width: 100%;
  }
}




































/* SESSÃO 10 - OFERTA / INSCRIÇÃO */
.offer-section {
  position: relative;
  overflow: hidden;
  background: #e16d00;
  color: #ffffff;
}

.offer-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.offer-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.28) 0%, transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.offer-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.offer-bg-effect--light {
  top: 38%;
  left: 42%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  filter: blur(16px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.offer-bg-effect--green {
  top: 12%;
  right: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.18) 0%, transparent 70%);
  filter: blur(16px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.offer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 48px;
}

.offer-content {
  max-width: 740px;
}

.offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.offer-eyebrow i {
  color: #edb414;
  font-size: 16px;
}

.offer-title {
  max-width: 820px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -3.6px;
  font-weight: 800;
}

.offer-text {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.offer-actions {
  display: flex;
}

.offer-btn {
  min-width: 270px;
  min-height: 62px;
  padding: 16px 30px;
  color: #e16d00;
  background: #ffffff;
  box-shadow:
    0 22px 48px rgba(8, 16, 24, 0.18),
    0 0 34px rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 800;
}

.offer-btn:hover,
.offer-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #111827 0%, #15a495 100%);
}

/* CARD DA OFERTA */
.offer-card {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 78px rgba(8, 16, 24, 0.22);
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0.05),
    rgba(21, 164, 149, 0.32)
  );
  opacity: 0.72;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.offer-card__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(21, 164, 149, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -1.3px;
  font-weight: 800;
}

.offer-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 300;
}

.offer-card__items {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.offer-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-card__item i {
  color: #edb414;
  font-size: 17px;
  flex-shrink: 0;
}

.offer-card__item span {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.offer-card__btn {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  color: #17202c;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 16, 24, 0.18);
  font-size: 15px;
  font-weight: 800;
}

.offer-card__btn:hover,
.offer-card__btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #111827 0%, #15a495 100%);
}

/* LINHA DE DECISÃO */
.offer-decision {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.offer-decision__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(8, 16, 24, 0.10);
}

.offer-decision__item i {
  color: #edb414;
  font-size: 17px;
  flex-shrink: 0;
}

.offer-decision__item span {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

/* RESPONSIVO DA SESSÃO 10 */
@media (max-width: 1180px) {
  .offer-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .offer-content {
    max-width: 860px;
  }

  .offer-card {
    max-width: 620px;
  }

  .offer-decision {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .offer-title {
    font-size: 44px;
    letter-spacing: -2.4px;
  }

  .offer-text {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .offer-eyebrow {
    font-size: 12px;
    line-height: 1.45;
  }

  .offer-title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.6px;
  }

  .offer-text {
    font-size: 15px;
    line-height: 1.72;
  }

  .offer-actions,
  .offer-actions .btn {
    width: 100%;
  }

  .offer-btn {
    min-width: 100%;
    font-size: 15px;
  }

  .offer-card {
    padding: 24px;
    border-radius: 26px;
  }

  .offer-card h3 {
    font-size: 24px;
  }

  .offer-card p {
    font-size: 14px;
  }

  .offer-card__item span {
    font-size: 13px;
  }

  .offer-decision {
    grid-template-columns: 1fr;
  }

  .offer-decision__item {
    min-height: auto;
  }

  .offer-decision__item span {
    font-size: 13px;
  }
}

























/* SESSÃO 11 - PERGUNTAS FREQUENTES */
.faq-section {
  overflow: hidden;
  background: #ffffff;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.07) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.faq-section::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: 80px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.06) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.faq-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.faq-bg-effect--orange {
  top: 42%;
  left: 38%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.faq-bg-effect--green {
  right: 12%;
  top: 16%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(21, 164, 149, 0.05) 0%, transparent 70%);
  filter: blur(14px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.faq-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 54px;
}

.faq-content {
  max-width: 560px;
}

.faq-title {
  margin-bottom: 18px;
  color: var(--color-title);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -3.6px;
  font-weight: 800;
}

.faq-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-text {
  margin-bottom: 30px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 300;
}

/* CARD DE APOIO */
.faq-support-card {
  position: relative;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.10), transparent 36%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 26px 70px rgba(8, 16, 24, 0.10);
  overflow: hidden;
}

.faq-support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-main);
  opacity: 0.18;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.faq-support-card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 16px 34px rgba(225, 109, 0, 0.22);
  font-size: 24px;
}

.faq-support-card > span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 350px;
  margin-bottom: 18px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -1.6px;
  font-weight: 800;
}

.faq-support-card h3 {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-bottom: 14px;
  color: var(--color-title);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.4px;
  font-weight: 800;
}

.faq-support-card p {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin-bottom: 26px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

.faq-support-card__btn {
  position: relative;
  z-index: 1;
  min-width: 250px;
  min-height: 58px;
  padding: 16px 26px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-cta);
  font-size: 15px;
  font-weight: 800;
}

/* ACCORDION FAQ */
.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion__item {
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(21, 164, 149, 0.055), transparent 36%),
    radial-gradient(circle at bottom right, rgba(225, 109, 0, 0.045), transparent 34%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 164, 149, 0.12);
  box-shadow: 0 18px 46px rgba(8, 16, 24, 0.08);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-accordion__item:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 109, 0, 0.20);
  box-shadow: 0 24px 58px rgba(8, 16, 24, 0.11);
}

.faq-accordion__item.is-open {
  border-color: rgba(225, 109, 0, 0.24);
  box-shadow: 0 24px 62px rgba(8, 16, 24, 0.12);
}

.faq-accordion__button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--color-title);
  cursor: pointer;
  text-align: left;
}

.faq-accordion__button span {
  color: var(--color-title);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.faq-accordion__button i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-primary);
  background: rgba(225, 109, 0, 0.08);
  font-size: 16px;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.faq-accordion__item.is-open .faq-accordion__button i {
  transform: rotate(45deg);
  color: #ffffff;
  background: var(--gradient-main);
}

.faq-accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq-accordion__inner {
  padding: 0 24px 24px;
}

.faq-accordion__inner p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

/* RESPONSIVO DA SESSÃO 11 */
@media (max-width: 1180px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-content {
    max-width: 820px;
  }

  .faq-support-card {
    max-width: 620px;
  }
}

@media (max-width: 992px) {
  .faq-title {
    font-size: 46px;
    letter-spacing: -2.4px;
  }

  .faq-text {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .faq-title {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.8px;
  }

  .faq-text {
    font-size: 15px;
    line-height: 1.72;
  }

  .faq-support-card {
    padding: 24px;
    border-radius: 26px;
  }

  .faq-support-card__icon {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 18px;
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .faq-support-card > span {
    font-size: 28px;
    letter-spacing: -1.2px;
  }

  .faq-support-card h3 {
    font-size: 16px;
  }

  .faq-support-card p {
    font-size: 14px;
  }

  .faq-support-card__btn,
  .faq-support-card .btn {
    width: 100%;
  }

  .faq-accordion__button {
    min-height: 70px;
    padding: 18px;
  }

  .faq-accordion__button span {
    font-size: 15px;
  }

  .faq-accordion__button i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .faq-accordion__inner {
    padding: 0 18px 20px;
  }

  .faq-accordion__inner p {
    font-size: 14px;
  }
}






















/* SESSÃO 12 - RODAPÉ / CONTATO FINAL */
.footer-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 34px;
  background: #15a495;
  color: #ffffff;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.25) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

.footer-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.footer-bg-effect {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer-bg-effect--orange {
  top: 38%;
  left: 46%;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(225, 109, 0, 0.16) 0%, transparent 70%);
  filter: blur(16px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.footer-bg-effect--light {
  top: 12%;
  right: 18%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  filter: blur(16px);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.footer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 0.72fr);
  gap: 54px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.footer-logo img {
  max-width: 200px;
  width: auto;
  height: auto;
}

.footer-brand p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 300;
}

.footer-column h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-weight: 800;
}

.footer-list {
  display: grid;
  gap: 16px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.footer-list i {
  margin-top: 3px;
  color: #ffffff;
  font-size: 17px;
  flex-shrink: 0;
}

.footer-list a {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease,
    opacity 0.35s ease;
}

.footer-list a::after,
.footer-bottom__links a::after,
.footer-credit a::after,
.footer-support p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: width 0.35s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.footer-bottom__links a:hover,
.footer-bottom__links a:focus-visible,
.footer-credit a:hover,
.footer-credit a:focus-visible,
.footer-support p a:hover,
.footer-support p a:focus-visible {
  color: #ffffff;
  opacity: 1;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 22px rgba(237, 180, 20, 0.35);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  transform: translateX(5px);
}

.footer-list a:hover::after,
.footer-list a:focus-visible::after,
.footer-bottom__links a:hover::after,
.footer-bottom__links a:focus-visible::after,
.footer-credit a:hover::after,
.footer-credit a:focus-visible::after,
.footer-support p a:hover::after,
.footer-support p a:focus-visible::after {
  width: 100%;
}

/* BOTÕES DO RODAPÉ - MESMO ESTILO DO BOTÃO DO NAVBAR */
.footer-section .footer-brand__btn,
.footer-section .footer-support__cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-cta);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.footer-section .footer-brand__btn::after,
.footer-section .footer-support__cta::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 34%;
  height: 360%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: rotate(18deg);
  transition: transform 0.72s ease;
  z-index: -1;
}

.footer-section .footer-brand__btn:hover,
.footer-section .footer-brand__btn:focus-visible,
.footer-section .footer-support__cta:hover,
.footer-section .footer-support__cta:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 22px 46px rgba(225, 109, 0, 0.28),
    0 0 36px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(21, 164, 149, 0.18);
  text-shadow: none;
}

.footer-section .footer-brand__btn:hover::after,
.footer-section .footer-brand__btn:focus-visible::after,
.footer-section .footer-support__cta:hover::after,
.footer-section .footer-support__cta:focus-visible::after {
  transform: translateX(420%) rotate(18deg);
}

.footer-section .footer-brand__btn {
  min-height: 56px;
  padding: 15px 24px;
  font-size: 15px;
}

.footer-section .footer-support__cta {
  min-height: 52px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1;
}

/* FAIXA CENTRAL */
.footer-support {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  padding: 24px 28px;
  border-radius: 28px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 58px rgba(8, 16, 24, 0.13);
}

.footer-support p {
  color: rgba(255, 255, 255, 0.90);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.footer-support p a {
  position: relative;
  color: #ffffff;
  font-weight: 800;
}

/* BASE DO RODAPÉ */
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  transition:
    text-shadow 0.35s ease,
    opacity 0.35s ease;
}

.footer-credit {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  text-align: center;
}

.footer-credit p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.footer-credit span {
  color: #ffffff;
}

.footer-credit strong {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.50);
}

.footer-credit a {
  position: relative;
  color: #ffffff;
  font-weight: 800;
  transition:
    text-shadow 0.35s ease,
    opacity 0.35s ease;
}

/* RESPONSIVO DA SESSÃO 12 */
@media (max-width: 1180px) {
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-support {
    grid-template-columns: 1fr;
  }

  .footer-support__cta {
    width: fit-content;
  }
}

@media (max-width: 992px) {
  .footer-section {
    padding: 76px 0 34px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .footer-section {
    padding: 70px 0 30px;
  }

  .footer-logo img {
    max-width: 170px;
  }

  .footer-brand p {
    font-size: 15px;
    line-height: 1.72;
  }

  .footer-brand__btn,
  .footer-brand .btn {
    width: 100%;
  }

  .footer-column h3 {
    font-size: 19px;
  }

  .footer-list li,
  .footer-list a {
    font-size: 14px;
  }

  .footer-support {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-support p {
    font-size: 14px;
  }

  .footer-support__cta {
    width: 100%;
  }

  .footer-bottom__links {
    gap: 14px;
  }

  .footer-bottom p,
  .footer-bottom__links a,
  .footer-credit p {
    font-size: 13px;
  }
}































/* POPUP / MODAL - LGPD E POLÍTICA DE PRIVACIDADE */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 24, 0.68);
  backdrop-filter: blur(10px);
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(82vh, 760px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(225, 109, 0, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(21, 164, 149, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(21, 164, 149, 0.16);
  box-shadow:
    0 34px 90px rgba(8, 16, 24, 0.32),
    0 0 42px rgba(225, 109, 0, 0.10);
  transform: translateY(18px) scale(0.98);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.legal-modal.is-open .legal-modal__dialog {
  transform: translateY(0) scale(1);
}

.legal-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 14px 30px rgba(225, 109, 0, 0.24);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  transform: translateY(-2px) rotate(4deg);
  box-shadow:
    0 18px 42px rgba(225, 109, 0, 0.30),
    0 0 24px rgba(21, 164, 149, 0.16);
}

.legal-modal__close i {
  font-size: 18px;
}

.legal-modal__content {
  display: none;
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: 46px 52px 48px;
  scrollbar-width: thin;
  scrollbar-color: rgba(225, 109, 0, 0.45) rgba(21, 164, 149, 0.08);
}

.legal-modal__content.is-active {
  display: block;
}

.legal-modal__content::-webkit-scrollbar {
  width: 9px;
}

.legal-modal__content::-webkit-scrollbar-track {
  background: rgba(21, 164, 149, 0.08);
}

.legal-modal__content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(225, 109, 0, 0.45);
}

.legal-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--color-secondary);
  background: rgba(21, 164, 149, 0.08);
  border: 1px solid rgba(21, 164, 149, 0.14);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.legal-modal__eyebrow i {
  color: var(--color-primary);
  font-size: 16px;
}

.legal-modal__content h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--color-title);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-modal__content p {
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.78;
  font-weight: 300;
}

.legal-modal__content p strong {
  color: var(--color-title);
  font-weight: 800;
}

.legal-modal__content ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 24px;
}

.legal-modal__content li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 300;
}

.legal-modal__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient-main);
}

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

/* RESPONSIVO DO MODAL */
@media (max-width: 640px) {
  .legal-modal {
    padding: 14px;
  }

  .legal-modal__dialog {
    width: 100%;
    max-height: 86vh;
    border-radius: 26px;
  }

  .legal-modal__content {
    max-height: 86vh;
    padding: 34px 24px 34px;
  }

  .legal-modal__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .legal-modal__eyebrow {
    max-width: calc(100% - 54px);
    font-size: 12px;
  }

  .legal-modal__content h2 {
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -1.1px;
  }

  .legal-modal__content p,
  .legal-modal__content li {
    font-size: 14px;
    line-height: 1.72;
  }
}





















/* BOTÃO FLUTUANTE WHATSAPP */
.ctr-whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 9999;
  isolation: isolate;
}

.ctr-whatsapp-fixed__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #e16d00 0%,
    #15a495 36%,
    #edb414 70%,
    #e8654a 100%
  );
  opacity: 0.45;
  filter: blur(4px);
  animation: ctrWhatsappPulse 2s ease-out infinite;
  pointer-events: none;
}

.ctr-whatsapp-fixed__pulse--delay {
  animation-delay: 1s;
}

.ctr-whatsapp-fixed__button {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #e16d00 0%,
    #15a495 36%,
    #edb414 70%,
    #e8654a 100%
  );
  box-shadow:
    0 18px 34px rgba(225, 109, 0, 0.28),
    0 0 22px rgba(21, 164, 149, 0.24),
    0 0 44px rgba(237, 180, 20, 0.18);
  animation: ctrWhatsappFloat 2.4s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.ctr-whatsapp-fixed__button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
}

.ctr-whatsapp-fixed__button svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
}

.ctr-whatsapp-fixed:hover .ctr-whatsapp-fixed__button,
.ctr-whatsapp-fixed:focus-visible .ctr-whatsapp-fixed__button {
  transform: scale(1.08);
  box-shadow:
    0 22px 44px rgba(225, 109, 0, 0.34),
    0 0 28px rgba(21, 164, 149, 0.28),
    0 0 52px rgba(237, 180, 20, 0.22);
  filter: brightness(1.04);
}

@keyframes ctrWhatsappPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.22);
    opacity: 0;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes ctrWhatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* RESPONSIVO DO BOTÃO WHATSAPP */
@media (max-width: 768px) {
  .ctr-whatsapp-fixed {
    right: 16px;
    bottom: 16px;
    width: 68px;
    height: 68px;
  }

  .ctr-whatsapp-fixed__button {
    width: 68px;
    height: 68px;
  }

  .ctr-whatsapp-fixed__button svg {
    width: 30px;
    height: 30px;
  }
}













/* SCROLLBAR PERSONALIZADA - PADRÃO CTR EDUCACIONAL */
:root {
  --scrollbar-size: 16px; /* ESPESSURA DA BARRA DE SCROLL */
  --scrollbar-radius: 999px;
}

/* Firefox */
html {
  scrollbar-width: auto;
  scrollbar-color: #e16d00 rgba(21, 164, 149, 0.10);
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background:
    radial-gradient(circle, rgba(21, 164, 149, 0.10) 0%, transparent 70%),
    #ffffff;
  border-radius: var(--scrollbar-radius);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  border-radius: var(--scrollbar-radius);
  background: var(--gradient-main);
  border: 3px solid #ffffff;
  box-shadow:
    0 0 14px rgba(225, 109, 0, 0.28),
    0 0 18px rgba(21, 164, 149, 0.22);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #e16d00 0%,
    #edb414 42%,
    #15a495 100%
  );
  box-shadow:
    0 0 18px rgba(225, 109, 0, 0.38),
    0 0 24px rgba(21, 164, 149, 0.30);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: #ffffff;
}







































