/* ============================================
   AGORA DISTRIBUIDORA — Premium Website
   Design System + All Styles
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --c-primary: #F04E23;
  --c-accent: #FF4713;
  --c-dark: #1A1A2E;
  --c-dark-2: #16213E;
  --c-light: #F5F7FA;
  --c-white: #FFFFFF;
  --c-text: #2D2D3A;
  --c-text-2: #6B7280;
  --c-tech: #00D4AA;

  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h3: clamp(1.125rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1200px;
  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

input, textarea {
  font: inherit;
  border: none;
  outline: none;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-accent {
  color: var(--c-primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--primary:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 78, 35, 0.35);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--c-white);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--outline-dark {
  border: 1.5px solid var(--c-dark);
  color: var(--c-dark);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--c-dark);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-body);
}

.btn--full {
  width: 100%;
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.section--light {
  background: var(--c-light);
}

.section--dark {
  background: var(--c-dark);
}

.section--cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 50%, #E8421F 100%);
  padding: var(--space-xl) 0;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section__tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
}

.section__tag--light {
  color: var(--c-tech);
}

.section__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--c-white);
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

.section__desc--light {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.header.is-scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
  height: 70px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__menu {
  display: flex;
  gap: 1.75rem;
}

.header__link {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.25rem 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--transition);
}

.header__link:hover {
  color: var(--c-white);
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 0.8125rem;
  padding: 0.625rem 1.5rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--c-dark);
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(240, 78, 35, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  padding: var(--space-lg) 0;
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 1.08;
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__3d-placeholder {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__icon {
  width: 70%;
  height: 70%;
  animation: heroRotate 20s linear infinite;
}

@keyframes heroRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__glow {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  background: radial-gradient(circle, rgba(240, 78, 35, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero__scroll-indicator span {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
  background: var(--c-dark);
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(240, 78, 35, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.page-hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--c-white);
  margin-top: var(--space-sm);
  line-height: 1.15;
}

.page-hero__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: var(--space-md) auto 0;
  line-height: 1.6;
}

/* ========================================
   CARDS — DIFERENCIAIS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card--diff {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.card--diff:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(240, 78, 35, 0.15);
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--c-primary);
  margin-bottom: var(--space-md);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
  color: var(--c-text);
}

.card__text {
  font-size: var(--fs-small);
  color: var(--c-text-2);
  line-height: 1.65;
}

/* ========================================
   NUMBERS
   ======================================== */
.numbers {
  position: relative;
}

.numbers__parallax-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240, 78, 35, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.06) 0%, transparent 50%);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.number-card {
  padding: 2rem 1rem;
}

.number-card__value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--c-white);
  line-height: 1;
  display: inline;
}

.number-card__suffix {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--c-primary);
  margin-left: 0.25rem;
}

.number-card__label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-xs);
}

/* ========================================
   ABOUT
   ======================================== */
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__text {
  font-size: 1.0625rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.badge:hover {
  border-color: var(--c-primary);
  box-shadow: 0 4px 16px rgba(240, 78, 35, 0.1);
}

.badge svg {
  width: 20px;
  height: 20px;
  color: var(--c-tech);
  flex-shrink: 0;
}

.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__map {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.brazil-map {
  width: 100%;
  height: auto;
}

.map-outline {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s ease-out;
}

.map-outline.is-visible {
  stroke-dashoffset: 0;
}

.map-dot {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.map-dot.is-visible {
  opacity: 1;
  animation: dotPulse 2s ease-in-out infinite;
}

.map-dot--main.is-visible {
  animation: dotPulseMain 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { r: 4; }
  50% { r: 6; }
}

@keyframes dotPulseMain {
  0%, 100% { r: 6; }
  50% { r: 9; }
}

.about__map-label {
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--c-primary);
  margin-top: var(--space-sm);
}

/* ========================================
   SOLUTIONS
   ======================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 78, 35, 0.3);
  transform: translateY(-4px);
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card__number {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.solution-card__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--c-white);
  margin-bottom: var(--space-xs);
}

.solution-card__text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.solution-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.solution-card__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(240, 78, 35, 0.12);
  color: var(--c-primary);
}

/* ========================================
   PARTNERS — MARQUEE
   ======================================== */
.partners {
  padding-bottom: var(--space-xl);
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  padding: var(--space-md) 0;
}

.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track--reverse {
  animation-direction: reverse;
}

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

.marquee__item {
  flex-shrink: 0;
  padding: 1.25rem 2.5rem;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--c-text-2);
  transition: all var(--transition);
  white-space: nowrap;
}

.marquee__item:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
  box-shadow: 0 4px 20px rgba(240, 78, 35, 0.1);
}

/* Pause on hover */
.marquee-wrapper:hover .marquee__track {
  animation-play-state: paused;
}

/* ========================================
   WHY AGORA
   ======================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 170, 0.3);
  transform: translateY(-4px);
}

.why__icon {
  width: 48px;
  height: 48px;
  color: var(--c-tech);
  margin-bottom: var(--space-md);
}

.why__icon svg {
  width: 100%;
  height: 100%;
}

.why__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--c-white);
  margin-bottom: var(--space-xs);
}

.why__text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ========================================
   BLOG
   ======================================== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(240, 78, 35, 0.1);
}

.blog-card__img {
  aspect-ratio: 16/10;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.blog-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
}

.blog-card__placeholder svg {
  width: 48px;
  height: 48px;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__cat {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--c-text-2);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--c-text-2);
}

.blog__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ========================================
   CTA / CONTACT
   ======================================== */
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--c-white);
  font-size: var(--fs-small);
  transition: all var(--transition);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.18);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--c-dark);
  padding-top: var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--c-white);
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--c-primary);
}

.footer__bottom {
  padding: var(--space-md) 0;
}

.footer__bottom-inner {
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   ANIMATIONS — initial hidden states
   ======================================== */
[data-stagger] {
  opacity: 0;
  transform: translateY(30px);
}

.split-text .word {
  display: inline-block;
  overflow: hidden;
}

.split-text .word-inner {
  display: inline-block;
  transform: translateY(100%);
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-stagger] {
    opacity: 1;
    transform: none;
  }

  .split-text .word-inner {
    transform: none;
  }

  .hero__icon {
    animation: none;
  }

  .marquee__track {
    animation: none;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

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

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

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

  .about__visual {
    order: -1;
  }

  .about__map {
    max-width: 280px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--c-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .header__link {
    font-size: 1.125rem;
  }

  .header__burger {
    display: flex;
  }

  .cards-grid,
  .solutions-grid,
  .blog__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta__form .form-group--full {
    grid-column: 1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__desc {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  .about__badges {
    flex-direction: column;
  }
}
