:root {
  --bg: #eee8dc;
  --bg-2: #fbf6ec;
  --paper: rgba(255, 255, 255, 0.78);
  --paper-strong: rgba(255, 255, 255, 0.94);

  --dark: #0f1319;
  --dark-2: #151b24;
  --dark-3: #202833;

  --text: #111111;
  --muted: #666666;

  --green: #1f6b2a;
  --green-dark: #174f22;
  --green-2: #4f9c43;
  --green-3: #8fcd65;
  --green-neon: #a6ff73;

  --gold: #d6a739;
  --gold-2: #f2ce69;
  --brown: #8a5528;
  --coco: #c48a42;

  --white: #ffffff;

  --shadow: 0 28px 80px rgba(17, 20, 27, 0.18);
  --shadow-soft: 0 18px 40px rgba(17, 20, 27, 0.10);
  --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.28);

  --border-light: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(17, 17, 17, 0.08);

  --container: 1220px;
  --header-h: 86px;

  --ease-premium: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 167, 57, 0.18), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(31, 107, 42, 0.13), transparent 22%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 55%, #e5dfd3);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 30px), var(--container));
  margin: 0 auto;
}

/* SVG SPRITE */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* DECORAÇÕES GLOBAIS */
.site-grain {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  opacity: 0.13;
  background-image: radial-gradient(rgba(0, 0, 0, 0.15) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}

.page-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-3), var(--gold-2));
  box-shadow: 0 0 20px rgba(166, 255, 115, 0.55);
  transform-origin: left center;
}

.site-cursor {
  position: fixed;
  z-index: 998;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(166, 255, 115, 0.55);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: difference;
  transition:
    opacity 0.25s ease,
    width 0.25s ease,
    height 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.site-cursor.active {
  opacity: 1;
}

.site-cursor.hovering {
  width: 56px;
  height: 56px;
  background: rgba(166, 255, 115, 0.10);
  border-color: rgba(242, 206, 105, 0.8);
}

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.70), rgba(8, 12, 16, 0.18) 70%, transparent);
  opacity: 1;
  transition: 0.35s ease;
  pointer-events: none;
}

.header.scrolled {
  background: rgba(15, 19, 25, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.header.scrolled::before {
  opacity: 0;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #ffffff;
  padding: 5px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transition: 0.35s var(--ease-premium);
}

.header.scrolled .brand-logo {
  width: 46px;
  height: 46px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
  transition: 0.35s ease;
}

.header.scrolled .brand-text {
  color: #ffffff;
  text-shadow: none;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1;
}

.brand-text small {
  font-size: 0.74rem;
  opacity: 0.88;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: 0.35s ease;
}

.header.scrolled .nav {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.10);
}

.nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  color: #111111;
  transition: 0.25s ease;
  overflow: hidden;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(31, 107, 42, 0.16), rgba(214, 167, 57, 0.12));
  opacity: 0;
  transform: scale(0.72);
  transition: 0.25s ease;
}

.nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav a:hover {
  color: var(--green-dark);
}

.header.scrolled .nav a {
  color: #ffffff;
}

.header.scrolled .nav a:hover {
  color: #ffffff;
}

.header-cta {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #56bf5b, #7ed56a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(86, 191, 91, 0.22);
  transition: 0.25s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.header-cta::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 40%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: rotate(18deg);
  transition: 0.55s var(--ease-premium);
}

.header-cta:hover::after {
  left: 120%;
}

.header-cta:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--dark);
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.25s ease;
}

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

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

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

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(12, 18, 22, 0.84) 8%, rgba(12, 18, 22, 0.50) 38%, rgba(12, 18, 22, 0.18) 68%),
    radial-gradient(circle at 85% 20%, rgba(142, 213, 82, 0.14), transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(214, 167, 57, 0.14), transparent 18%),
    linear-gradient(135deg, #243123 0%, #6b8740 40%, #b9d46a 100%);
}

.hero-photo-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
  animation: heroPhotoFade 18s infinite;
}

.hero-photo-slide-1 {
  animation-delay: 0s;
}

.hero-photo-slide-2 {
  animation-delay: 6s;
}

.hero-photo-slide-3 {
  animation-delay: 12s;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 16, 0.86) 0%, rgba(8, 12, 16, 0.66) 42%, rgba(8, 12, 16, 0.24) 100%),
    radial-gradient(circle at 72% 40%, rgba(143, 205, 101, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(8, 12, 16, 0.14), rgba(8, 12, 16, 0.62));
  pointer-events: none;
}

@keyframes heroPhotoFade {
  0% {
    opacity: 0;
    transform: scale(1.12);
  }

  8% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: scale(1.02);
  }

  41% {
    opacity: 0;
  }

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10, 14, 18, 0.78) 0%, rgba(10, 14, 18, 0.58) 34%, rgba(10, 14, 18, 0.16) 65%, rgba(10, 14, 18, 0.04) 100%);
}

.hero-gradient,
.hero-orb,
.hero-fiber,
.hero-coco,
.hero-grid-lines {
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.hero-gradient {
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.78;
  animation: gradientFloat 12s ease-in-out infinite alternate;
}

.gradient-one {
  width: 420px;
  height: 420px;
  right: 7%;
  top: 10%;
  background: rgba(143, 205, 101, 0.30);
}

.gradient-two {
  width: 360px;
  height: 360px;
  right: 22%;
  bottom: 12%;
  background: rgba(214, 167, 57, 0.25);
  animation-delay: -4s;
}

.gradient-three {
  width: 260px;
  height: 260px;
  left: 44%;
  top: 18%;
  background: rgba(255, 255, 255, 0.12);
  animation-delay: -6s;
}

@keyframes gradientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-34px, 24px, 0) scale(1.08);
  }
}

.hero-orb {
  border-radius: 999px;
  filter: blur(5px);
  opacity: 0.86;
  animation: floatBubble 8s ease-in-out infinite alternate;
}

.orb-one {
  width: 340px;
  height: 340px;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
}

.orb-two {
  width: 240px;
  height: 240px;
  right: 18%;
  bottom: 16%;
  background: radial-gradient(circle, rgba(214, 167, 57, 0.28), transparent 68%);
  animation-delay: -2s;
}

.orb-three {
  width: 260px;
  height: 260px;
  left: 40%;
  top: 12%;
  background: radial-gradient(circle, rgba(94, 179, 67, 0.20), transparent 68%);
  animation-delay: -3s;
}

.orb-four {
  width: 180px;
  height: 180px;
  right: 32%;
  top: 42%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  animation-delay: -4s;
}

@keyframes floatBubble {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-24px, 18px, 0) scale(1.05);
  }
}

.hero-fiber {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(-18deg);
  animation: fiberDrift 7s ease-in-out infinite alternate;
}

.fiber-one {
  width: 420px;
  right: 10%;
  top: 28%;
}

.fiber-two {
  width: 360px;
  right: 6%;
  top: 42%;
  animation-delay: -2s;
}

.fiber-three {
  width: 300px;
  right: 16%;
  top: 58%;
  animation-delay: -4s;
}

.fiber-four {
  width: 280px;
  right: 24%;
  top: 72%;
  animation-delay: -5s;
}

@keyframes fiberDrift {
  from {
    transform: translateX(0) rotate(-18deg);
    opacity: 0.55;
  }

  to {
    transform: translateX(-30px) rotate(-18deg);
    opacity: 1;
  }
}

.hero-coco {
  border-radius: 42% 58% 48% 52%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.34), transparent 20%),
    linear-gradient(135deg, #8a5528, #c48a42);
  box-shadow: inset -18px -18px 40px rgba(0, 0, 0, 0.12);
  opacity: 0.85;
  animation: cocoMove 7s ease-in-out infinite alternate;
}

.coco-one {
  width: 96px;
  height: 74px;
  right: 24%;
  top: 24%;
}

.coco-two {
  width: 70px;
  height: 56px;
  right: 14%;
  bottom: 32%;
  animation-delay: -2s;
}

.coco-three {
  width: 56px;
  height: 44px;
  right: 34%;
  bottom: 20%;
  animation-delay: -4s;
}

@keyframes cocoMove {
  from {
    transform: translateY(0) rotate(-8deg);
  }

  to {
    transform: translateY(-16px) rotate(7deg);
  }
}

.hero-grid-lines {
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 72% 45%, black 0%, transparent 65%);
}

.hero-container {
  position: relative;
  z-index: 5;
}

.hero-shell {
  min-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(120deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: translateX(-100%);
  animation: heroSheen 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroSheen {
  0%, 45% {
    transform: translateX(-100%);
  }

  70%, 100% {
    transform: translateX(100%);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  color: #ffffff;
  max-width: 760px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(90, 184, 88, 0.14);
  border: 1px solid rgba(126, 214, 106, 0.16);
  color: #9ce977;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag-dark {
  color: var(--green-dark);
  background: rgba(31, 107, 42, 0.10);
  border-color: rgba(31, 107, 42, 0.18);
}

.section-tag.gold {
  color: var(--gold-2);
  background: rgba(214, 167, 57, 0.12);
  border-color: rgba(214, 167, 57, 0.18);
}

.hero-title,
.hero-copy h1 {
  font-size: clamp(2.55rem, 5.15vw, 4.95rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 22px;
  max-width: 880px;
}

.hero-lead {
  font-size: 1.07rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  margin-bottom: 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-120%);
  transition: 0.55s var(--ease-premium);
}

.btn:hover::before {
  transform: translateX(120%);
}

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

.btn-primary {
  background: linear-gradient(135deg, #56bf5b, #7ed56a);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(86, 191, 91, 0.28);
}

.btn-dark {
  background: rgba(10, 14, 18, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

/* TRUST DO HERO - AJUSTADO PARA CONTRASTE */
.hero-trust {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  max-width: 560px;
  padding: 12px 14px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(10, 14, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trust-pulse {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 35%, transparent 36%),
    conic-gradient(var(--green-3), var(--gold-2), var(--green-3));
  box-shadow:
    0 0 0 7px rgba(166, 255, 115, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.18);
  animation: spinSlow 8s linear infinite;
}

.trust-pulse svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.hero-trust p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  font-size: 0.94rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.hero-dashboard {
  border-radius: 30px;
  padding: 24px;
  background: rgba(10, 14, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.20);
  transition: 0.24s ease;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  margin-bottom: 22px;
}

.dashboard-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-3);
  box-shadow: 0 0 0 8px rgba(143, 205, 101, 0.12);
  animation: pulseDot 1.7s ease-in-out infinite;
}

@keyframes pulseDot {
  50% {
    transform: scale(0.74);
    opacity: 0.65;
  }
}

.dashboard-orbit {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto 24px;
  padding: 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(from 90deg, #56bf5b, var(--gold-2), #91da65, #56bf5b);
  animation: orbitSpin 10s linear infinite;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.dashboard-orbit-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  overflow: hidden;
  animation: orbitCounter 10s linear infinite;
}

@keyframes orbitCounter {
  to {
    transform: rotate(-360deg);
  }
}

.orbit-logo {
  width: 92%;
  height: 92%;
  object-fit: contain;
  border-radius: 50%;
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 22px rgba(166, 255, 115, 0.8);
}

.orbit-dot-one {
  top: 12px;
  left: 50%;
}

.orbit-dot-two {
  right: 22px;
  bottom: 44px;
}

.orbit-dot-three {
  left: 24px;
  bottom: 52px;
}

.dashboard-metrics {
  display: grid;
  gap: 10px;
}

.dashboard-metrics div,
.metric-box {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.dashboard-metrics strong {
  display: block;
  font-size: 1.3rem;
  color: var(--gold-2);
}

.dashboard-metrics small {
  color: rgba(255, 255, 255, 0.76);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-bottom article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.hero-bottom article span {
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 950;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.hero-bottom strong {
  display: block;
  margin-bottom: 6px;
}

.hero-bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* COMMON SECTIONS */
.section {
  padding: 92px 0;
}

.section-mini-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-mini-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head h2,
.section-copy h2,
.location-box h2,
.presence-box h2,
.rating-box h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.section-head p,
.section-copy p,
.location-box p,
.presence-box p,
.rating-box p,
.cta-box p {
  color: #555555;
  font-size: 1.02rem;
  line-height: 1.85;
}

.two-columns,
.location-box,
.presence-box,
.cta-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

/* HOVER DIM GERAL */
.interactive-dim-area.has-hover [data-dim-card] {
  opacity: 0.42;
  filter: saturate(0.72) brightness(0.88);
  transform: scale(0.985);
}

.interactive-dim-area.has-hover [data-dim-card].is-hovered {
  opacity: 1;
  filter: saturate(1.08) brightness(1);
  transform: translateY(-12px) scale(1.025);
  z-index: 5;
}

/* IMAGE BELT */
.image-belt {
  position: relative;
  margin-bottom: 54px;
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 107, 42, 0.10), transparent 28%),
    radial-gradient(circle at 88% 40%, rgba(214, 167, 57, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.image-belt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 107, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 107, 42, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.image-belt-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.image-belt-head .section-tag {
  margin-bottom: 0;
}

.image-belt-head p {
  max-width: 520px;
  color: #555555;
  line-height: 1.55;
  text-align: right;
}

.image-belt-viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 26px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.image-belt-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: beltMove 52s linear infinite;
  will-change: transform;
}

.image-belt.is-paused .image-belt-track {
  animation-play-state: paused;
}

.belt-item {
  flex: 0 0 268px;
  height: 154px;
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #11141b;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 20, 27, 0.12);
  transition:
    transform 0.35s var(--ease-premium),
    opacity 0.35s ease,
    filter 0.35s ease,
    box-shadow 0.35s ease;
}

.belt-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
  transition: transform 0.55s var(--ease-premium);
}

.belt-item:hover img,
.belt-item.is-active img {
  transform: scale(1.14);
}

.image-belt.is-paused .belt-item {
  opacity: 0.34;
  filter: grayscale(0.35) brightness(0.82);
}

.image-belt.is-paused .belt-item.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
  z-index: 5;
  box-shadow: 0 28px 70px rgba(17, 20, 27, 0.24);
}

.belt-hint {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 14px;
  color: #5c5c5c;
  font-weight: 700;
}

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

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

/* STATS */
.stats-section {
  padding-top: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.stat-card,
.info-card,
.product-card,
.advantage-card,
.timeline-card,
.location-box,
.cta-box,
.rating-box {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.stat-card {
  min-height: 212px;
  padding: 22px 18px;
  border-radius: 28px;
  display: grid;
  grid-template-rows: 48px 1fr;
  gap: 16px;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s var(--ease-premium),
    background 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stat-bg {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 80% 10%, rgba(143, 205, 101, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: 0.35s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--green), var(--gold-2), var(--green));
  opacity: 0.12;
  transition: 0.35s ease;
}

.stat-card:hover {
  box-shadow: var(--shadow);
  background: #ffffff;
}

.stat-card:hover .stat-bg {
  opacity: 1;
}

.stat-card:hover::before {
  opacity: 0.28;
  transform: rotate(80deg) scale(1.14);
}

.stat-icon {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--dark);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 950;
}

.card-svg {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  color: var(--green-dark);
  opacity: 0.18;
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease-premium),
    color 0.35s ease;
}

.stat-card:hover .card-svg {
  opacity: 0.42;
  color: var(--gold);
  transform: translateY(-3px) rotate(4deg) scale(1.12);
}

.stat-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 54px 48px 1fr;
  align-content: end;
}

.stat-value {
  display: flex;
  align-items: flex-end;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-title {
  display: flex;
  align-items: flex-start;
  color: #242424;
  line-height: 1.25;
  font-weight: 900;
}

.stat-text {
  color: #5f5f5f;
  line-height: 1.45;
}

/* PRODUCTS */
.products-section {
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: 70px;
  border-radius: 50%;
  background: rgba(31, 107, 42, 0.08);
  filter: blur(20px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 620px;
  padding: 26px;
  border-radius: 34px;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s ease,
    background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31,107,42,0.35), rgba(214,167,57,0.35), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.product-card:hover {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.9);
}

.product-card:hover::after {
  opacity: 1;
}

.product-shine {
  position: absolute;
  top: -80%;
  left: -80%;
  width: 80%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: rotate(18deg);
  opacity: 0;
  transition: 0.65s var(--ease-premium);
}

.product-card:hover .product-shine {
  left: 130%;
  opacity: 1;
}

.product-photo {
  height: 245px;
  margin-bottom: 22px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 107, 42, 0.08), transparent 45%),
    #f7f5ef;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: 0.7s var(--ease-premium);
}

.product-card:hover .product-photo::after {
  transform: translateX(120%);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition:
    transform 0.55s var(--ease-premium),
    filter 0.55s ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.product-number {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--dark);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.product-card > strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.product-card p {
  color: #555555;
  line-height: 1.78;
  margin-bottom: 18px;
}

.product-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.product-card li {
  color: #333333;
  font-weight: 850;
}

.product-card li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.btn-product {
  width: 100%;
  background: var(--dark);
  color: #ffffff;
}

/* COMPANY */
.company-section {
  position: relative;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s var(--ease-premium),
    background 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.structure-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 50%, rgba(143, 205, 101, 0.25), transparent 36%);
  opacity: 0;
  transform: scale(0.65);
  transition: 0.45s ease;
}

.structure-card:hover .structure-glow {
  opacity: 1;
  transform: scale(1);
}

.info-card:hover {
  box-shadow: var(--shadow);
  background: #ffffff;
}

.info-card span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--dark);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.info-card p {
  color: #555555;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

/* LOCATION */
.location-box {
  padding: 34px;
  border-radius: 38px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 107, 42, 0.10);
  color: var(--green-dark);
  font-weight: 900;
}

.map-card {
  height: 390px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 107, 42, 0.20), transparent 32%),
    linear-gradient(135deg, #151821, #202530);
  position: relative;
}

.map-image-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 30px;
  background: #11141b;
}

.map-image-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.map-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 22, 0.68), rgba(12, 18, 22, 0.18)),
    radial-gradient(circle at 72% 42%, rgba(143, 205, 101, 0.18), transparent 32%);
}

.map-image-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  background: rgba(10, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.map-live-pin {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow:
    0 0 0 9px rgba(242, 206, 105, 0.16),
    0 0 30px rgba(242, 206, 105, 0.72);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.map-image-overlay strong {
  display: block;
  margin-bottom: 3px;
}

.map-image-overlay small {
  color: rgba(255, 255, 255, 0.76);
}

/* ADVANTAGES */
.advantages-section {
  position: relative;
  overflow: hidden;
}

.advantages-stage {
  position: relative;
  padding: 22px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,107,42,0.12), transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(214,167,57,0.14), transparent 28%),
    rgba(255,255,255,0.34);
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.advantage-orbit {
  position: absolute;
  inset: auto -120px -160px auto;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}

.advantage-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(31,107,42,0.18);
  animation: orbitPulse 5s ease-in-out infinite alternate;
}

.advantage-orbit span:nth-child(2) {
  inset: 48px;
  animation-delay: -1.5s;
}

.advantage-orbit span:nth-child(3) {
  inset: 96px;
  animation-delay: -3s;
}

@keyframes orbitPulse {
  to {
    transform: scale(1.06);
    border-color: rgba(214,167,57,0.34);
  }
}

.advantages-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.advantage-card {
  min-height: 230px;
  padding: 20px;
  border-radius: 28px;
  display: grid;
  grid-template-rows: 104px 1fr;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s var(--ease-premium),
    background 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 80% 10%, rgba(143, 205, 101, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.34), transparent);
  opacity: 0;
  transition: 0.35s ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 42% 58% 48% 52%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.34), transparent 20%),
    linear-gradient(135deg, rgba(138,85,40,0.65), rgba(196,138,66,0.65));
  opacity: 0.16;
  transition: 0.35s ease;
}

.advantage-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card:hover::after {
  opacity: 0.38;
  transform: rotate(9deg) scale(1.15);
}

.adv-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 46px;
  grid-template-rows: 24px 1fr;
  column-gap: 12px;
}

.adv-card-head b {
  grid-column: 1;
  grid-row: 1;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 950;
}

.adv-card-head strong {
  grid-column: 1 / 3;
  grid-row: 2;
  font-size: 1.05rem;
  line-height: 1.32;
  align-self: start;
}

.adv-svg {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  align-self: start;
  justify-self: end;
  color: var(--green-dark);
  opacity: 0.20;
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease-premium),
    color 0.35s ease;
}

.advantage-card:hover .adv-svg {
  opacity: 0.46;
  color: var(--gold);
  transform: translateY(-3px) rotate(5deg) scale(1.12);
}

.advantage-card p {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: #5d5d5d;
  line-height: 1.55;
  font-size: 0.88rem;
}

/* SUSTAINABILITY */
.sustainability-section,
.presence-section {
  background: linear-gradient(180deg, #151821, #101219);
  color: #ffffff;
}

.sustainability-section .section-copy p,
.presence-section p {
  color: rgba(255, 255, 255, 0.82);
}

.safe-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sustainability-layout {
  align-items: start;
}

.eco-stack {
  position: relative;
  min-height: 440px;
  perspective: 900px;
}

.eco-card {
  position: absolute;
  inset: 40px 24px auto;
  min-height: 310px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(18, 24, 32, 0.98), rgba(26, 36, 30, 0.95)),
    radial-gradient(circle at 80% 20%, rgba(214, 167, 57, 0.18), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0.35;
  transition: 0.65s var(--ease-premium);
  overflow: hidden;
}

.eco-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 50%, rgba(143, 205, 101, 0.18), transparent 34%);
  opacity: 0.8;
  pointer-events: none;
}

.eco-card:not(.active) h3,
.eco-card:not(.active) p,
.eco-card:not(.active) span {
  opacity: 0;
}

.eco-card.active h3,
.eco-card.active p,
.eco-card.active span {
  opacity: 1;
}

.eco-card span {
  position: relative;
  z-index: 2;
  color: var(--gold-2);
  font-weight: 950;
  transition: 0.3s ease;
}

.eco-card h3 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 60px 0 12px;
  color: #ffffff;
  transition: 0.3s ease;
}

.eco-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
  transition: 0.3s ease;
}

/* GOALS */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-card {
  padding: 26px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 96px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(var(--green), var(--gold-2));
  opacity: 0.24;
}

.timeline-card span {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  margin-bottom: 0;
  border-radius: 999px;
  background: rgba(31, 107, 42, 0.10);
  color: var(--green-dark);
  font-weight: 950;
  position: relative;
  z-index: 2;
}

.timeline-content {
  position: relative;
  z-index: 2;
  padding-left: 0;
}

.timeline-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.timeline-card p {
  color: #5d5d5d;
  line-height: 1.75;
}

/* PRESENCE */
.presence-box {
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 50%, rgba(31, 107, 42, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.presence-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.presence-stats div {
  min-width: 150px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.presence-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.7rem;
  margin-bottom: 5px;
}

.presence-stats span {
  color: rgba(255, 255, 255, 0.78);
}

.network {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.network b {
  position: absolute;
  left: 50%;
  top: calc(50% + 28px);
  transform: translateX(-50%);
}

.network-node {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-3);
  box-shadow: 0 0 30px rgba(143, 205, 101, 0.60);
}

.main-node {
  width: 26px;
  height: 26px;
  background: var(--gold-2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.node-1 {
  left: 18%;
  top: 24%;
}

.node-2 {
  right: 20%;
  top: 22%;
}

.node-3 {
  left: 28%;
  bottom: 22%;
}

.node-4 {
  right: 22%;
  bottom: 26%;
}

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  transform-origin: left center;
  animation: lineGrow 2s ease-in-out infinite alternate;
}

.line-1 {
  width: 180px;
  transform: rotate(-145deg);
}

.line-2 {
  width: 190px;
  transform: rotate(-35deg);
}

.line-3 {
  width: 170px;
  transform: rotate(140deg);
}

.line-4 {
  width: 185px;
  transform: rotate(35deg);
}

@keyframes lineGrow {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

/* CLIENTES */
.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -180px;
  bottom: 40px;
  border-radius: 50%;
  background: rgba(31, 107, 42, 0.08);
  filter: blur(18px);
  pointer-events: none;
}

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

.client-card {
  position: relative;
  height: 245px;
  border: 0;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 30%, rgba(10, 14, 18, 0.72)),
    radial-gradient(circle at 80% 18%, rgba(143, 205, 101, 0.18), transparent 28%);
  opacity: 0.92;
  transition: 0.35s ease;
}

.client-card::after {
  content: "ampliar";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(10, 14, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.35s var(--ease-premium);
}

.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.55s var(--ease-premium),
    filter 0.55s ease;
}

.client-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  color: #ffffff;
  font-weight: 950;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.client-card:hover,
.client-card.is-hovered,
.client-card.is-active {
  transform: translateY(-10px) scale(1.025);
  box-shadow: var(--shadow);
}

.client-card:hover img,
.client-card.is-hovered img,
.client-card.is-active img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.client-card:hover::after,
.client-card.is-hovered::after,
.client-card.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.clients-grid.has-client-active .client-card {
  opacity: 0.38;
  filter: saturate(0.6) brightness(0.78);
}

.clients-grid.has-client-active .client-card.is-active {
  opacity: 1;
  filter: none;
}

.clients-note {
  margin-top: 18px;
  color: #5f5f5f;
  font-weight: 800;
}

/* MODAL CLIENTES */
.client-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(143, 205, 101, 0.18), transparent 30%),
    rgba(7, 10, 13, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.client-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.client-lightbox-content {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  display: grid;
  gap: 14px;
  justify-items: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.42s var(--ease-premium);
}

.client-lightbox.open .client-lightbox-content {
  transform: translateY(0) scale(1);
}

.client-lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.client-lightbox-content p {
  color: #ffffff;
  font-weight: 900;
  text-align: center;
}

.client-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1001;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.client-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: rotate(8deg) scale(1.04);
}

/* RATING / CTA */
.rating-box,
.cta-box {
  padding: 34px;
  border-radius: 38px;
}

.rating-box {
  text-align: center;
}

.rating-box-featured {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 42, 0.32);
  outline: 2px solid rgba(31, 107, 42, 0.16);
  outline-offset: 10px;
  box-shadow:
    0 24px 70px rgba(17, 20, 27, 0.12),
    0 0 0 1px rgba(143, 205, 101, 0.16) inset;
}

.rating-box-featured::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 205, 101, 0.18), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(214, 167, 57, 0.16), transparent 22%);
  opacity: 0.9;
  pointer-events: none;
}

.rating-badge {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin: -4px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 90deg, var(--green-3), var(--gold-2), var(--green), var(--green-3));
  box-shadow: 0 18px 42px rgba(31, 107, 42, 0.18);
  animation: medalFloat 3.2s ease-in-out infinite alternate;
}

.rating-badge::before,
.rating-badge::after {
  content: "";
  position: absolute;
  bottom: -26px;
  width: 24px;
  height: 42px;
  background: linear-gradient(180deg, var(--green), var(--green-3));
  clip-path: polygon(0 0, 100% 0, 80% 100%, 50% 72%, 20% 100%);
  z-index: -1;
}

.rating-badge::before {
  left: 22px;
  transform: rotate(12deg);
}

.rating-badge::after {
  right: 22px;
  transform: rotate(-12deg);
}

.rating-badge-core {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--gold);
  font-size: 2.3rem;
  box-shadow: inset 0 0 0 1px rgba(31, 107, 42, 0.12);
}

@keyframes medalFloat {
  from {
    transform: translateY(0) rotate(-2deg);
  }

  to {
    transform: translateY(-8px) rotate(2deg);
  }
}

.stars {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 20px;
}

.stars span {
  animation: starPop 1.6s ease-in-out infinite;
}

.stars span:nth-child(2) {
  animation-delay: 0.12s;
}

.stars span:nth-child(3) {
  animation-delay: 0.24s;
}

.stars span:nth-child(4) {
  animation-delay: 0.36s;
}

.stars span:nth-child(5) {
  animation-delay: 0.48s;
}

@keyframes starPop {
  50% {
    transform: translateY(-6px) scale(1.08);
  }
}

.rating-box h2,
.rating-box p,
.trust-list {
  position: relative;
  z-index: 2;
}

.rating-box p {
  max-width: 760px;
  margin: 0 auto 24px;
}

.trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(31, 107, 42, 0.10);
  color: var(--green-dark);
  font-weight: 900;
}

.cta-box {
  background:
    radial-gradient(circle at 85% 15%, rgba(31, 107, 42, 0.15), transparent 24%),
    rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1fb45a, #0b7f38);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  animation: whatsappPulse 2.2s infinite;
  overflow: hidden;
  padding: 12px;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.18));
}

@keyframes whatsappPulse {
  50% {
    transform: scale(1.06);
    box-shadow: 0 18px 42px rgba(31, 180, 90, 0.30);
  }
}

/* FOOTER */
.footer {
  padding: 72px 0 28px;
  background: #11141b;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 0.9fr 0.9fr;
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  padding: 8px;
  border-radius: 24px;
  background: #ffffff;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-buttons a,
.footer-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-weight: 900;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-col a:hover {
  color: var(--gold-2);
}

.footer-cta {
  margin-top: 10px;
  color: #151515 !important;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s var(--ease-premium),
    transform 0.85s var(--ease-premium),
    filter 0.85s var(--ease-premium);
  filter: blur(8px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal[data-reveal="fade-right"] {
  transform: translateX(-36px);
}

.reveal[data-reveal="fade-right"].visible {
  transform: translateX(0);
}

.reveal[data-reveal="scale-up"] {
  transform: translateY(28px) scale(0.94);
}

.reveal[data-reveal="scale-up"].visible {
  transform: translateY(0) scale(1);
}

.reveal[data-reveal="product"] {
  transform: translateY(42px) rotateX(8deg) scale(0.96);
  transform-origin: center bottom;
}

.reveal[data-reveal="product"].visible {
  transform: translateY(0) rotateX(0deg) scale(1);
}

.reveal[data-reveal="structure"] {
  transform: translateY(36px) scale(0.96);
}

.reveal[data-reveal="structure"].visible {
  transform: translateY(0) scale(1);
}

.reveal[data-reveal="advantage"] {
  transform: translateY(28px) rotate(-1deg);
}

.reveal[data-reveal="advantage"].visible {
  transform: translateY(0) rotate(0deg);
}

/* RESPONSIVO */
@media (max-width: 1120px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-content,
  .two-columns,
  .location-box,
  .presence-box,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    max-width: 460px;
  }

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

  .stat-card {
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .brand {
    min-width: auto;
  }

  .brand-text,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    display: none;
  }

  .nav.open {
    position: fixed;
    top: 84px;
    left: 15px;
    right: 15px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open a {
    color: #111111;
    padding: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 28px 18px;
  }

  .hero-title,
  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-trust {
    width: 100%;
    border-radius: 24px;
    align-items: flex-start;
  }

  .interactive-dim-area.has-hover [data-dim-card],
  .interactive-dim-area.has-hover [data-dim-card].is-hovered {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .stat-card,
  .advantage-card {
    min-height: auto;
  }

  .stat-body {
    grid-template-rows: auto auto auto;
    gap: 8px;
  }

  .stat-value {
    min-height: auto;
  }

  .stat-title {
    min-height: auto;
  }

  .advantage-card {
    grid-template-rows: auto auto;
  }

  .adv-card-head {
    grid-template-rows: auto auto;
  }

  .eco-card {
    inset: 28px 10px auto;
  }

  .rating-box-featured {
    outline-offset: 6px;
  }

  .image-belt {
    padding: 16px;
    border-radius: 28px;
  }

  .image-belt-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-belt-head p {
    text-align: left;
  }

  .belt-item {
    flex-basis: 220px;
    height: 136px;
  }

  .product-photo {
    height: 260px;
  }

  .map-image-card,
  .map-image-card img {
    min-height: 340px;
  }

  .client-card {
    height: 230px;
  }
}

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

  .section {
    padding: 70px 0;
  }

  .stats-grid,
  .structure-grid,
  .advantages-grid,
  .footer-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .location-box,
  .presence-box,
  .cta-box,
  .rating-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .advantages-stage {
    padding: 14px;
    border-radius: 28px;
  }

  .map-card,
  .network {
    min-height: 330px;
    height: 330px;
  }

  .dashboard-orbit {
    width: 180px;
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
  width: 54px;
  height: 54px;
  right: 16px;
  bottom: 16px;
  padding: 11px;
}

  .site-cursor {
    display: none;
  }

  .rating-badge {
    width: 78px;
    height: 78px;
  }

  .rating-badge-core {
    width: 58px;
    height: 58px;
    font-size: 1.9rem;
  }

  .belt-item {
    flex-basis: 184px;
    height: 118px;
    border-radius: 18px;
  }

  .image-belt-viewport {
    border-radius: 20px;
  }

  .product-photo {
    height: 230px;
    border-radius: 22px;
  }

  .product-photo img {
    padding: 10px;
  }

  .map-image-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .map-image-card,
  .map-image-card img {
    min-height: 310px;
  }

  .card-svg {
    width: 40px;
    height: 40px;
  }

  .adv-svg {
    width: 40px;
    height: 40px;
  }

  .client-card {
    height: 250px;
    border-radius: 24px;
  }

  .client-lightbox {
    padding: 14px;
  }

  .client-lightbox-close {
    width: 48px;
    height: 48px;
    top: 14px;
    right: 14px;
  }

  .client-lightbox-content img {
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .hero-shell {
    padding: 24px 14px;
    border-radius: 26px;
  }

  .hero-dashboard {
    padding: 18px;
    border-radius: 24px;
  }

  .dashboard-orbit {
    width: 160px;
    height: 160px;
  }

  .hero-title,
  .hero-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.2rem);
    letter-spacing: -0.05em;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .section-head h2,
  .section-copy h2,
  .location-box h2,
  .presence-box h2,
  .rating-box h2,
  .cta-box h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .eco-stack {
    min-height: 400px;
  }

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

  .client-card {
    height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}