/* ==================================================
   CURSOR + RING (padronizado)
================================================== */
body {
  cursor: url("../utils/Pointer.png") 6 6, auto;
}

/* Círculo que segue com atraso */
.mc-ring {
  position: fixed;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;

  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 24%, rgba(249, 29, 46, 0.18) 58%, rgba(226, 95, 250, 0.14) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  box-sizing: border-box;

  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  will-change: left, top, transform, opacity;
  opacity: 0;
  transition: opacity 0.2s ease;

  box-shadow:
    inset 0 10px 18px rgba(255, 255, 255, 0.12),
    0 0 16px rgba(249, 29, 46, 0.32),
    0 0 30px rgba(226, 95, 250, 0.22);
}

/* ==================================================
   SOBRE - POSICIONAMENTO
================================================== */
.about-positioning {
  position: relative;
  padding: 138px 0 120px;
  min-height: 100vh;
  background:
    radial-gradient(980px 460px at 0% 0%, rgba(249, 29, 46, 0.16), transparent 68%),
    radial-gradient(960px 420px at 100% 100%, rgba(226, 95, 250, 0.18), transparent 70%),
    linear-gradient(180deg, #05050a 0%, #070714 55%, #04111a 100%);
  color: #fff;
  overflow: hidden;
}

.about-positioning::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 42%),
    radial-gradient(540px 220px at 72% 8%, rgba(33, 211, 161, 0.11), transparent 76%);
}

.about-positioning__layout {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.about-positioning__intro {
  align-self: center;
  text-align: left;
}

.about-positioning__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ffd9ef;
  background: rgba(249, 29, 46, 0.15);
  border: 1px solid rgba(243, 118, 194, 0.34);
  font-weight: 700;
}

.about-positioning__intro h1 {
  font-size: clamp(2.15rem, 4.5vw, 4.05rem);
  line-height: 1.05;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  text-wrap: balance;
}

.about-positioning__intro h1 span {
  background: linear-gradient(90deg, #f91d2e, #e25ffa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-positioning__lead {
  max-width: 670px;
  font-size: 1.03rem;
  line-height: 1.68;
  color: #ccd3ee;
  margin-bottom: 24px;
}

.about-positioning__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-positioning__signals span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #e5f5ee;
  border: 1px solid rgba(133, 167, 255, 0.24);
  background: linear-gradient(180deg, rgba(13, 24, 36, 0.78), rgba(8, 14, 25, 0.9));
}

.about-positioning__focus {
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(217, 234, 255, 0.24);
  background: linear-gradient(180deg, rgba(11, 16, 34, 0.86), rgba(8, 12, 27, 0.88));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: grid;
  align-content: start;
  gap: 14px;
}

.about-positioning__focus h2 {
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  line-height: 1.2;
  color: #f5f8ff;
}

.about-positioning__focus ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-positioning__focus li {
  position: relative;
  padding-left: 16px;
  font-size: 0.95rem;
  line-height: 1.58;
  color: #c5d0ef;
}

.about-positioning__focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #33d694, #2fd8c4);
  box-shadow: 0 0 12px rgba(47, 216, 196, 0.62);
}

.about-positioning__link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  color: #052013;
  background: linear-gradient(90deg, #33d694, #2fd8c4);
  box-shadow: 0 14px 30px rgba(35, 204, 137, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-positioning__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(35, 204, 137, 0.42);
}

.about-positioning__cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-positioning__card {
  position: relative;
  border-radius: 18px;
  padding: 24px 20px 22px;
  background: linear-gradient(180deg, rgba(11, 10, 30, 0.74), rgba(7, 8, 22, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-positioning__card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f91d2e, #e25ffa, #2fd8c4);
}

.about-positioning__card-tag {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8d6ff;
  margin-bottom: 10px;
}

.about-positioning__card h3 {
  font-size: 1.22rem;
  line-height: 1.32;
  margin-bottom: 10px;
  color: #f9f6ff;
}

.about-positioning__card p {
  font-size: 0.93rem;
  line-height: 1.62;
  color: #c6d1ee;
}

.about-positioning__card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 95, 250, 0.42);
  box-shadow:
    0 28px 46px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(226, 95, 250, 0.16);
}

@media (max-width: 1024px) {
  .about-positioning__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .about-positioning__card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-positioning {
    padding: 118px 0 90px;
  }

  .about-positioning__intro {
    text-align: center;
  }

  .about-positioning__intro h1 {
    font-size: 2.08rem;
    line-height: 1.1;
  }

  .about-positioning__lead {
    font-size: 0.95rem;
    margin: 0 auto 20px;
  }

  .about-positioning__signals {
    justify-content: center;
  }

  .about-positioning__focus {
    padding: 18px 16px;
  }

  .about-positioning__cards {
    grid-template-columns: 1fr;
  }

  .about-positioning__card:last-child {
    grid-column: auto;
  }
}
/* ==================================================
   SOBRE - HERO (Quem Somos)
================================================== */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 124px 0 96px;
  background:
    radial-gradient(1100px 520px at 8% 6%, rgba(34, 197, 94, 0.14), transparent 72%),
    radial-gradient(980px 480px at 100% 96%, rgba(226, 95, 250, 0.18), transparent 74%),
    linear-gradient(180deg, #040914 0%, #050812 46%, #041218 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.42), rgba(5, 5, 10, 0.72)),
    radial-gradient(circle at 12% 12%, rgba(34, 197, 94, 0.16), transparent 46%),
    radial-gradient(circle at 88% 88%, rgba(226, 95, 250, 0.2), transparent 48%),
    url("../img/back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
  opacity: 0.62;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 30px;
  align-items: stretch;
}

.about-hero__text {
  align-self: center;
}

.about-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d8fff2;
  background: rgba(50, 219, 158, 0.2);
  border: 1px solid rgba(82, 234, 176, 0.34);
  font-weight: 700;
}

.about-hero__text h2 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  max-width: 780px;
  text-wrap: balance;
}

.about-hero__highlight {
  background: linear-gradient(90deg, #22c55e, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero__lead {
  max-width: 690px;
  font-size: 1.03rem;
  line-height: 1.68;
  color: #c8d3f0;
  margin-bottom: 22px;
}

.about-hero__pillars {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.about-hero__pillar {
  display: grid;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(133, 167, 255, 0.2);
  background: linear-gradient(180deg, rgba(13, 24, 36, 0.72), rgba(8, 14, 25, 0.9));
  padding: 12px 13px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.about-hero__pillar strong {
  font-size: 0.95rem;
  color: #eaf0ff;
}

.about-hero__pillar span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #bcd0ea;
}

.about-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-btn-primary {
  background: linear-gradient(90deg, #22c55e, #10b981);
  color: #052013;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(34, 197, 94, 0.38);
}

.about-btn-secondary {
  border: 1px solid rgba(143, 170, 255, 0.34);
  color: #d7e3ff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(18, 27, 49, 0.75), rgba(13, 20, 39, 0.88));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 247, 187, 0.58);
}

.about-hero__showcase {
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(217, 234, 255, 0.22);
  background: linear-gradient(180deg, rgba(9, 18, 34, 0.84), rgba(8, 12, 24, 0.9));
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-hero__core {
  position: relative;
  width: min(260px, 72vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06) 32%, rgba(0, 0, 0, 0) 66%),
    radial-gradient(circle, rgba(244, 78, 207, 0.4), rgba(42, 129, 149, 0.18) 56%, rgba(2, 1, 12, 0.06) 100%);
  box-shadow:
    0 0 0 1px rgba(226, 95, 250, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.42),
    inset 0 0 46px rgba(255, 255, 255, 0.14);
}

.about-hero__core img {
  width: 44%;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(211, 77, 245, 0.54));
  z-index: 2;
}

.about-hero__core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.about-hero__core-ring--one {
  inset: 7%;
  border-color: rgba(226, 95, 250, 0.34);
  animation: about-hero-spin 14s linear infinite;
}

.about-hero__core-ring--two {
  inset: 18%;
  border-color: rgba(47, 216, 196, 0.3);
  border-style: dashed;
  animation: about-hero-spin 18s linear infinite reverse;
}

@keyframes about-hero-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-hero__insights {
  display: grid;
  gap: 8px;
}

.about-hero__insight {
  display: grid;
  gap: 3px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 11px;
}

.about-hero__insight strong {
  font-size: 0.88rem;
  color: #f3f7ff;
}

.about-hero__insight span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #bed0ea;
}

.about-hero__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-hero__stack span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  color: #ecf5ff;
  border: 1px solid rgba(147, 186, 255, 0.24);
  background: linear-gradient(180deg, rgba(25, 42, 68, 0.76), rgba(13, 20, 37, 0.92));
}

@media (max-width: 1024px) {
  .about-hero {
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-hero__showcase {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 112px;
    padding-bottom: 74px;
  }

  .about-hero__text {
    text-align: center;
  }

  .about-hero__tag {
    margin: 0 auto 14px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .about-hero__text h2 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  .about-hero__lead {
    font-size: 0.95rem;
    margin: 0 auto 18px;
  }

  .about-hero__actions {
    justify-content: center;
    gap: 10px;
  }

  .about-btn-primary,
  .about-btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 14px;
  }

  .about-hero__showcase {
    padding: 16px;
    border-radius: 16px;
    gap: 12px;
  }

  .about-hero__core {
    width: min(210px, 74vw);
  }

  .about-hero__stack {
    justify-content: center;
  }
}
/* ==================================================
   GUIAS DA JORNADA
================================================== */
.guides-section {
  position: relative;
  min-height: 100vh;
  padding: 126px 0 110px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(920px 430px at 6% 8%, rgba(34, 197, 94, 0.15), transparent 72%),
    radial-gradient(980px 420px at 100% 100%, rgba(226, 95, 250, 0.2), transparent 74%),
    linear-gradient(180deg, #03040b 0%, #05050f 50%, #040a14 100%);
}

.guides-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
}

.guides-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: 40px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(226, 95, 250, 0.22) 0%, rgba(226, 95, 250, 0) 72%);
  filter: blur(3px);
}

.guides-shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.guides-intro {
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(168, 194, 255, 0.22);
  background: linear-gradient(180deg, rgba(8, 16, 32, 0.86), rgba(7, 10, 23, 0.92));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 16px;
  align-content: start;
}

.guides-eyebrow {
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d8fff2;
  border: 1px solid rgba(82, 234, 176, 0.34);
  background: rgba(50, 219, 158, 0.2);
  font-weight: 700;
}

.guides-title {
  font-size: clamp(2.05rem, 4.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0.2px;
  text-wrap: balance;
}

.guides-title span {
  background: linear-gradient(90deg, #f91d2e, #e25ffa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guides-lead {
  color: #c9d6f4;
  font-size: 1rem;
  line-height: 1.67;
}

.guides-proof {
  display: grid;
  gap: 11px;
  margin-top: 4px;
}

.guides-proof__item {
  border-radius: 14px;
  padding: 12px 13px;
  border: 1px solid rgba(140, 173, 255, 0.2);
  background: linear-gradient(180deg, rgba(16, 31, 52, 0.72), rgba(10, 17, 31, 0.9));
  display: grid;
  gap: 4px;
}

.guides-proof__item strong {
  font-size: 0.93rem;
  color: #f5f8ff;
}

.guides-proof__item span {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #bdd0ea;
}

.guides-cta {
  width: fit-content;
  margin-top: 4px;
  text-decoration: none;
  padding: 11px 17px;
  border-radius: 12px;
  font-weight: 800;
  color: #042317;
  background: linear-gradient(90deg, #33d694, #2fd8c4, #22c55e);
  box-shadow: 0 16px 34px rgba(35, 204, 137, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.guides-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(35, 204, 137, 0.42);
}

.guides-team {
  display: grid;
  gap: 16px;
}

.guide-profile {
  --accent: #33d694;
  --accent-soft: rgba(51, 214, 148, 0.24);
  --text-soft: #cde9df;
  --chip-bg: rgba(50, 219, 158, 0.16);
  --portrait-focus: 50% 18%;
  --portrait-focus-mobile: 50% 16%;

  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  gap: 16px;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(182, 205, 255, 0.24);
  background: linear-gradient(180deg, rgba(9, 20, 36, 0.86), rgba(7, 11, 24, 0.94));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.guide-profile::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.9));
}

.guide-profile:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 95, 250, 0.35);
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(226, 95, 250, 0.12);
}

.guide-profile--violet {
  --accent: #e25ffa;
  --accent-soft: rgba(226, 95, 250, 0.22);
  --text-soft: #dfcef0;
  --chip-bg: rgba(226, 95, 250, 0.14);
  --portrait-focus: 50% 16%;
  --portrait-focus-mobile: 50% 12%;
}

.guide-profile__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.guide-profile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 4, 11, 0) 45%, rgba(2, 4, 11, 0.72) 100%);
}

.guide-profile__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: var(--portrait-focus);
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.guide-profile:hover .guide-profile__media img {
  transform: scale(1.03);
  filter: saturate(1.12) contrast(1.08);
}

.guide-profile__signal {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 7px 9px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fffc;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(90deg, rgba(8, 20, 36, 0.9), rgba(8, 22, 40, 0.72));
}

.guide-profile__body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.guide-profile__header {
  display: grid;
  gap: 5px;
}

.guide-profile__kicker {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #f5f8ff;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.guide-profile__header h3 {
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.16;
  color: #f6fbff;
}

.guide-profile__role {
  font-size: 0.92rem;
  line-height: 1.54;
  color: var(--text-soft);
}

.guide-profile__summary {
  font-size: 0.92rem;
  line-height: 1.62;
  color: #c2d2ef;
}

.guide-profile__list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.guide-profile__list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #d2ddf5;
}

.guide-profile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-soft);
}

.guide-profile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-profile__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.74rem;
  color: #edf6ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--chip-bg);
}

/* ==================================================
   TEMA CLARO (SOBRE)
================================================== */
body.theme-light .about-positioning {
  background:
    radial-gradient(980px 460px at 0% 0%, rgba(249, 29, 46, 0.1), transparent 68%),
    radial-gradient(960px 420px at 100% 100%, rgba(226, 95, 250, 0.12), transparent 70%),
    linear-gradient(180deg, #f6f9ff 0%, #f3f6ff 55%, #eef7fb 100%);
  color: #1f3557;
}

body.theme-light .about-positioning::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(540px 220px at 72% 8%, rgba(33, 211, 161, 0.08), transparent 76%);
}

body.theme-light .about-positioning__eyebrow {
  color: #8a2d71;
  background: rgba(249, 29, 46, 0.09);
  border-color: rgba(219, 110, 176, 0.28);
}

body.theme-light .about-positioning__lead {
  color: #4f678b;
}

body.theme-light .about-positioning__signals span {
  color: #245455;
  border-color: rgba(109, 137, 197, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 255, 0.95));
}

body.theme-light .about-positioning__focus {
  border-color: rgba(141, 163, 214, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.96));
  box-shadow:
    0 24px 52px rgba(43, 63, 104, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.theme-light .about-positioning__focus h2 {
  color: #28435f;
}

body.theme-light .about-positioning__focus li {
  color: #4d6587;
}

body.theme-light .about-positioning__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 246, 255, 0.96));
  border-color: rgba(151, 169, 214, 0.24);
  box-shadow:
    0 18px 34px rgba(44, 62, 103, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.theme-light .about-positioning__card-tag {
  color: #5d7196;
}

body.theme-light .about-positioning__card h3 {
  color: #283f62;
}

body.theme-light .about-positioning__card p {
  color: #5a7092;
}

body.theme-light .about-positioning__card:hover {
  border-color: rgba(181, 114, 215, 0.36);
  box-shadow:
    0 24px 40px rgba(44, 62, 103, 0.18),
    0 0 28px rgba(226, 95, 250, 0.1);
}

body.theme-light .about-hero {
  color: #1f3f52;
  background:
    linear-gradient(180deg, rgba(244, 250, 255, 0.86), rgba(237, 245, 252, 0.9)),
    radial-gradient(1100px 520px at 8% 6%, rgba(34, 197, 94, 0.1), transparent 72%),
    radial-gradient(980px 480px at 100% 96%, rgba(226, 95, 250, 0.12), transparent 74%),
    url("../img/Back-White.png");
  background-size: auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.theme-light .about-hero__bg {
  display: none;
}

body.theme-light .about-hero__tag {
  color: #1f7658;
  background: rgba(50, 219, 158, 0.15);
}

body.theme-light .about-hero__lead {
  color: #4e688b;
}

body.theme-light .about-hero__pillar {
  border-color: rgba(126, 153, 210, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 255, 0.96));
  box-shadow: 0 12px 24px rgba(43, 63, 104, 0.12);
}

body.theme-light .about-hero__pillar strong {
  color: #254361;
}

body.theme-light .about-hero__pillar span {
  color: #587395;
}

body.theme-light .about-btn-secondary {
  border-color: rgba(124, 151, 208, 0.34);
  color: #2a4666;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 245, 255, 0.96));
}

body.theme-light .about-btn-secondary:hover {
  border-color: rgba(81, 203, 152, 0.54);
}

body.theme-light .about-hero__showcase {
  border-color: rgba(143, 164, 214, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 244, 255, 0.96));
  box-shadow:
    0 26px 58px rgba(42, 62, 104, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.theme-light .about-hero__insight {
  border-color: rgba(131, 156, 214, 0.2);
  background: rgba(255, 255, 255, 0.66);
}

body.theme-light .about-hero__insight strong {
  color: #254361;
}

body.theme-light .about-hero__insight span {
  color: #587395;
}

body.theme-light .about-hero__stack span {
  color: #245455;
  border-color: rgba(120, 152, 214, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 245, 255, 0.95));
}

body.theme-light .guides-section {
  color: #1e3558;
  background:
    radial-gradient(920px 430px at 6% 8%, rgba(34, 197, 94, 0.1), transparent 72%),
    radial-gradient(980px 420px at 100% 100%, rgba(226, 95, 250, 0.12), transparent 74%),
    linear-gradient(180deg, #f6f8ff 0%, #f3f6ff 50%, #eff6ff 100%);
}

body.theme-light .guides-section::before {
  background:
    linear-gradient(rgba(23, 38, 69, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 38, 69, 0.06) 1px, transparent 1px);
  opacity: 0.18;
}

body.theme-light .guides-section::after {
  background: radial-gradient(circle, rgba(226, 95, 250, 0.14) 0%, rgba(226, 95, 250, 0) 72%);
}

body.theme-light .guides-intro {
  border-color: rgba(150, 170, 218, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.96));
  box-shadow:
    0 24px 52px rgba(44, 62, 103, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.theme-light .guides-eyebrow {
  color: #1f7658;
  border-color: rgba(82, 234, 176, 0.3);
  background: rgba(50, 219, 158, 0.14);
}

body.theme-light .guides-lead {
  color: #50698d;
}

body.theme-light .guides-proof__item {
  border-color: rgba(126, 153, 210, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 245, 255, 0.96));
}

body.theme-light .guides-proof__item strong {
  color: #2a4768;
}

body.theme-light .guides-proof__item span {
  color: #587395;
}

body.theme-light .guide-profile {
  border-color: rgba(149, 168, 215, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 255, 0.96));
  box-shadow:
    0 24px 52px rgba(44, 62, 103, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.theme-light .guide-profile:hover {
  border-color: rgba(181, 114, 215, 0.34);
  box-shadow:
    0 28px 56px rgba(44, 62, 103, 0.16),
    0 0 30px rgba(226, 95, 250, 0.1);
}

body.theme-light .guide-profile__media {
  border-color: rgba(141, 166, 216, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

body.theme-light .guide-profile__media::after {
  background: linear-gradient(180deg, rgba(250, 252, 255, 0) 45%, rgba(34, 49, 80, 0.4) 100%);
}

body.theme-light .guide-profile__kicker {
  color: #2a4666;
  border-color: rgba(114, 139, 198, 0.24);
}

body.theme-light .guide-profile__header h3 {
  color: #284360;
}

body.theme-light .guide-profile__role {
  color: #4f678b;
}

body.theme-light .guide-profile__summary {
  color: #566f92;
}

body.theme-light .guide-profile__list li {
  color: #4f678b;
}

body.theme-light .guide-profile__chips span {
  color: #2a4666;
  border-color: rgba(130, 154, 210, 0.22);
}

body.theme-light .guide-profile__signal {
  color: #f8fffc;
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(90deg, rgba(26, 44, 76, 0.78), rgba(33, 53, 86, 0.66));
}

/* ==================================================
   SOBRE - CONTATO
================================================== */
.about-contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background:
    radial-gradient(900px 380px at 8% 15%, rgba(34, 197, 94, 0.16), transparent 72%),
    radial-gradient(820px 360px at 94% 88%, rgba(226, 95, 250, 0.2), transparent 76%),
    linear-gradient(180deg, #061318 0%, #070814 54%, #04060f 100%);
  color: #fff;
}

.about-contact__shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 30px;
  align-items: stretch;
}

.about-contact__copy {
  align-self: center;
  padding: 6px 0;
}

.about-contact__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d8fff2;
  background: rgba(50, 219, 158, 0.2);
  border: 1px solid rgba(82, 234, 176, 0.34);
  font-weight: 700;
}

.about-contact__copy h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 760px;
}

.about-contact__copy h2 span {
  background: linear-gradient(90deg, #33d694, #2fd8c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-contact__copy p {
  max-width: 640px;
  font-size: 1.03rem;
  line-height: 1.65;
  color: #c8dfd8;
  margin-bottom: 24px;
}

.about-contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-contact__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #e5f5ee;
  border: 1px solid rgba(133, 167, 255, 0.24);
  background: linear-gradient(180deg, rgba(13, 24, 36, 0.78), rgba(8, 14, 25, 0.9));
}

.about-contact__card {
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(217, 234, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(9, 18, 34, 0.88), rgba(8, 12, 24, 0.9));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 14px;
}

.about-contact__card h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.2;
  color: #f5f8ff;
}

.about-contact__card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #bfcceb;
}

.about-contact__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.about-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.about-contact__btn--primary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, #33d694, #2fd8c4, #34e88d);
  color: #042317;
  box-shadow:
    0 16px 34px rgba(35, 204, 137, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.about-contact__btn--secondary {
  border: 1px solid rgba(117, 247, 187, 0.34);
  background: linear-gradient(180deg, rgba(18, 27, 49, 0.75), rgba(13, 20, 39, 0.88));
  color: #e2ebff;
}

.about-contact__btn:hover {
  transform: translateY(-2px);
}

.about-contact__btn--primary:hover {
  box-shadow:
    0 24px 40px rgba(35, 204, 137, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.about-contact__btn--secondary:hover {
  border-color: rgba(117, 247, 187, 0.58);
  filter: brightness(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
  .guides-section {
    padding: 112px 0 92px;
  }

  .guides-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guides-intro {
    padding: 22px 18px;
  }

  .guide-profile {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  }

  .guide-profile__media img {
    min-height: 260px;
  }

  .about-contact__shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-contact__card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .guides-section {
    padding: 92px 0 78px;
  }

  .guides-shell {
    gap: 14px;
  }

  .guides-eyebrow {
    margin: 0 auto;
  }

  .guides-intro {
    text-align: center;
    padding: 18px 15px;
    border-radius: 18px;
  }

  .guides-proof {
    text-align: left;
    gap: 8px;
  }

  .guides-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .guide-profile {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 18px;
    padding: 12px;
  }

  .guide-profile__media {
    border-radius: 14px;
    aspect-ratio: 4 / 5;
  }

  .guide-profile__media img {
    min-height: 0;
    height: 100%;
    object-position: var(--portrait-focus-mobile);
  }

  .guide-profile__signal {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }

  .guide-profile__body {
    gap: 10px;
  }

  .guide-profile__header h3 {
    font-size: 1.4rem;
  }

  .guide-profile__chips {
    justify-content: center;
  }

  .guide-profile__chips span {
    font-size: 0.7rem;
    padding: 6px 9px;
  }

  .about-contact {
    padding: 88px 0 78px;
  }

  .about-contact__shell {
    gap: 16px;
    padding: 0 14px;
  }

  .about-contact__copy {
    text-align: center;
  }

  .about-contact__copy h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .about-contact__copy p {
    font-size: 0.93rem;
    margin: 0 auto 18px;
  }

  .about-contact__chips {
    justify-content: center;
    gap: 7px;
    margin-bottom: 14px;
  }

  .about-contact__chips span {
    font-size: 0.73rem;
    padding: 6px 9px;
  }

  .about-contact__card {
    padding: 18px 16px;
    border-radius: 16px;
    max-width: 100%;
  }

  .about-contact__card h3 {
    font-size: 1.38rem;
    line-height: 1.24;
  }

  .about-contact__card p {
    font-size: 0.88rem;
  }

  .about-contact__btn {
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 13px 14px;
  }
}

/* ==================================================
   HORIZONTAL SLIDES (TRILHO)
================================================== */
.h-scroll {
  height: calc(100svh / 0.9);
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legado */
}

.panel {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.h-scroll::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/* ==================================================
   REVEAL (ISOLADO PARA O SOBRE)
   - evita conflito com outras páginas
================================================== */
.h-scroll .reveal {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.h-scroll .reveal.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==================================================
   BOTÕES LATERAIS
================================================== */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  width: 58px;
  height: 88px;
  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);

  display: grid;
  place-items: center;

  cursor: pointer;
  user-select: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
  opacity: 0.85;
}

.nav-arrow__icon {
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  transition: transform 0.18s ease, filter 0.25s ease;
}

.nav-arrow--left { left: 14px; }
.nav-arrow--right { right: 14px; }

.nav-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.38);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(226, 95, 250, 0.22),
    0 0 45px rgba(34, 197, 94, 0.16);
}

.nav-arrow:hover .nav-arrow__icon {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 10px 22px rgba(255, 255, 255, 0.18));
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.nav-arrow.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  filter: grayscale(1);
  box-shadow: none;
}

#guias,
#contato-sobre {
  overflow-y: auto;
}

@media (max-width: 768px) {
  .nav-arrow {
    width: 52px;
    height: 76px;
    border-radius: 16px;
  }

  .nav-arrow__icon {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .h-scroll {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    scroll-snap-type: none;
  }

  .panel {
    flex: initial;
    width: 100%;
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
  }

  .nav-arrow {
    display: none;
  }

  #guias,
  #contato-sobre {
    overflow-y: visible;
  }

  .h-scroll .reveal {
    transform: translateY(40px);
  }

  .h-scroll .reveal.active {
    transform: translateY(0);
  }
}

/* ==================================================
   SOBRE - OVERRIDE VERTICAL
================================================== */
.h-scroll {
  height: auto !important;
  overflow: visible !important;
  display: block !important;
  scroll-snap-type: none !important;
}

.panel {
  width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  flex: initial !important;
  scroll-snap-align: none !important;
}

.h-scroll .reveal {
  transform: translateY(40px) !important;
}

.h-scroll .reveal.active {
  transform: translateY(0) !important;
}

.nav-arrow {
  display: none !important;
}

#guias,
#contato-sobre {
  overflow-y: visible !important;
}
