@font-face {
  font-family: "Upheavtt";
  src: url("../assets/fonts/upheavtt.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #06110a;
  --bg-soft: #0b1d10;
  --surface: #102718;
  --surface-2: #16341f;
  --line: rgba(137, 226, 84, 0.25);
  --primary: #8ce94f;
  --primary-dark: #52a82d;
  --accent: #f0b842;
  --text: #f5f5e9;
  --muted: #b9c7b9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(80, 168, 45, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #06110a, #07140c 42%, #09180e);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(4, 14, 8, 0.9);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img {
  width: 135px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.site-nav a {
  font-family: "Upheavtt", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.site-nav a:hover {
  color: var(--primary);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  font-family: "Upheavtt", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #071009;
  background: linear-gradient(180deg, #a2fa62, #75d83d);
  box-shadow:
    0 7px 0 #33771e,
    0 15px 35px rgba(95, 211, 52, 0.18);
}
.button-primary:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #33771e;
}
.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 132px 0 92px;
  background:
    linear-gradient(
      90deg,
      rgba(2, 11, 6, 0.98) 0%,
      rgba(2, 11, 6, 0.78) 44%,
      rgba(2, 11, 6, 0.22) 75%,
      rgba(2, 11, 6, 0.68) 100%
    ),
    radial-gradient(
      circle at 68% 30%,
      rgba(152, 255, 95, 0.18),
      transparent 22%
    );
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--bg));
  pointer-events: none;
}

/* =========================================================
   NUVENS ANIMADAS DA SEÇÃO INICIAL
   - Criadas apenas com CSS, sem imagens extras.
   - Para alterar a velocidade, ajuste o tempo em animation.
   - Para esconder uma nuvem, use display: none na classe dela.
   ========================================================= */
.cloud-layer {
  position: absolute;
  inset: 78px 0 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.cloud {
  --cloud-scale: 1;
  --cloud-opacity: 0.72;
  position: absolute;
  left: -260px;
  width: 154px;
  height: 48px;
  border-radius: 999px;
  background: rgba(241, 255, 238, var(--cloud-opacity));
  filter: drop-shadow(0 8px 16px rgba(7, 25, 12, 0.18));
  transform: scale(var(--cloud-scale));
  animation: cloud-flight 32s linear infinite;
  will-change: transform;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 10px;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  left: 25px;
  width: 68px;
  height: 68px;
}

.cloud::after {
  right: 22px;
  width: 88px;
  height: 88px;
}

.cloud-1 {
  top: 7%;
  --cloud-scale: 0.62;
  --cloud-opacity: 0.48;
  animation-duration: 38s;
  animation-delay: -8s;
}
.cloud-2 {
  top: 20%;
  --cloud-scale: 0.88;
  --cloud-opacity: 0.64;
  animation-duration: 31s;
  animation-delay: -22s;
}
.cloud-3 {
  top: 39%;
  --cloud-scale: 0.52;
  --cloud-opacity: 0.38;
  animation-duration: 44s;
  animation-delay: -29s;
}
.cloud-4 {
  top: 56%;
  --cloud-scale: 1.05;
  --cloud-opacity: 0.52;
  animation-duration: 36s;
  animation-delay: -15s;
}
.cloud-5 {
  top: 71%;
  --cloud-scale: 0.7;
  --cloud-opacity: 0.34;
  animation-duration: 49s;
  animation-delay: -36s;
}

@keyframes cloud-flight {
  from {
    transform: translate3d(-280px, 0, 0) scale(var(--cloud-scale));
  }
  to {
    transform: translate3d(calc(100vw + 480px), 0, 0) scale(var(--cloud-scale));
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-family: "Upheavtt", Arial, sans-serif;
  letter-spacing: 1.2px;
  font-size: 15px;
}
.hero h1,
.section h2 {
  font-family: "Upheavtt", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}
.hero h1 strong {
  display: block;
  color: var(--primary);
  font-weight: inherit;
}
.hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8e8d5;
  background: rgba(9, 32, 17, 0.68);
  font-size: 13px;
}
.hero-media {
  position: relative;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 18% -10% -12% 12%;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(124, 226, 77, 0.24),
    transparent 62%
  );
  filter: blur(14px);
}
.hero-media img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 235, 83, 0.32);
  box-shadow: var(--shadow);
}
.tiao-card {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: min(320px, 80%);
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 20, 10, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}
.tiao-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.tiao-card strong {
  color: var(--primary);
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}
.scroll-indicator {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.4);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  50% {
    transform: translate(-50%, 7px);
  }
}

.section {
  position: relative;
  padding: 100px 0;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.section h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
}
.section-heading p,
.panel p,
.contact-content p {
  color: var(--muted);
  line-height: 1.7;
}

.impact-section {
  background: linear-gradient(180deg, var(--bg), #09190e);
}
.growth-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.growth-line::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 9%;
  right: 9%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(140, 233, 79, 0.18),
    var(--primary),
    rgba(140, 233, 79, 0.18)
  );
  box-shadow: 0 0 18px rgba(140, 233, 79, 0.35);
}
.growth-line article {
  position: relative;
  z-index: 2;
  text-align: center;
}
.growth-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #0c2514;
  color: var(--accent);
  font-size: 30px;
  box-shadow: 0 0 26px rgba(140, 233, 79, 0.22);
}
.growth-line strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
}
.growth-line small {
  color: var(--muted);
}

.solution-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 193, 45, 0.1), transparent 38%),
    #07140c;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    160deg,
    rgba(23, 57, 32, 0.9),
    rgba(5, 20, 10, 0.9)
  );
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.feature-card {
  min-height: 270px;
  padding: 26px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 233, 79, 0.62);
}
.feature-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: rgba(140, 233, 79, 0.12);
  color: var(--primary);
  font-family: "Upheavtt", Arial, sans-serif;
}
.feature-card h3,
.journey-stop h3,
.roadmap-item h3 {
  font-family: "Upheavtt", Arial, sans-serif;
  text-transform: uppercase;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.journey-section {
  overflow: hidden;
  background: linear-gradient(180deg, #09180e, #102116);
}
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: url("../assets/images/sobre.png") center/cover no-repeat;
  filter: saturate(0.6);
}
.journey-section .container {
  position: relative;
  z-index: 2;
}
.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 30px;
}
.journey-line {
  position: absolute;
  top: 58px;
  left: 11%;
  right: 11%;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), #d9ff8a);
  box-shadow: 0 0 22px rgba(140, 233, 79, 0.45);
}
.journey-stop {
  position: relative;
  z-index: 2;
  text-align: center;
}
.journey-stop span {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid #d7ffc5;
  background: #15361e;
  color: var(--primary);
  font-family: "Upheavtt", Arial, sans-serif;
  box-shadow: 0 0 22px rgba(140, 233, 79, 0.35);
}
.journey-stop h3 {
  color: var(--primary);
  margin: 0 0 10px;
}
.journey-stop p {
  color: #d7e1d4;
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   PERSONAGENS — grade interativa da Vila Cianor
   ========================================================= */
.characters-section {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(240, 184, 66, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #0b1d10, #07140c);
}
.characters-section .section-heading p {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
}
.characters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.character-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 39, 24, 0.92);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.character-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 233, 79, 0.62);
}
.character-card.is-open {
  border-color: var(--primary);
}
.character-trigger {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 16px 15px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: center;
}
.character-portrait {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #f3edda, #d9cfb4);
}
.character-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  image-rendering: pixelated;
  transition: transform 0.25s ease;
}
.character-card:hover .character-portrait img {
  transform: scale(1.035);
}
.character-name {
  font-family: "Upheavtt", Arial, sans-serif;
  font-size: 21px;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.character-hint {
  color: var(--muted);
  font-size: 12px;
}
.character-trigger[aria-expanded="true"] .character-hint::before {
  content: "− ";
}
.character-trigger[aria-expanded="false"] .character-hint::before {
  content: "+ ";
}
.character-details {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(140, 233, 79, 0.14);
  animation: character-open 0.22s ease both;
}
.character-details[hidden] {
  display: none;
}
.character-details p {
  color: #d8e4d5;
  font-size: 14px;
  line-height: 1.55;
}
.character-details ul {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}
.character-details li {
  position: relative;
  padding-left: 20px;
  color: #e7f1e3;
  font-size: 13px;
}
.character-details li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.character-role {
  margin-top: 16px;
  color: var(--accent) !important;
  font-family: "Upheavtt", Arial, sans-serif;
  text-transform: uppercase;
}
.character-likes {
  margin-bottom: 0;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(140, 233, 79, 0.08);
}
@keyframes character-open {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gameplay-section {
  background: #07130b;
}
.gameplay-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 15px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: #dfe8dc;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary);
  font-weight: 900;
}
.game-window {
  overflow: hidden;
  border: 1px solid rgba(140, 233, 79, 0.42);
  border-radius: var(--radius);
  background: #061009;
  box-shadow: var(--shadow);
}
.game-window-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #102718;
  border-bottom: 1px solid var(--line);
}
.game-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.game-window-bar span:nth-child(2) {
  background: var(--primary);
}
.game-window-bar span:nth-child(3) {
  background: #73b3ff;
}
.game-window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}
.game-window img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.game-caption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 13px;
}

.roadmap-section {
  background: linear-gradient(180deg, #07140c, #0d2013);
}
.roadmap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 16px;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(140, 233, 79, 0.18));
}
.roadmap-item {
  position: relative;
  z-index: 2;
  text-align: center;
}
.roadmap-item span {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background: #102718;
  color: var(--primary);
  font-family: "Upheavtt", Arial, sans-serif;
  font-size: 23px;
}
.roadmap-item small {
  display: block;
  color: var(--primary);
  font-weight: 800;
}
.roadmap-item h3 {
  font-size: 15px;
}
.roadmap-item.done span {
  background: var(--primary);
  color: #07140c;
}
.roadmap-item.current span {
  box-shadow: 0 0 30px rgba(140, 233, 79, 0.55);
}

.partners-section {
  background: #07130b;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.panel {
  padding: 30px;
}
.partner-placeholders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.partner-placeholders span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #dfe8dc;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Upheavtt", Arial, sans-serif;
}
.chat-bubble,
.chat-answer {
  max-width: 85%;
  padding: 14px 16px;
  margin-top: 16px;
  border-radius: 14px;
  line-height: 1.45;
}
.chat-bubble {
  margin-left: auto;
  background: rgba(140, 233, 79, 0.16);
  color: #eaffdf;
}
.chat-answer {
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
}
.chat-note {
  font-size: 12px;
}

.contact-section {
  background:
    radial-gradient(
      circle at 78% 40%,
      rgba(140, 233, 79, 0.13),
      transparent 35%
    ),
    #0a190f;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: start;
}
.contact-benefits {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.contact-benefits span {
  padding-left: 25px;
  position: relative;
  color: #d8e4d5;
}
.contact-benefits span::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 32, 17, 0.9);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #dfe8dc;
  font-size: 14px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 233, 79, 0.1);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #040d07;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-inner img {
  width: 110px;
}
.footer-inner p {
  color: var(--muted);
  font-size: 13px;
  margin-right: auto;
}
.footer-inner a {
  color: var(--primary);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .site-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 20, 12, 0.98);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-grid,
  .gameplay-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 112px;
  }
  .hero-media {
    max-width: 760px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .characters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey-map {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }
  .journey-line {
    display: none;
  }
  .roadmap {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  .roadmap::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }
  .section {
    padding: 72px 0;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-media img {
    min-height: 370px;
    object-fit: cover;
  }
  .tiao-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
  .growth-line,
  .feature-grid,
  .journey-map,
  .roadmap,
  .split-grid {
    grid-template-columns: 1fr;
  }
  .characters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .character-trigger {
    padding: 12px 10px;
  }
  .character-name {
    font-size: 17px;
  }
  .growth-line::before {
    display: none;
  }
  .growth-line article {
    display: grid;
    grid-template-columns: 60px 1fr;
    text-align: left;
    align-items: center;
    column-gap: 15px;
  }
  .growth-icon {
    grid-row: 1/3;
    width: 58px;
    height: 58px;
    margin: 0;
  }
  .partner-placeholders {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner p {
    margin: 0;
  }
}

@media (max-width: 700px) {
  .cloud-layer {
    top: 70px;
    opacity: 0.58;
  }
  .cloud-4,
  .cloud-5 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

/* =========================================================
   AGROAPRENDIZ FUTURE GREEN — identidade tecnológica do site
   ========================================================= */
:root {
  --future-green: #82ff6b;
  --future-mint: #b9ff9f;
  --future-neon: #38ff8b;
  --future-cyan: #5effc6;
  --future-deep: #021008;
  --future-grid: rgba(94, 255, 198, .075);
  --future-glow: 0 0 22px rgba(56, 255, 139, .24), 0 0 58px rgba(56, 255, 139, .08);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--future-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--future-grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 88%);
}
.site-header.is-scrolled {
  background: linear-gradient(90deg, rgba(2, 16, 8, .94), rgba(5, 29, 16, .91), rgba(2, 16, 8, .94));
  border-color: rgba(94, 255, 198, .28);
  box-shadow: 0 12px 42px rgba(0,0,0,.34), inset 0 -1px rgba(130,255,107,.09);
}
.brand img { filter: drop-shadow(0 0 13px rgba(130,255,107,.24)); }
.site-nav a { position: relative; padding: 10px 2px; }
.site-nav a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 2px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--future-neon), transparent);
  box-shadow: 0 0 10px var(--future-neon); transition: left .24s ease, right .24s ease;
}
.site-nav a:hover::after { left: 0; right: 0; }
.button {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 4px 14px 4px 14px;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  text-transform: uppercase;
}
.button::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.32) 43%, transparent 64%);
  transform: translateX(-130%); transition: transform .55s ease;
}
.button:hover::before { transform: translateX(130%); }
.button-primary {
  border: 1px solid rgba(185,255,159,.72);
  background: linear-gradient(135deg, #b9ff78 0%, #63ec62 44%, #29c96f 100%);
  box-shadow: 0 5px 0 #176e3d, 0 0 0 1px rgba(130,255,107,.18), var(--future-glow);
}
.button-primary:hover { box-shadow: 0 7px 0 #176e3d, 0 0 24px rgba(56,255,139,.4), 0 0 70px rgba(56,255,139,.13); }
.button-secondary {
  border: 1px solid rgba(94,255,198,.46);
  background: linear-gradient(135deg, rgba(10,46,27,.72), rgba(3,20,11,.78));
  box-shadow: inset 0 0 24px rgba(56,255,139,.05), 0 0 22px rgba(56,255,139,.07);
}
.button-secondary:hover { border-color: var(--future-neon); box-shadow: inset 0 0 24px rgba(56,255,139,.1), 0 0 24px rgba(56,255,139,.18); }
.hero {
  background:
    linear-gradient(90deg, rgba(1,10,5,.99) 0%, rgba(2,18,9,.88) 45%, rgba(2,18,9,.3) 76%, rgba(1,10,5,.82) 100%),
    radial-gradient(circle at 74% 28%, rgba(56,255,139,.22), transparent 25%),
    linear-gradient(180deg,#03140b,#071f12);
}
.hero::after {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.28;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(143,255,181,.035) 5px);
  mix-blend-mode: screen;
}
.hero-content::before {
  content:"AGRO // APRENDIZ"; display:block; width:max-content; margin-bottom:10px;
  color:rgba(94,255,198,.52); font:700 10px/1 monospace; letter-spacing:.32em;
}
.eyebrow { text-shadow: 0 0 15px rgba(130,255,107,.38); }
.hero h1 strong { color: var(--future-green); text-shadow: 0 0 22px rgba(56,255,139,.23); }
.hero-media img { border:1px solid rgba(94,255,198,.24); box-shadow:0 28px 90px rgba(0,0,0,.46),0 0 45px rgba(56,255,139,.12); }
.tiao-card { border:1px solid rgba(94,255,198,.32)!important; box-shadow:0 16px 50px rgba(0,0,0,.48),0 0 25px rgba(56,255,139,.1)!important; }
.feature-card,.stat-card,.panel,.game-window,.roadmap-item,.journey-stop {
  border-color: rgba(94,255,198,.2)!important;
  box-shadow: inset 0 1px rgba(185,255,159,.04), 0 18px 50px rgba(0,0,0,.22);
}
.feature-card:hover,.stat-card:hover,.panel:hover,.roadmap-item:hover,.journey-stop:hover {
  border-color: rgba(94,255,198,.5)!important;
  box-shadow: inset 0 1px rgba(185,255,159,.08),0 22px 60px rgba(0,0,0,.28),0 0 28px rgba(56,255,139,.08);
}
.section-heading h2 { text-shadow:0 0 28px rgba(56,255,139,.08); }

/* Estrelas em fluxo: reutilizam a lógica de deslocamento horizontal das nuvens. */
.future-sky { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:1; }
.orbital-glow { position:absolute; right:8%; top:12%; width:180px; height:180px; border-radius:50%; border:1px solid rgba(94,255,198,.24); box-shadow:inset 0 0 40px rgba(56,255,139,.08),0 0 80px rgba(56,255,139,.11); animation:orbitalPulse 5.5s ease-in-out infinite; }
.orbital-glow::before,.orbital-glow::after { content:""; position:absolute; inset:18%; border:1px dashed rgba(130,255,107,.25); border-radius:50%; animation:orbitSpin 13s linear infinite; }
.orbital-glow::after { inset:38%; border-style:solid; animation-direction:reverse; animation-duration:8s; }
.star-layer { position:absolute; inset:0; }
.star-layer-far { opacity:.45; filter:blur(.3px); }
.star-layer-near { opacity:.88; }
.stream-star { position:absolute; left:-160px; width:9px; height:9px; transform:rotate(45deg) scale(var(--star-scale)); background:#d9ffd0; box-shadow:0 0 8px #9cff80,0 0 22px rgba(56,255,139,.8); animation:starFlight 32s linear infinite; }
.stream-star::before,.stream-star::after { content:""; position:absolute; left:50%; top:50%; background:linear-gradient(90deg,transparent,rgba(185,255,159,.85),transparent); transform:translate(-50%,-50%); }
.stream-star::before { width:110px; height:1px; }
.stream-star::after { width:1px; height:34px; }
.star-1{top:9%;--star-scale:.7;animation-duration:38s;animation-delay:-8s}.star-2{top:23%;--star-scale:1.05;animation-duration:31s;animation-delay:-22s}.star-3{top:42%;--star-scale:.56;animation-duration:44s;animation-delay:-29s}.star-4{top:59%;--star-scale:1.2;animation-duration:36s;animation-delay:-15s}.star-5{top:73%;--star-scale:.82;animation-duration:49s;animation-delay:-36s}
.constellation { position:absolute; left:-180px; display:flex; gap:22px; animation:constellationFly 25s linear infinite; }
.constellation-1{top:18%;animation-delay:-8s}.constellation-2{top:32%;animation-duration:32s;animation-delay:-21s;transform:scale(.72)}
.constellation i { width:5px;height:5px;border-radius:50%;background:#aaff92;box-shadow:0 0 12px rgba(130,255,107,.9);position:relative; }
.constellation i:not(:last-child)::after { content:"";position:absolute;left:4px;top:2px;width:24px;height:1px;background:rgba(130,255,107,.28);transform:rotate(-12deg);transform-origin:left; }
@keyframes starFlight { from{transform:translate3d(-220px,0,0) rotate(45deg) scale(var(--star-scale))} to{transform:translate3d(calc(100vw + 520px),-45px,0) rotate(225deg) scale(var(--star-scale))} }
@keyframes constellationFly { from{transform:translate3d(-200px,0,0)} to{transform:translate3d(calc(100vw + 400px),-70px,0)} }
@keyframes orbitalPulse { 50%{transform:scale(1.06);opacity:.72} }
@keyframes orbitSpin { to{transform:rotate(360deg)} }

/* Cursor luminoso e resposta visual de clique. */
.agro-cursor-glow { position:fixed; left:0; top:0; width:260px; height:260px; border-radius:50%; pointer-events:none; z-index:9998; opacity:0; transform:translate(-50%,-50%); background:radial-gradient(circle,rgba(56,255,139,.11),rgba(56,255,139,.035) 38%,transparent 70%); transition:opacity .2s ease; mix-blend-mode:screen; }
.agro-click-wave { position:fixed; z-index:9999; width:18px; height:18px; border:1px solid rgba(185,255,159,.95); border-radius:50%; pointer-events:none; transform:translate(-50%,-50%); box-shadow:0 0 18px rgba(56,255,139,.75); animation:agroClickWave .62s ease-out forwards; }
.agro-click-particle { position:fixed; z-index:9999; width:4px;height:4px;border-radius:1px;background:var(--future-neon);pointer-events:none;box-shadow:0 0 10px var(--future-neon);animation:agroParticle .55s ease-out forwards; }
@keyframes agroClickWave { to{width:84px;height:84px;opacity:0;border-width:0} }
@keyframes agroParticle { to{transform:translate(var(--px),var(--py)) rotate(160deg) scale(.2);opacity:0} }
@media (pointer:coarse){.agro-cursor-glow{display:none}}
@media (prefers-reduced-motion:reduce){.stream-star,.constellation,.orbital-glow,.orbital-glow::before,.orbital-glow::after{animation:none!important}.agro-cursor-glow,.agro-click-wave,.agro-click-particle{display:none!important}}
