﻿:root {
  --bg-dark: #081838;
  --bg-deep: #102860;
  --primary: #2068d8;
  --primary-soft: #58a0f8;
  --accent: #b89048;
  --accent-soft: #d6b374;
  --accent-deep: #8f6b2c;
  --highlight: #a0d0f8;
  --text: #e8f3ff;
  --muted: #bdd8f7;
  --success: #33d17a;
  --success-soft: #1e8f57;
  --danger: #ff6666;
  --danger-soft: #b44747;
  --card-bg: rgba(12, 34, 82, 0.72);
  --border: rgba(160, 208, 248, 0.28);
  --shadow: 0 18px 40px rgba(3, 10, 30, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(88, 160, 248, 0.35), transparent 32%),
    radial-gradient(circle at 85% 0%, rgba(184, 144, 72, 0.24), transparent 28%),
    linear-gradient(160deg, #06122a 0%, var(--bg-dark) 46%, #0f3276 100%);
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.noise-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

.background-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(74px);
  pointer-events: none;
  z-index: -1;
}

.background-glow-left {
  top: -140px;
  left: -130px;
  background: rgba(88, 160, 248, 0.42);
  animation: drift-left 16s ease-in-out infinite alternate;
}

.background-glow-right {
  bottom: -120px;
  right: -110px;
  background: rgba(184, 144, 72, 0.36);
  animation: drift-right 18s ease-in-out infinite alternate;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(6, 20, 48, 0.28);
  border-bottom: 1px solid rgba(160, 208, 248, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 20, 48, 0.82);
  border-bottom-color: rgba(160, 208, 248, 0.2);
  box-shadow: 0 12px 30px rgba(4, 11, 30, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header-cta {
  color: #1c1205;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(214, 179, 116, 0.6);
  background: linear-gradient(130deg, var(--accent) 0%, var(--accent-soft) 100%);
  border-radius: 999px;
  padding: 10px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 116, 0.9);
  background: linear-gradient(130deg, #c09b58 0%, #dfbe84 100%);
  box-shadow: 0 0 0 1px rgba(214, 179, 116, 0.3), 0 10px 24px rgba(143, 107, 44, 0.3);
}

main {
  padding-bottom: 70px;
}

.hero {
  padding: clamp(56px, 8vw, 100px) 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.eyebrow,
.section-tag {
  font-family: "Space Grotesk", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--highlight);
  margin: 0 0 8px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: 0 0 0 0 rgba(88, 160, 248, 0.6);
  animation: pulse-dot 2s ease-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  max-width: 17ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  font-weight: 800;
  text-wrap: balance;
  margin-bottom: 10px;
}

.lead {
  color: #f2f8ff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 18px 0 10px;
  max-width: 56ch;
}

.lead-sub,
.section-intro {
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 62ch;
}

.hero-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hero-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--primary-soft));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent-deep) 0%, var(--accent) 48%, var(--accent-soft) 100%);
  color: #1a1004;
  box-shadow: 0 12px 30px rgba(143, 107, 44, 0.34);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.24) 45%, transparent 65%);
  transition: left 0.5s ease;
}

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

.btn-icon {
  font-size: 1.08rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.012);
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(214, 179, 116, 0.3), 0 0 36px rgba(184, 144, 72, 0.45);
}

.btn-primary:hover::before {
  left: 120%;
}

.btn-primary:hover .btn-icon {
  transform: translate(2px, -2px);
}

.hero-panel {
  background: linear-gradient(160deg, rgba(16, 40, 96, 0.86), rgba(7, 23, 56, 0.8));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 28px);
  animation: panel-float 5.5s ease-in-out infinite alternate;
}

.hero-panel h2 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  margin-bottom: 14px;
}

.hero-brand-art {
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(160, 208, 248, 0.28);
  box-shadow: 0 10px 22px rgba(4, 12, 30, 0.32);
}

.hero-brand-art img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform 0.35s ease;
}

.hero-panel:hover .hero-brand-art img {
  transform: scale(1.02);
}

.metrics {
  display: grid;
  gap: 12px;
}

.metrics article {
  border-radius: 14px;
  border: 1px solid rgba(160, 208, 248, 0.2);
  background: rgba(10, 30, 74, 0.72);
  padding: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.metrics article:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 208, 248, 0.38);
  background: rgba(13, 36, 88, 0.82);
}

.metrics strong {
  font-size: 1rem;
  color: var(--highlight);
}

.metrics p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(40px, 7vw, 72px) 0;
}

.section + .section {
  border-top: 1px solid rgba(160, 208, 248, 0.16);
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 0.72s ease, transform 0.72s ease, filter 0.72s ease;
}

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

.js-stagger > * {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  filter: blur(5px);
  transition: opacity 0.52s ease, transform 0.52s ease, filter 0.52s ease;
}

.js-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.js-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.js-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.js-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.js-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.js-stagger.is-visible > *:nth-child(5) { transition-delay: 0.26s; }
.js-stagger.is-visible > *:nth-child(6) { transition-delay: 0.32s; }
.js-stagger.is-visible > *:nth-child(7) { transition-delay: 0.38s; }
.js-stagger.is-visible > *:nth-child(8) { transition-delay: 0.44s; }

.cards {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(4, 13, 33, 0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 208, 248, 0.48);
  box-shadow: 0 16px 30px rgba(4, 13, 33, 0.34);
  background: rgba(15, 38, 94, 0.82);
}

.card-detailed h3 {
  font-size: 1.02rem;
  color: var(--highlight);
  margin-bottom: 7px;
}

.card-detailed p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.section-emphasis {
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #f3f8ff;
}

.section-problem .section-tag {
  color: #ff8d8d;
}

.section-problem .cards .card {
  border-color: rgba(255, 102, 102, 0.34);
  background: linear-gradient(160deg, rgba(66, 25, 33, 0.45), rgba(46, 17, 24, 0.28));
}

.section-problem .cards .card:hover {
  border-color: rgba(255, 122, 122, 0.62);
  background: linear-gradient(160deg, rgba(82, 30, 40, 0.55), rgba(58, 20, 30, 0.35));
}

.section-problem .section-emphasis strong {
  color: var(--danger);
}

.section-gains .section-tag {
  color: #73f0b0;
}

.counter-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.counter-card {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(51, 209, 122, 0.38);
  background: linear-gradient(160deg, rgba(16, 78, 50, 0.5), rgba(11, 50, 34, 0.34));
  box-shadow: 0 10px 24px rgba(4, 13, 33, 0.24);
}

.counter-value {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  color: #8bffc4;
  text-shadow: 0 0 18px rgba(51, 209, 122, 0.28);
  margin-bottom: 6px;
}

.counter {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  min-width: 2ch;
}

.counter-suffix {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-left: 2px;
  font-weight: 700;
}

.counter-card p {
  margin: 0;
  color: #d8ffeb;
  font-size: 0.92rem;
}

.benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.benefits span,
.chips span {
  border: 1px solid rgba(160, 208, 248, 0.25);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  color: #eaf4ff;
  background: rgba(16, 40, 96, 0.55);
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.section-gains .benefits span {
  border-color: rgba(51, 209, 122, 0.32);
  background: linear-gradient(160deg, rgba(14, 62, 41, 0.58), rgba(10, 45, 30, 0.4));
}

.benefits span:hover,
.chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 208, 248, 0.5);
  background: rgba(19, 48, 115, 0.78);
}

.section-gains .benefits span:hover {
  border-color: rgba(95, 240, 168, 0.64);
  background: linear-gradient(160deg, rgba(16, 79, 52, 0.72), rgba(13, 56, 38, 0.55));
}

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

.chips span {
  text-align: left;
  border-radius: 14px;
}

.section-founder {
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.founder-panel {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(160, 208, 248, 0.3);
  background:
    radial-gradient(circle at 8% 16%, rgba(88, 160, 248, 0.2), transparent 45%),
    linear-gradient(160deg, rgba(12, 34, 82, 0.85), rgba(8, 24, 56, 0.9));
  box-shadow: 0 14px 32px rgba(4, 13, 33, 0.3);
  padding: clamp(18px, 2.5vw, 26px);
}

.founder-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
}

.founder-panel p + p {
  margin-top: 12px;
}

.founder-visual {
  display: grid;
  gap: 12px;
}

.founder-main-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(160, 208, 248, 0.32);
  box-shadow: 0 14px 30px rgba(4, 13, 33, 0.34);
  background: rgba(8, 24, 56, 0.75);
}

.founder-main-photo img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.final-cta {
  padding-bottom: 20px;
}

.final-cta-inner {
  border-radius: 24px;
  border: 1px solid rgba(160, 208, 248, 0.3);
  background:
    radial-gradient(circle at 10% 15%, rgba(88, 160, 248, 0.24), transparent 46%),
    radial-gradient(circle at 85% 90%, rgba(184, 144, 72, 0.18), transparent 40%),
    rgba(7, 23, 56, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
}

.final-cta p {
  color: var(--muted);
  margin: 0 0 20px;
}

.float-whatsapp {
  position: fixed;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(130deg, #24c86a 0%, #56e38f 100%);
  box-shadow: 0 12px 26px rgba(20, 89, 56, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.float-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(20, 89, 56, 0.5);
}

.float-whatsapp-icon {
  display: block;
  width: auto;
  height: auto;
}

.float-whatsapp-icon img {
  width: 27px;
  height: 27px;
  display: block;
  filter: brightness(0) invert(1);
}

@keyframes drift-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(20px, 14px, 0);
  }
}

@keyframes drift-right {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-16px, -12px, 0);
  }
}

@keyframes panel-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(88, 160, 248, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(88, 160, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(88, 160, 248, 0);
  }
}


@media (max-width: 980px) {
  .hero-grid,
  .cards-4,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid,
  .cards-2,
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .cards-2,
  .counter-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-primary {
    width: 100%;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .founder-main-photo img {
    max-height: 360px;
  }

  .float-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .float-whatsapp {
    width: 52px;
    height: 52px;
  }
}

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

  .js-reveal,
  .js-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
