/* ================================================================
   LN Assessoria — CSS v5
   Complete redesign based on user feedback
   Split hero, accordion solutions, horizontal scroll connections,
   editorial portfolio, 2-col FAQ, testimonials grid
   ================================================================ */

/* ----------------------------------------------------------------
   0. FONT FACES
   ---------------------------------------------------------------- */
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-UltraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  --roxo:        #6e60ce;
  --roxo-hover:  #5a4eb8;
  --roxo-glow:   rgba(110,96,206,.5);
  --lavanda:     #c9bdf7;
  --lavanda-soft:#e8e2fc;
  --dark:        #0a0614;
  --dark-card:   #13102a;
  --dark-surface:#1a1534;
  --cream:       #f8f6ff;
  --white:       #ffffff;
  --gray-100:    #f3f1f9;
  --gray-200:    #e4e0f0;
  --gray-300:    #aaa8b2;
  --gray-600:    #5f5f60;
  --gray-900:    #1a1a1a;

  --font-heading: 'Telegraf', 'Outfit', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --container: 1200px;
  --container-lg: 1400px;
  --gutter: 24px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 8px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --duration: .4s;
}

/* ----------------------------------------------------------------
   2. BASE / RESET
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark light;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--dark);
  overflow-x: hidden;
}

body.is-preloading {
  overflow: hidden;
}

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

a {
  color: var(--roxo);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--lavanda); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
ul { list-style: none; padding: 0; margin: 0; }

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
}

a,
button,
[role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--lavanda);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10001;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(10, 6, 20, .18);
  transform: translateY(-160%);
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--dark);
}

/* ----------------------------------------------------------------
   3. UTILITY CLASSES
   ---------------------------------------------------------------- */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--roxo);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(110,96,206,.3);
  border-radius: 50px;
  width: fit-content;
}
.label--light {
  color: var(--lavanda);
  border-color: rgba(201,189,247,.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -.04em;
  line-height: 1;
}
.section-title--light { color: var(--white); }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo), var(--lavanda));
  border-radius: 3px;
  margin-bottom: 28px;
}

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--roxo);
  color: var(--white);
  border-color: var(--roxo);
}
.btn--primary:hover {
  background: var(--roxo-hover);
  border-color: var(--roxo-hover);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--roxo), var(--lavanda));
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
  transition: opacity .5s var(--ease);
}
.btn--glow:hover::after { opacity: .6; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--white);
  color: var(--white);
}

.btn--accent {
  background: var(--roxo);
  color: var(--white);
  border-color: var(--roxo);
}

/* ----------------------------------------------------------------
   5. SCROLL PROGRESS BAR
   ---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo), var(--lavanda));
  z-index: 10000;
  transition: none;
  box-shadow: 0 0 10px var(--roxo-glow);
}

/* ----------------------------------------------------------------
   6. PRELOADER
   ---------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader__logo-img {
  width: 100px;
  height: auto;
  opacity: .8;
}

.preloader__bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--roxo), var(--lavanda));
  border-radius: 2px;
  transition: width .15s linear;
}

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  background: transparent;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(10,6,20,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav__inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  flex-shrink: 0;
  position: relative;
  width: 88px;
  height: 32px;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 88px;
  height: auto;
  transition: opacity var(--duration) var(--ease);
}
.nav__logo--white { opacity: 1; }
.nav__logo--color { opacity: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lavanda);
  border-radius: 2px;
  transition: width var(--duration) var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--white); }

.nav__cta {
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--roxo);
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.nav__cta:hover {
  background: var(--lavanda);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--roxo-glow);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .3s var(--ease);
}

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(32px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s .4s;
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s 0s;
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.nav__mobile-links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 200;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--duration) var(--ease);
}
.nav__mobile-links a:hover { color: var(--lavanda); }

/* ----------------------------------------------------------------
   8. HERO — Split Layout
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Floating gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(110,96,206,.2);
  top: -10%;
  left: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(201,189,247,.12);
  bottom: -5%;
  right: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(.9); }
  66% { transform: translate(40px, 20px) scale(1.1); }
}

.hero__inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__text {
  display: flex;
  flex-direction: column;
}

.hero__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lavanda);
  margin-bottom: 24px;
  opacity: .7;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.04em;
}

.hero__accent {
  display: block;
  background: linear-gradient(135deg, var(--lavanda) 0%, var(--roxo) 50%, var(--lavanda) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGradient 4s ease-in-out infinite;
}

@keyframes shimmerGradient {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 60px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-self: flex-start;
}
.hero__proof-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--lavanda), var(--roxo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero__proof-text {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Hero visual / photo */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: .94;
  overflow: visible;
  filter: drop-shadow(0 34px 90px rgba(6, 4, 16, .34));
}

.hero__photo-wrapper::before {
  content: '';
  position: absolute;
  inset: 12% 10% 14%;
  border-radius: 42px 28px 48px 30px;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,189,247,.26) 0%, rgba(201,189,247,.08) 26%, transparent 62%),
    radial-gradient(circle at 68% 62%, rgba(110,96,206,.22) 0%, rgba(110,96,206,.06) 30%, transparent 68%);
  filter: blur(18px);
  opacity: .95;
}

.hero__photo-wrapper::after {
  content: '';
  position: absolute;
  inset: 8% 12% 10%;
  border: 1px solid rgba(201,189,247,.16);
  border-radius: 48px 30px 52px 34px;
  transform: rotate(7deg);
  opacity: .85;
}

.hero__photo-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero__photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(18, 12, 35, .92);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 48px rgba(6, 4, 16, .3),
    inset 0 0 0 1px rgba(255,255,255,.05);
  transform-origin: center;
}

.hero__photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,20,0) 24%, rgba(10,6,20,.12) 60%, rgba(10,6,20,.2) 100%);
  pointer-events: none;
}

.hero__photo-card--primary {
  left: 19%;
  top: 10%;
  width: 48%;
  height: 58%;
  border-radius: 42px 26px 46px 24px;
  transform: rotate(-5deg);
  z-index: 3;
}

.hero__photo-card--top {
  left: 0;
  top: 7%;
  width: 31%;
  height: 22%;
  border-radius: 24px 16px 30px 14px;
  transform: rotate(-11deg);
  z-index: 2;
}

.hero__photo-card--top .hero__photo-tile {
  object-position: top;
}

.hero__photo-card--middle {
  right: 2%;
  top: 11%;
  width: 32%;
  height: 35%;
  border-radius: 22px 34px 20px 30px;
  transform: rotate(8deg);
  z-index: 4;
}

.hero__photo-card--wide {
  left: 6%;
  bottom: 8%;
  width: 58%;
  height: 22%;
  border-radius: 30px 22px 38px 20px;
  transform: rotate(4deg);
  z-index: 2;
}

.hero__photo-card--accent {
  right: 8%;
  bottom: 12%;
  width: 24%;
  height: 18%;
  border-radius: 20px 28px 18px 26px;
  transform: rotate(12deg);
  z-index: 5;
}

.hero__photo-tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease-out), filter .9s var(--ease);
  filter: saturate(.98) contrast(1.03);
}

.hero__photo-wrapper:hover .hero__photo-card--primary .hero__photo-tile,
.hero__photo-wrapper:hover .hero__photo-card--wide .hero__photo-tile {
  transform: scale(1.08);
}

.hero__photo-wrapper:hover .hero__photo-card--top .hero__photo-tile,
.hero__photo-wrapper:hover .hero__photo-card--middle .hero__photo-tile,
.hero__photo-wrapper:hover .hero__photo-card--accent .hero__photo-tile {
  transform: scale(1.06);
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Noise texture overlay */
.hero::after,
.about::after,
.solutions::after,
.portfolio::after,
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ----------------------------------------------------------------
   9. BRAND TICKER
   ---------------------------------------------------------------- */
.brand-ticker {
  background: var(--dark);
  border-top: 1px solid rgba(110,96,206,.08);
  border-bottom: 1px solid rgba(110,96,206,.08);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.brand-ticker::before,
.brand-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.brand-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}
.brand-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark), transparent);
}

.brand-ticker__track {
  display: flex;
  align-items: center;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
  will-change: transform;
}

.brand-ticker__item {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,.22);
  white-space: nowrap;
  padding: 0 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .4s var(--ease);
}
.brand-ticker__item:hover { color: var(--lavanda); }

.brand-ticker__sep {
  color: rgba(110,96,206,.2);
  font-size: .6rem;
  padding: 0 12px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-ticker:hover .brand-ticker__track {
  animation-play-state: paused;
}

/* ----------------------------------------------------------------
   10. ABOUT
   ---------------------------------------------------------------- */
.about {
  background: var(--dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.about > * { position: relative; z-index: 1; }

.about__orb--1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(110,96,206,.1);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat2 18s ease-in-out infinite;
}
.about__orb--2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,189,247,.06);
  filter: blur(100px);
  bottom: -100px;
  left: -150px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat1 14s ease-in-out infinite;
}

.about__bg-text {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 30rem;
  font-weight: 700;
  color: rgba(110,96,206,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
  will-change: transform;
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about__photo-col { position: relative; }

.about__photo-frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 3px);
  padding: 3px;
  background: linear-gradient(135deg, var(--roxo), var(--lavanda), var(--roxo));
  background-size: 300% 300%;
  animation: borderRotate 6s ease-in-out infinite;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  transition: transform .8s var(--ease-out);
}
.about__photo-col:hover .about__photo {
  transform: scale(1.04);
}

.about__photo-gradient {
  position: absolute;
  inset: 3px;
  background: linear-gradient(180deg, transparent 40%, rgba(10,6,20,.6) 100%);
  pointer-events: none;
  border-radius: var(--radius);
}

.about__photo-border {
  display: none;
}

/* Stats bar */
.about__stats {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: -48px;
  background: rgba(19,16,42,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(110,96,206,.15);
  overflow: hidden;
}

.about__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--duration) var(--ease);
}
.about__stat:last-child { border-right: none; }
.about__stat:hover { background: rgba(110,96,206,.1); }

.about__stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--lavanda);
  line-height: 1;
  margin-bottom: 6px;
  transition: transform .3s var(--ease);
}
.about__stat:hover .about__stat-num { transform: scale(1.15); }

.about__stat-label {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* Content column */
.about__content {
  display: flex;
  flex-direction: column;
}

.about__content .label {
  align-self: flex-start;
}

.about__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.9;
  max-width: 500px;
}

.about__content .btn { align-self: flex-start; margin-top: 16px; }

/* ----------------------------------------------------------------
   11. SOLUTIONS — Accordion Cards
   ---------------------------------------------------------------- */
.solutions {
  background: var(--dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.solutions > * { position: relative; z-index: 1; }

.solutions__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.solutions__header {
  text-align: center;
  margin-bottom: 60px;
}
.solutions__header .section-title { margin-bottom: 20px; }

.solutions__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.solutions__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.sol-card:hover {
  border-color: rgba(110,96,206,.2);
}
.sol-card.active {
  border-color: rgba(110,96,206,.35);
  box-shadow: 0 0 40px rgba(110,96,206,.08);
}

.sol-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: 28px 32px;
  align-items: center;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.sol-card__header:hover {
  background: rgba(255,255,255,.02);
}

.sol-card__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--roxo), var(--lavanda));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .25;
  line-height: 1;
  min-width: 48px;
  transition: opacity .4s var(--ease);
}
.sol-card.active .sol-card__num { opacity: 1; }

.sol-card__info { min-width: 0; }

.sol-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.2;
}

.sol-card__short {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.4;
}

.sol-card__toggle {
  position: relative;
  color: var(--lavanda);
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  transition: background-color .3s var(--ease),
              border-color .3s var(--ease),
              color .3s var(--ease);
  flex-shrink: 0;
}
.sol-card__toggle::before,
.sol-card__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.sol-card__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sol-card.active .sol-card__toggle {
  background: rgba(110,96,206,.15);
  border-color: rgba(110,96,206,.3);
}
.sol-card.active .sol-card__toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sol-card.active .sol-card__toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sol-card__body {
  max-height: 0;
  overflow: hidden;
}

.sol-card__content {
  padding: 0 32px 32px;
  padding-left: 104px;
}

.sol-card__content > p {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sol-card__label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--lavanda);
  margin-bottom: 16px;
}

.sol-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.sol-card__list li {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.sol-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--roxo);
  box-shadow: 0 0 8px var(--roxo-glow);
}

.sol-card__benefit {
  background: rgba(110,96,206,.08);
  padding: 18px 22px;
  border-radius: var(--radius-xs);
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.sol-card__note {
  margin-top: 14px;
  font-size: .8rem;
  font-style: italic;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.solutions__cta {
  text-align: center;
  margin-top: 48px;
}

/* ----------------------------------------------------------------
   12. CONNECTIONS — Horizontal Scroll Gallery
   ---------------------------------------------------------------- */
.connections {
  position: relative;
  background: var(--cream);
  z-index: 1;
  overflow: hidden;
  padding: 140px 0;
}

.connections__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.connections__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 48px;
  flex-shrink: 0;
  gap: 32px;
}

.connections__info {
  text-align: left;
}

.connections__intro {
  max-width: 380px;
  text-align: left;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

.connections__carousel {
  position: relative;
  padding: 0 48px;
}

.connections__track {
  display: flex;
  gap: 20px;
  padding: 4px 0 12px;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.connections__track::-webkit-scrollbar { display: none; }

.connections__nav-group {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
}

.connections__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(110, 96, 206, .25);
  background: #fff;
  color: var(--roxo, #6e60ce);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 10, 50, .12);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
  touch-action: manipulation;
}
.connections__nav:hover:not(:disabled) {
  background: var(--roxo, #6e60ce);
  color: #fff;
  border-color: var(--roxo, #6e60ce);
}
.connections__nav:focus-visible {
  outline: 2px solid var(--roxo, #6e60ce);
  outline-offset: 3px;
}
.connections__nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* Image-overlay card */
.conn-card {
  flex: 0 0 calc((100% - 60px) / 4);
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  display: block;
  scroll-snap-align: start;
  transition: transform .4s var(--ease-out);
}
.conn-card:hover {
  transform: translateY(-6px);
}

.conn-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conn-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(10,6,20,.96) 0%, rgba(10,6,20,.85) 55%, rgba(10,6,20,.4) 85%, transparent 100%);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transform: translateY(0);
}

.conn-card__overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: -.01em;
}

.conn-card__creator {
  font-size: .7rem;
  font-weight: 600;
  color: var(--lavanda);
  display: block;
  margin-bottom: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.conn-card__overlay p {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------------
   13. PORTFOLIO — Editorial List
   ---------------------------------------------------------------- */
.portfolio {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.portfolio > * { position: relative; z-index: 1; }

.portfolio__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.portfolio__header {
  text-align: center;
  margin-bottom: 72px;
}

.portfolio__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.portfolio__list {
  display: flex;
  flex-direction: column;
}

.port-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: border-color .4s var(--ease-out);
}
.port-item:first-child {
  border-top: 1px solid rgba(255,255,255,.06);
}
.port-item:hover {
  border-bottom-color: rgba(201,189,247,.35);
}
.port-item:hover + .port-item {
  border-top-color: rgba(201,189,247,.35);
}
.port-item:hover h3 {
  color: var(--lavanda);
}
.port-item h3 {
  transition: color .35s var(--ease);
}

.port-item__num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--roxo), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .15;
  line-height: 1;
  letter-spacing: -.04em;
  min-width: 80px;
  transition: opacity .5s var(--ease);
}
.port-item:hover .port-item__num {
  opacity: .6;
}

.port-item__content {
  min-width: 0;
}

.port-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110,96,206,.1);
  border-radius: 12px;
  color: var(--lavanda);
  margin-bottom: 16px;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.port-item:hover .port-item__icon {
  background: rgba(110,96,206,.2);
  box-shadow: 0 0 20px var(--roxo-glow);
}

.port-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.port-item p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

.port-item__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.port-item__links a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--lavanda);
  white-space: nowrap;
  transition: color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.port-item__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* ----------------------------------------------------------------
   14. FAQ — Two Columns
   ---------------------------------------------------------------- */
.faq {
  padding: 140px 0;
  background: var(--cream);
}

.faq__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq__col:first-child .faq-item:first-child,
.faq__col:last-child .faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}
.faq-question:hover { color: var(--roxo); }

.faq-num {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--roxo);
  min-width: 28px;
  flex-shrink: 0;
  opacity: .5;
}

.faq-question > span:nth-child(2) { flex: 1; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--roxo);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
}
.faq-answer p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
  padding: 0 0 20px 46px;
}

/* ----------------------------------------------------------------
   15. TESTIMONIALS — Card Grid
   ---------------------------------------------------------------- */
.testimonials {
  margin-top: 100px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

/* Marquee container */
.testimonials__marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 calc(var(--gutter) * -1 - 24px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimonials__row {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testimonials__row--left {
  animation: marqueeLeft 35s linear infinite;
}

.testimonials__row--right {
  transform: translateX(-50%);
  animation: marqueeRight 35s linear infinite;
}

.testimonials__marquee:hover .testimonials__row {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.test-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-width: 380px;
  max-width: 380px;
  transition: border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
  flex-shrink: 0;
}

.test-card:hover {
  border-color: rgba(110,96,206,.3);
  box-shadow: 0 20px 50px rgba(110,96,206,.08);
}

.test-card__stars {
  color: var(--roxo);
  font-size: .75rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.test-card__text {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.8;
  flex: 1;
  margin: 0 0 24px;
  font-style: italic;
  border: none;
  padding: 0;
}

.test-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.test-card__author strong {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.test-card__author span {
  font-size: .8rem;
  color: var(--roxo);
  opacity: .7;
}

/* ----------------------------------------------------------------
   16. CONTACT
   ---------------------------------------------------------------- */
.contact {
  padding: 160px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact > * { position: relative; z-index: 1; }

.contact__orb--1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(110,96,206,.15);
  filter: blur(120px);
  top: -150px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat1 16s ease-in-out infinite;
}
.contact__orb--2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,189,247,.08);
  filter: blur(100px);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat2 12s ease-in-out infinite;
}

.contact__wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.contact__header { margin-bottom: 48px; }

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: .95;
  letter-spacing: -.05em;
  margin-bottom: 20px;
}

.contact__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  background: rgba(255,255,255,.03);
}
.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity var(--duration) var(--ease);
}
.social-icon:hover {
  border-color: var(--roxo);
  background: rgba(110,96,206,.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--roxo-glow);
}
.social-icon:hover img { opacity: 1; }

/* WhatsApp CTA */
.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 44px;
  border-radius: 50px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  transition: transform var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  margin-bottom: 28px;
  position: relative;
}
.contact__whatsapp svg { flex-shrink: 0; }
.contact__whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: #25D366;
  opacity: 0;
  filter: blur(20px);
  z-index: -1;
  transition: opacity .5s var(--ease);
}
.contact__whatsapp:hover {
  background: #1fb855;
  color: var(--white);
  transform: translateY(-4px);
}
.contact__whatsapp:hover::before {
  opacity: .5;
}

.contact__email {
  font-size: .9rem;
  color: rgba(255,255,255,.35);
}
.contact__email a {
  color: var(--lavanda);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact__email a:hover { color: var(--white); }

/* ----------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 48px 0 32px;
}

.footer__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a {
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.footer__social a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: .4;
  transition: opacity var(--duration) var(--ease);
}
.footer__social a:hover {
  border-color: var(--roxo);
  background: rgba(110,96,206,.12);
}
.footer__social a:hover img { opacity: 1; }

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.04);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.55); }
.footer__bottom a:hover { color: var(--white); }

/* ----------------------------------------------------------------
   18. CUSTOM CURSOR
   ---------------------------------------------------------------- */
@media (pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--lavanda);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
    mix-blend-mode: difference;
    opacity: 0;
  }
  .cursor.visible { opacity: 1; }
  .cursor.hover {
    width: 56px;
    height: 56px;
    background: rgba(201,189,247,.15);
    mix-blend-mode: normal;
  }

  .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,189,247,.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease), height .4s var(--ease), border-color .4s var(--ease), opacity .4s var(--ease);
    opacity: 0;
  }
  .cursor-follower.visible { opacity: 1; }
  .cursor-follower.hover {
    width: 72px;
    height: 72px;
    border-color: rgba(110,96,206,.4);
  }
}
@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none !important; }
}

/* ----------------------------------------------------------------
   19. MAGNETIC BUTTONS
   ---------------------------------------------------------------- */
.magnetic {
  position: relative;
  transition: transform .3s var(--ease-out), background var(--duration) var(--ease),
              border-color var(--duration) var(--ease), color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  will-change: transform;
}

/* ----------------------------------------------------------------
   20. SCROLL REVEAL — IntersectionObserver + CSS transitions
   ---------------------------------------------------------------- */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safety: reduced motion users see everything immediately */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-ticker__track,
  .testimonials__row,
  .hero__orb,
  .hero__accent {
    animation: none !important;
  }

  .brand-ticker__track,
  .testimonials__row {
    transform: none !important;
  }

  .testimonials__marquee {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    margin: 0;
    padding: 0 0 8px;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-gutter: stable both-edges;
  }

  .conn-card,
  .conn-card:hover,
  .conn-card__img,
  .conn-card__overlay,
  .conn-card__overlay p {
    transition: none !important;
    transform: none !important;
  }

  .conn-card__overlay p {
    opacity: 1 !important;
  }

  .sr, .connections__track .conn-card, .faq__columns .faq-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ----------------------------------------------------------------
   21. RESPONSIVE — Tablet (max-width: 991px)
   ---------------------------------------------------------------- */
@media (max-width: 991px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__text { align-items: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof { align-self: center; }
  .hero__visual { order: -1; }
  .hero__photo-wrapper {
    max-width: 430px;
  }
  .hero__photo-wrapper::before {
    inset: 14% 12% 16%;
  }
  .hero__photo-wrapper::after {
    inset: 10% 14% 12%;
  }
  .hero__photo-card--primary {
    left: 18%;
    width: 50%;
    height: 59%;
  }
  .hero__photo-card--top {
    width: 33%;
    height: 23%;
  }
  .hero__photo-card--middle {
    width: 33%;
    height: 34%;
  }
  .hero__photo-card--wide {
    width: 60%;
  }
  .hero__photo-card--accent {
    width: 25%;
    height: 18%;
    right: 6%;
  }
  .hero__orb--1 { width: 300px; height: 300px; }
  .hero__orb--2 { width: 250px; height: 250px; }

  /* About */
  .about { padding: 100px 0; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about__bg-text { font-size: 18rem; left: -20px; }
  .about__photo-col {
    max-width: 440px;
    margin: 0 auto;
  }

  /* Solutions */
  .solutions { padding: 100px 0; }
  .sol-card__content { padding-left: 32px; }

  /* Connections — tablet */
  .connections { padding: 100px 0; }
  .connections__carousel { padding: 0 32px; }
  .connections__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--gutter);
    gap: 16px;
  }
  .connections__info { text-align: center; }
  .connections__nav-group { justify-content: center; }
  .connections__intro {
    text-align: center;
    max-width: 600px;
  }
  .connections__nav { width: 42px; height: 42px; }
  .conn-card {
    flex: 0 0 calc((100% - 40px) / 3);
    aspect-ratio: 3 / 4;
  }

  /* Portfolio */
  .portfolio { padding: 100px 0; }
  .port-item { gap: 24px; }
  .port-item__num { font-size: 3rem; min-width: 50px; }

  /* FAQ */
  .faq { padding: 100px 0; }

  /* Testimonials */
  .test-card {
    min-width: 320px;
    max-width: 320px;
  }

  /* Contact */
  .contact { padding: 120px 0; }
}

/* ----------------------------------------------------------------
   22. RESPONSIVE — Mobile (max-width: 767px)
   ---------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --radius: 14px;
  }

  /* Hero */
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__sub { font-size: 1rem; }
  .hero__proof { padding: 12px 20px; gap: 10px; }
  .hero__proof-num { font-size: 1.5rem; }
  .hero__proof-text { font-size: .6rem; }
  .hero__orb--1 { width: 200px; height: 200px; filter: blur(60px); }
  .hero__orb--2 { width: 180px; height: 180px; filter: blur(60px); }
  .hero__photo-wrapper {
    max-width: 336px;
    aspect-ratio: .92;
  }
  .hero__photo-wrapper::before {
    inset: 16% 11% 16%;
    border-radius: 34px 22px 40px 24px;
  }
  .hero__photo-wrapper::after {
    inset: 12% 14% 12%;
    border-radius: 36px 24px 42px 24px;
  }
  .hero__photo-card {
    box-shadow:
      0 14px 36px rgba(6, 4, 16, .28),
      inset 0 0 0 1px rgba(255,255,255,.05);
  }
  .hero__photo-card--primary {
    left: 17%;
    width: 50%;
    height: 58%;
    border-radius: 30px 20px 34px 18px;
  }
  .hero__photo-card--top {
    width: 34%;
    height: 21%;
    border-radius: 18px 12px 22px 10px;
  }
  .hero__photo-card--middle {
    right: 1%;
    width: 34%;
    height: 33%;
    border-radius: 18px 24px 16px 22px;
  }
  .hero__photo-card--wide {
    left: 4%;
    width: 63%;
    height: 20%;
    border-radius: 24px 18px 28px 16px;
  }
  .hero__photo-card--accent {
    right: 4%;
    bottom: 13%;
    width: 26%;
    height: 16%;
    border-radius: 16px 22px 14px 20px;
  }

  /* Brand ticker */
  .brand-ticker { padding: 18px 0; }
  .brand-ticker__item { font-size: 1rem; padding: 0 10px; }

  /* About */
  .about { padding: 80px 0; }
  .about__bg-text { font-size: 12rem; }
  .about__photo-col { max-width: 360px; }
  .about__stats { margin-top: -36px; }
  .about__stat { padding: 18px 12px; }
  .about__stat-num { font-size: 1.5rem; }
  .about__content p { font-size: .95rem; }

  /* Solutions */
  .solutions { padding: 80px 0; }
  .sol-card__header { padding: 20px 20px; gap: 16px; }
  .sol-card__num { font-size: 1.6rem; min-width: 36px; }
  .sol-card__title { font-size: 1rem; }
  .sol-card__short { font-size: .8rem; }
  .sol-card__content { padding: 0 20px 24px; padding-left: 20px; }
  /* Connections */
  .connections { padding: 80px 0; }
  .connections__carousel { padding: 0 16px; }
  .connections__nav-group { display: none; }
  .conn-card { flex: 0 0 calc((100% - 20px) / 1.4); }
  .conn-card__overlay {
    transform: translateY(calc(100% - 60px));
  }
  .conn-card__overlay h4 { font-size: .9rem; }
  .conn-card__creator { font-size: .6rem; margin-bottom: 4px; }
  .conn-card__overlay p { font-size: .75rem; }

  /* Portfolio */
  .portfolio { padding: 80px 0; }
  .port-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .port-item__num { font-size: 3rem; }
  .port-item__links { flex-direction: row; gap: 16px; }

  /* FAQ */
  .faq { padding: 80px 0; }
  .faq__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq__col:last-child .faq-item:first-child {
    border-top: none;
  }
  .faq-question { font-size: .92rem; padding: 18px 0; }
  .faq-answer p { font-size: .88rem; padding-left: 46px; }

  /* Testimonials */
  .test-card {
    min-width: 280px;
    max-width: 280px;
    padding: 24px;
  }
  .testimonials__row--left { animation-duration: 25s; }
  .testimonials__row--right { animation-duration: 25s; }

  /* Contact */
  .contact { padding: 100px 0; }
  .contact__title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .contact__whatsapp { font-size: .95rem; padding: 16px 32px; }

  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer__links { justify-content: center; gap: 14px; }
  .footer__social { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ----------------------------------------------------------------
   23. RESPONSIVE — Mobile Small (max-width: 479px)
   ---------------------------------------------------------------- */
@media (max-width: 479px) {
  .nav { padding: 0 16px; }
  .nav__inner { height: 64px; }

  .hero { padding: 80px 0 60px; }
  .hero__title { font-size: 2rem; }
  .hero__sub { font-size: .95rem; }
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__label { font-size: .65rem; margin-bottom: 16px; }
  .hero__photo-wrapper {
    max-width: 292px;
    aspect-ratio: .9;
  }
  .hero__photo-wrapper::before {
    inset: 18% 12% 18%;
  }
  .hero__photo-wrapper::after {
    inset: 15% 15% 15%;
  }
  .hero__photo-card--primary {
    left: 18%;
    top: 11%;
    width: 50%;
    height: 57%;
  }
  .hero__photo-card--top {
    width: 34%;
    height: 20%;
  }
  .hero__photo-card--middle {
    width: 35%;
    height: 31%;
  }
  .hero__photo-card--wide {
    width: 64%;
    height: 19%;
  }
  .hero__photo-card--accent {
    width: 27%;
    height: 15%;
  }

  .about { padding: 64px 0; }
  .about__bg-text { font-size: 8rem; }
  .about__photo-col { max-width: 280px; }
  .about__stat-num { font-size: 1.3rem; }
  .about__stat-label { font-size: .6rem; }

  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .solutions { padding: 64px 0; }
  .sol-card__toggle { width: 32px; height: 32px; font-size: 1.2rem; }

  .connections { padding: 64px 0; }
  .connections__track { gap: 12px; }

  .portfolio { padding: 64px 0; }

  .faq { padding: 64px 0; }
  .faq-num { font-size: .75rem; min-width: 24px; }
  .faq-answer p { padding-left: 42px; }

  .about__inner { gap: 40px; }

  .contact { padding: 80px 0; }
  .contact__title { font-size: 2.5rem; }
  .contact__whatsapp { font-size: .88rem; padding: 14px 28px; }
  .contact__socials { gap: 10px; }
  .social-icon { width: 44px; height: 44px; }

  .footer { padding: 36px 0 24px; }
}

/* ----------------------------------------------------------------
   TOUCH DEVICES — prevent sticky hover states
   ---------------------------------------------------------------- */
@media (hover: none) {
  .conn-card__overlay {
    transform: translateY(0);
  }
  .conn-card:hover {
    transform: none;
  }
  .conn-card:hover .conn-card__overlay {
    transform: translateY(0);
  }
  .conn-card:hover .conn-card__overlay p {
    opacity: 1;
  }
  .test-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ----------------------------------------------------------------
   24. FLOATING BUTTONS — WhatsApp + Back to top
   ---------------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  z-index: 90;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), opacity .35s var(--ease), border-color .25s var(--ease);
  touch-action: manipulation;
}
.float-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.float-btn--whatsapp {
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
.float-btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}

.float-btn--top {
  left: 24px;
  width: 40px;
  height: 40px;
  background: rgba(10, 6, 20, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.float-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.float-btn--top:hover {
  background: rgba(10, 6, 20, .8);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

@supports (padding: max(0px)) {
  .float-btn--whatsapp {
    bottom: max(24px, env(safe-area-inset-bottom));
    right: max(24px, env(safe-area-inset-right));
  }
  .float-btn--top {
    bottom: max(24px, env(safe-area-inset-bottom));
    left: max(24px, env(safe-area-inset-left));
  }
}

@media (max-width: 767px) {
  .float-btn--whatsapp { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .float-btn--top { width: 38px; height: 38px; bottom: 20px; left: 20px; }
  @supports (padding: max(0px)) {
    .float-btn--whatsapp { bottom: max(20px, env(safe-area-inset-bottom)); right: max(20px, env(safe-area-inset-right)); }
    .float-btn--top { bottom: max(20px, env(safe-area-inset-bottom)); left: max(20px, env(safe-area-inset-left)); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-btn { transition: none; }
  .float-btn--whatsapp:hover { transform: none; }
  .float-btn--top { transform: none; }
}

/* ----------------------------------------------------------------
   25. PRINT
   ---------------------------------------------------------------- */
@media print {
  .preloader, .nav, .nav__mobile, .cursor, .cursor-follower,
  .brand-ticker, .scroll-progress, .hero__orb, .about__orb,
  .contact__orb, .float-btn { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; }
}
