@font-face {
  font-family: "Konthen";
  src: url("../fonts/Konthen.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-green-dark: #1a4a3a;
  --color-green-mid: #2d7a5e;
  --color-green-light: #4aad85;
  --color-green-pale: #a8dfc7;
  --color-cream: #f5f2eb;
  --color-white: #ffffff;
  --color-blue-accent: #b8d8e8;
  --color-ink: #0f2a20;
  --font-display: "Konthen", cursive;
  --font-ui: "Nunito", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --section-padding: 120px 48px;
  --section-padding-mobile: 72px 20px;
  --content-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-ink);
  overflow-x: hidden;
  cursor: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}

/* ---------------------------------------------------------
   CURSOR (Desktop Only)
   --------------------------------------------------------- */

.cursor {
  width: 12px;
  height: 12px;
  background: var(--color-green-mid);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s ease,
    background var(--transition-fast);
  will-change: left, top;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-green-mid);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s ease,
    height 0.35s ease,
    border-color var(--transition-fast),
    opacity var(--transition-base);
  will-change: left, top;
}
body.cursor-on-dark .cursor {
  background: var(--color-cream);
}
body.cursor-on-dark .cursor-ring {
  border-color: var(--color-cream);
}
.cursor.on-hover {
  transform: translate(-50%, -50%) scale(1.8);
}
.cursor-ring.on-hover {
  width: 52px;
  height: 52px;
  opacity: 0.6;
}
a,
button,
[role="button"],
.solution-card,
.team-card,
.test-card,
.step,
label,
select,
input {
  cursor: none !important;
}

/* ---------------------------------------------------------
   NOISE OVERLAY
   --------------------------------------------------------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../img/utils/noise.svg");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 242, 235, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(26, 74, 58, 0.12);
  transition:
    padding var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}
.header.scrolled {
  padding: 12px 48px;
  background: rgba(245, 242, 235, 0.97);
  box-shadow: 0 4px 30px rgba(26, 74, 58, 0.08);
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__mascot {
  width: 42px;
  height: 42px;
  animation: bobHead 3s ease-in-out infinite;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-green-dark);
  letter-spacing: 1px;
  line-height: 1;
}
.logo__text span {
  color: var(--color-green-light);
}

/* Nav Desktop */

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-green-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green-light);
  transition: width var(--transition-base);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__cta {
  background: var(--color-green-dark);
  color: var(--color-cream) !important;
  padding: 10px 24px;
  border-radius: 2px;
  transition:
    background var(--transition-base),
    transform var(--transition-fast);
}
.nav__cta:hover {
  background: var(--color-green-mid) !important;
  transform: translateY(-2px);
}
.nav__cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: none !important;
  z-index: 600;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--color-green-dark);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-fast);
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* Drawer Mobile */

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--color-cream);
  z-index: 550;
  padding: 100px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(15, 42, 32, 0.12);
}
.nav-drawer.is-open {
  transform: translateX(0);
}
.nav-drawer__link {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-green-dark);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 74, 58, 0.08);
  transition: color var(--transition-fast);
}
.nav-drawer__link:hover {
  color: var(--color-green-mid);
}
.nav-drawer__link--cta {
  margin-top: 20px;
  background: var(--color-green-dark);
  color: var(--color-cream) !important;
  padding: 14px 24px;
  border-radius: 2px;
  text-align: center;
  font-size: 1rem;
  border-bottom: none;
}
.nav-drawer__link--cta:hover {
  background: var(--color-green-mid) !important;
}

/* Overlay */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 540;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ---------------------------------------------------------
   ANIMAÇÕES
   --------------------------------------------------------- */

@keyframes bobHead {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px) rotate(1deg);
  }
}
@keyframes ctaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}
@keyframes blobPulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.1) translate(20px, -20px);
  }
  66% {
    transform: scale(0.95) translate(-10px, 10px);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes stripFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes stripFloatFlip {
  0%,
  100% {
    transform: scaleX(-1) translateY(0);
  }
  50% {
    transform: scaleX(-1) translateY(-12px);
  }
}
@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollTrack2 {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ---------------------------------------------------------
   UTILITÁRIOS DE SEÇÃO + BOTÕES
   --------------------------------------------------------- */

section {
  padding: var(--section-padding);
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-green-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  color: var(--color-green-dark);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  color: rgba(15, 42, 32, 0.65);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

.btn-primary {
  display: inline-block;
  background: var(--color-green-dark);
  color: var(--color-cream);
  padding: 16px 36px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-green-mid);
  transition: left var(--transition-base);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary:hover::before {
  left: 0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green-dark);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
}
.btn-outline:hover .arrow {
  transform: translateX(6px);
}
.arrow {
  transition: transform var(--transition-base);
  font-size: 1.2rem;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 74, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 74, 58, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.blob--1 {
  width: 600px;
  height: 600px;
  background: var(--color-green-pale);
  top: -100px;
  right: -100px;
  animation: blobPulse 8s ease-in-out infinite;
}
.blob--2 {
  width: 400px;
  height: 400px;
  background: var(--color-blue-accent);
  bottom: -50px;
  left: 200px;
  animation: blobPulse 10s ease-in-out infinite reverse;
}
.blob--3 {
  width: 200px;
  height: 200px;
  background: var(--color-green-light);
  top: 40%;
  left: -50px;
  animation: blobPulse 6s ease-in-out infinite;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero__content {
  padding-right: 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-dark);
  color: var(--color-cream);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-green-light);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1;
  color: var(--color-green-dark);
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.15s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero__title .accent {
  color: var(--color-green-mid);
}
.hero__title .outline {
  -webkit-text-stroke: 2px var(--color-green-dark);
  color: transparent;
}

.hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(15, 42, 32, 0.7);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeSlideUp 0.8s 0.3s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mascot-stage {
  position: relative;
  width: 420px;
  height: 420px;
}
.mascot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-green-pale),
    var(--color-blue-accent)
  );
  opacity: 0.35;
  animation: ringPulse 4s ease-in-out infinite;
}
.mascot-ring-2 {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px dashed rgba(26, 74, 58, 0.2);
  animation: spinSlow 20s linear infinite;
}
.mascot-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  animation: heroFloat 4s ease-in-out infinite;
}

.chip {
  position: absolute;
  background: var(--color-white);
  border: 1.5px solid rgba(26, 74, 58, 0.15);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-green-dark);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(26, 74, 58, 0.08);
}
.chip--1 {
  top: 40px;
  left: -20px;
  animation: chipFloat 5s 0s ease-in-out infinite;
}
.chip--2 {
  top: 80px;
  right: -30px;
  animation: chipFloat 5s 0.8s ease-in-out infinite;
}
.chip--3 {
  bottom: 80px;
  left: -10px;
  animation: chipFloat 5s 1.6s ease-in-out infinite;
}
.chip--4 {
  bottom: 50px;
  right: -20px;
  animation: chipFloat 5s 2.4s ease-in-out infinite;
}

.scroll-ind {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-ind__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(15, 42, 32, 0.5);
}
.scroll-ind__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--color-green-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------------------------------------------------------
   ABOUT
   --------------------------------------------------------- */

.about {
  background: var(--color-green-dark);
  color: var(--color-cream);
  overflow: hidden;
}
.about__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about .section-title {
  color: var(--color-cream);
}
.about .section-tag {
  color: var(--color-green-pale);
}
.about__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.75);
  margin-bottom: 20px;
  font-weight: 300;
}
.about__text strong {
  color: var(--color-green-pale);
  font-weight: 500;
}
.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about__box-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
.about__mascot {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}
.about__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 235, 0.1);
}
.about__circle--spin {
  inset: 30px;
  border: 1px dashed rgba(168, 223, 199, 0.3);
  animation: spinSlow 15s linear infinite reverse;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 242, 235, 0.1);
}
.stat {
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-green-pale);
  line-height: 1;
}
.stat__label {
  font-size: 0.8rem;
  color: rgba(245, 242, 235, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------------------------------------------------------
   SOLUTIONS
   --------------------------------------------------------- */

.solutions {
  background: var(--color-cream);
}
.solutions__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.solutions__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--color-white);
  border: 1.5px solid rgba(26, 74, 58, 0.1);
  padding: 40px 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color var(--transition-base);
}
.solution-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-green-mid),
    var(--color-green-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 74, 58, 0.1);
  border-color: rgba(26, 74, 58, 0.2);
}
.solution-card:hover::before {
  transform: scaleX(1);
}
.solution-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    var(--color-green-pale),
    var(--color-blue-accent)
  );
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-green-dark);
}
.solution-card__icon ion-icon {
  font-size: 1.6rem;
  color: var(--color-green-dark);
}
.solution-card__num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(26, 74, 58, 0.05);
  line-height: 1;
}
.solution-card__title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}
.solution-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(15, 42, 32, 0.6);
  font-weight: 300;
}

/* ---------------------------------------------------------
   MASCOT STRIP
   --------------------------------------------------------- */

.mascot-strip {
  background: var(--color-green-mid);
  padding: 40px 40px;
  overflow: hidden;
}
.mascot-strip__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mascot-strip__mascot {
  width: 110px;
  flex-shrink: 0;
  animation: stripFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.mascot-strip__mascot--flip {
  animation: stripFloatFlip 3s ease-in-out infinite;
}
.mascot-strip__text {
  text-align: center;
  flex: 1;
}
.mascot-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  color: var(--color-white);
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.mascot-strip__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 300;
}

/* ---------------------------------------------------------
   TEAM
   --------------------------------------------------------- */

.team {
  background: var(--color-cream);
}
.team__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.team__header {
  text-align: center;
  margin-bottom: 72px;
}
.team__header .section-sub {
  margin: 0 auto;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.team-card {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(
    135deg,
    var(--color-green-pale) 0%,
    var(--color-blue-accent) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-card__img--alt {
  background: linear-gradient(
    135deg,
    var(--color-blue-accent) 0%,
    var(--color-green-pale) 100%
  );
}
.team-card__img--alt2 {
  background: linear-gradient(135deg, var(--color-green-pale) 0%, #d4f0e0 100%);
}
.team-card__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 74, 58, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.team-card__mascot {
  width: 160px;
  opacity: 0.5;
  margin-bottom: 20px;
  transition:
    transform var(--transition-slow),
    opacity var(--transition-base);
}
.team-card:hover .team-card__mascot {
  transform: scale(1.08) translateY(-10px);
  opacity: 0.7;
}
.team-card__info {
  background: var(--color-white);
  padding: 24px 28px;
  border: 1.5px solid rgba(26, 74, 58, 0.08);
  border-top: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card__name {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--color-green-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(15, 42, 32, 0.6);
  font-weight: 300;
}

/* ---------------------------------------------------------
   CLIENTS
   --------------------------------------------------------- */

.clients {
  background: var(--color-green-dark);
  padding: 100px 48px;
  overflow: hidden;
}
.clients__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.clients__header {
  text-align: center;
  margin-bottom: 64px;
}
.clients__header .section-title {
  color: var(--color-cream);
}
.clients__header .section-tag {
  color: var(--color-green-pale);
}
.clients__header .section-sub {
  color: rgba(245, 242, 235, 0.6);
  margin: 0 auto;
  text-align: center;
}
.logos-track-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-green-dark), transparent);
}
.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-green-dark), transparent);
}
.logos-track {
  display: flex;
  width: max-content;
  animation: scrollTrack 25s linear infinite;
}
.logos-track-2 {
  animation: scrollTrack2 30s linear infinite;
}
.client-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 242, 235, 0.07);
  border: 1px solid rgba(245, 242, 235, 0.12);
  padding: 16px 32px;
  border-radius: 100px;
  margin-right: 16px;
  white-space: nowrap;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.7);
  letter-spacing: 1px;
}
.client-pill__dot {
  width: 6px;
  height: 6px;
  background: var(--color-green-pale);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------- */

.testimonials {
  background: var(--color-cream);
}
.testimonials__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--color-white);
  border: 1.5px solid rgba(26, 74, 58, 0.08);
  padding: 36px 32px;
  border-radius: 4px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 74, 58, 0.08);
}
.test-card__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-green-pale);
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}
.test-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(15, 42, 32, 0.7);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}
.test-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--color-green-pale),
    var(--color-blue-accent)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-green-dark);
  flex-shrink: 0;
}
.test-card__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-green-dark);
}
.test-card__company {
  font-size: 0.8rem;
  color: rgba(15, 42, 32, 0.5);
}

/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */

.process {
  background: var(--color-green-dark);
  padding: 120px 48px;
}
.process__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.process__header {
  text-align: center;
  margin-bottom: 72px;
}
.process__header .section-title {
  color: var(--color-cream);
}
.process__header .section-tag {
  color: var(--color-green-pale);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 223, 199, 0.3) 20%,
    rgba(168, 223, 199, 0.3) 80%,
    transparent
  );
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step__num {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(168, 223, 199, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-green-pale);
  margin: 0 auto 28px;
  background: var(--color-green-dark);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}
.step:hover .step__num {
  background: var(--color-green-mid);
  border-color: var(--color-green-pale);
  transform: scale(1.1);
}
.step__title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 0.88rem;
  color: rgba(245, 242, 235, 0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cta {
  background: var(--color-cream);
  padding: 120px 48px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  color: rgba(26, 74, 58, 0.03);
  letter-spacing: 10px;
  white-space: nowrap;
  user-select: none;
  z-index: 1;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta__mascot {
  width: 100px;
  margin: 0 auto 32px;
  animation: ctaFloat 3.5s ease-in-out infinite;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  color: var(--color-green-dark);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}
.cta__title .outline {
  -webkit-text-stroke: 2px var(--color-green-dark);
  color: transparent;
}
.cta__sub {
  font-size: 1rem;
  color: rgba(15, 42, 32, 0.6);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.footer {
  background: var(--color-ink);
  padding: 80px 48px 40px;
  color: var(--color-cream);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px;
  color: var(--color-cream);
  text-decoration: none;
}
.footer__logo-text span {
  color: var(--color-green-pale);
}
.footer__desc {
  font-size: 0.88rem;
  color: rgba(245, 242, 235, 0.5);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(245, 242, 235, 0.08);
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 235, 0.6);
  text-decoration: none;
  transition: all var(--transition-base);
}
.social-link ion-icon {
  font-size: 1.15rem;
}
.social-link:hover {
  background: var(--color-green-mid);
  border-color: var(--color-green-mid);
  color: var(--color-white);
  transform: translateY(-3px);
}
.footer__col h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-green-pale);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245, 242, 235, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 300;
  transition: color var(--transition-fast);
}
.footer__col a:hover {
  color: var(--color-cream);
}
.footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy,
.footer__made {
  font-size: 0.82rem;
  color: rgba(245, 242, 235, 0.3);
  font-weight: 300;
}
.footer__made span {
  color: var(--color-green-pale);
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

/* Tablet */

@media (max-width: 1024px) {
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mascot-stage {
    width: 340px;
    height: 340px;
  }

  .mascot-hero {
    width: 220px;
    height: 220px;
  }
}

/* Tablet / Mobile */

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .header {
    padding: 14px 20px;
  }
  .header.scrolled {
    padding: 10px 20px;
  }
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 80px 20px 20px;
    align-items: flex-start;
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .hero__content {
    padding-right: 0;
    text-align: center;
  }
  .hero__desc {
    margin: 0 auto 32px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    margin-top: 40px;
    order: 2;
  }
  .mascot-stage {
    width: 240px;
    height: 240px;
  }
  .mascot-hero {
    width: 180px;
    height: 180px;
  }
  .chip {
    display: none;
  }
  .scroll-ind {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__visual {
    display: none;
  }

  .solutions__header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mascot-strip {
    padding: 40px 40px;
  }
  .mascot-strip__mascot--flip {
    display: none;
  }
  .mascot-strip__inner {
    justify-content: center;
    gap: 24px;
    align-items: center;
  }
  .mascot-strip__text {
    padding-bottom: 0;
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .clients {
    padding: 72px 20px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process {
    padding: 72px 20px;
  }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .process__steps::before {
    display: none;
  }

  .cta {
    padding: 72px 20px;
  }
  .cta__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .footer {
    padding: 60px 20px 32px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Mobile pequeno */

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .solutions__grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }
  .mascot-stage {
    width: 200px;
    height: 200px;
  }
  .mascot-hero {
    width: 150px;
    height: 150px;
  }
}

/* REMOVE CUSTOM CURSOS ON MOBILE */

@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto !important;
  }
  a,
  button,
  [role="button"],
  .solution-card,
  .team-card,
  .test-card,
  .step,
  label,
  select,
  input {
    cursor: auto !important;
  }
}
