/* ============================================
   ClickOnyx - Landing Page
   Baseado no template Positivus, adaptado
   para gestão de tráfego pago
   ============================================ */

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

:root {
  /* Brand Colors */
  --bg-dark: #0B0B0F;
  --bg-section: #111118;
  --bg-card: #1A1A2E;
  --bg-card-alt: #16163A;

  --cyan: #00C2FF;
  --cyan-dark: #0099CC;
  --magenta: #E91E8C;
  --magenta-dark: #C4177A;
  --gradient: linear-gradient(135deg, var(--cyan), var(--magenta));
  --gradient-hover: linear-gradient(135deg, var(--magenta), var(--cyan));

  --white: #FFFFFF;
  --gray-100: #F0F0F5;
  --gray-200: #C5C5D2;
  --gray-300: #9999AA;
  --gray-400: #66667A;
  --gray-500: #3A3A4E;

  /* Typography */
  --font-main: 'Space Grotesk', sans-serif;
  --font-size-base: 16px;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px 0;
  --gap: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

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

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-200);
  max-width: 580px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 194, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-500);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(11, 11, 15, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-200);
  transition: color 0.3s;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.header__nav a:hover {
  color: var(--white);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- Hero Dashboard Illustration --- */
.hero-dashboard {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.1;
  position: relative;
  perspective: 800px;
}

/* Main dashboard card */
.hero-dash__main {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: dashFloat 6s ease-in-out infinite;
  transform: rotateY(-3deg) rotateX(2deg);
}

@keyframes dashFloat {
  0%, 100% { transform: rotateY(-3deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-1deg) rotateX(1deg) translateY(-10px); }
}

.hero-dash__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--gray-500);
}

.hero-dash__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-dash__dot--red { background: #FF5F57; }
.hero-dash__dot--yellow { background: #FFBD2E; }
.hero-dash__dot--green { background: #28CA42; }

.hero-dash__title-bar {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.hero-dash__body {
  padding: 24px 20px 20px;
}

/* Animated bar chart */
.hero-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-500);
  margin-bottom: 16px;
}

.hero-dash__bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--cyan), rgba(0, 194, 255, 0.3));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.2s ease-out calc(var(--delay) + 0.5s) both;
  position: relative;
}

.hero-dash__bar--accent {
  background: linear-gradient(180deg, var(--magenta), rgba(233, 30, 140, 0.4));
}

@keyframes barGrow {
  from { height: 0; }
  to { height: var(--h); }
}

/* Sparkline */
.hero-dash__sparkline {
  width: 100%;
  height: 40px;
}

.hero-dash__sparkline polyline {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease-out 1s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Floating metric cards */
.hero-metric {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(26, 26, 46, 0.95);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  animation: metricPop 0.5s ease-out forwards;
}

.hero-metric--1 {
  top: -8px;
  right: -20px;
  animation-delay: 1.2s;
  border-color: rgba(0, 194, 255, 0.3);
}

.hero-metric--2 {
  bottom: 70px;
  left: -30px;
  animation-delay: 1.6s;
  border-color: rgba(233, 30, 140, 0.3);
}

.hero-metric--3 {
  bottom: -5px;
  right: 30px;
  animation-delay: 2s;
  border-color: rgba(0, 194, 255, 0.3);
}

@keyframes metricPop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-metric__icon {
  font-size: 1.5rem;
}

.hero-metric__value {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-metric__label {
  font-size: 0.7rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating cursor */
.hero-cursor {
  position: absolute;
  bottom: 120px;
  right: 60px;
  z-index: 3;
  animation: cursorMove 4s ease-in-out infinite;
  opacity: 0;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

@keyframes cursorMove {
  0% { opacity: 1; transform: translate(0, 0); }
  25% { transform: translate(-40px, -20px); }
  50% { transform: translate(-20px, 10px); opacity: 1; }
  75% { transform: translate(10px, -15px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

/* Animated rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

.hero-ring--1 {
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  border-color: rgba(0, 194, 255, 0.06);
  animation: ringRotate 20s linear infinite;
}

.hero-ring--2 {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-color: rgba(233, 30, 140, 0.05);
  animation: ringRotate 15s linear infinite reverse;
}

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

/* ---------- Logos Bar ---------- */
.logos {
  padding: 60px 0;
  border-top: 1px solid var(--gray-500);
  border-bottom: 1px solid var(--gray-500);
}

.logos__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.logos__item {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}

.logos__item:hover {
  color: var(--gray-200);
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-padding);
}

.services__header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.services__header .section-desc {
  margin-bottom: 4px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.service-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card--cyan {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(0, 194, 255, 0.04));
  border: 1px solid rgba(0, 194, 255, 0.2);
}

.service-card--magenta {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12), rgba(233, 30, 140, 0.04));
  border: 1px solid rgba(233, 30, 140, 0.2);
}

.service-card--dark {
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
}

.service-card__content {
  flex: 1;
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card__title span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
}

.service-card--cyan .service-card__title span {
  background: rgba(0, 194, 255, 0.15);
}

.service-card--magenta .service-card__title span {
  background: rgba(233, 30, 140, 0.15);
}

.service-card--dark .service-card__title span {
  background: rgba(255, 255, 255, 0.08);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cyan);
  transition: gap 0.3s;
}

.service-card__link:hover {
  gap: 14px;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 2.5rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 80px 0;
}

.cta-banner__inner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-banner__text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-banner__text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--bg-dark);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* ---------- Case Studies ---------- */
.cases {
  padding: var(--section-padding);
}

.cases__header {
  margin-bottom: 60px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.3s, border-color 0.3s;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.case-card__stat {
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.case-card__label {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.case-card__desc {
  font-size: 0.95rem;
  color: var(--gray-200);
  line-height: 1.6;
}

.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cyan);
  transition: gap 0.3s;
}

.case-card__link:hover {
  gap: 12px;
}

/* ---------- Process ---------- */
.process {
  padding: var(--section-padding);
}

.process__header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

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

.process-item {
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.process-item:hover {
  border-color: var(--cyan);
}

.process-item.active {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.06), rgba(233, 30, 140, 0.03));
}

.process-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-item__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.process-item__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-400);
  min-width: 50px;
}

.process-item.active .process-item__number {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-item__title {
  font-size: 1.2rem;
  font-weight: 600;
}

.process-item__toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}

.process-item__toggle svg {
  width: 16px;
  height: 16px;
}

.process-item__toggle .icon-plus {
  display: block;
}

.process-item__toggle .icon-minus {
  display: none;
}

.process-item.active .process-item__toggle .icon-plus {
  display: none;
}

.process-item.active .process-item__toggle .icon-minus {
  display: block;
}

.process-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.process-item.active .process-item__body {
  max-height: 300px;
  padding-top: 20px;
}

.process-item__body p {
  color: var(--gray-200);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 74px;
  border-top: 1px solid var(--gray-500);
  padding-top: 20px;
}

/* ---------- Team ---------- */
.team {
  padding: var(--section-padding);
}

.team__header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.team-card__desc {
  font-size: 0.85rem;
  color: var(--gray-200);
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-padding);
}

.testimonials__header {
  margin-bottom: 60px;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-sizing: border-box;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__text::before {
  content: '"';
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 0;
  margin-right: 4px;
}

.testimonial-card__author {
  border-top: 1px solid var(--gray-500);
  padding-top: 20px;
}

.testimonial-card__author h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-card__author p {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 2px;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-500);
  border: none;
  transition: all 0.3s;
}

.testimonials__dot.active {
  background: var(--cyan);
  width: 30px;
  border-radius: 10px;
}

.testimonials__arrows {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--gray-500);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonials__arrow:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-padding);
}

.contact__header {
  margin-bottom: 60px;
}

.contact__inner {
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact__form {
  flex: 1;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gray-200);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.contact__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
}

/* Contact animated visual — conversion funnel */
.contact-funnel {
  width: 300px;
  height: 360px;
  position: relative;
}

.contact-funnel__shape {
  width: 100%;
  height: 100%;
}

.contact-funnel__arrow {
  position: absolute;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

.contact-funnel__arrow--1 {
  left: 38%;
  animation: funnelDrop1 3s 0s infinite;
}

.contact-funnel__arrow--2 {
  left: 55%;
  animation: funnelDrop2 3s 0.5s infinite;
}

.contact-funnel__arrow--3 {
  left: 45%;
  animation: funnelDrop1 3s 1s infinite;
}

.contact-funnel__arrow--4 {
  left: 52%;
  animation: funnelDrop2 3s 1.5s infinite;
}

.contact-funnel__arrow--5 {
  left: 35%;
  animation: funnelDrop2 3s 2s infinite;
}

.contact-funnel__arrow--6 {
  left: 48%;
  animation: funnelDrop1 3s 2.5s infinite;
}

.contact-funnel__glow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.4), transparent 70%);
  border-radius: 50%;
  animation: funnelGlow 2s ease-in-out infinite;
}

@keyframes funnelDrop1 {
  0% {
    top: -5%;
    opacity: 0;
    transform: scale(1);
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  100% {
    top: 85%;
    opacity: 0;
    transform: scale(0.4);
  }
}

@keyframes funnelDrop2 {
  0% {
    top: -5%;
    opacity: 0;
    transform: scale(1);
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  100% {
    top: 85%;
    opacity: 0;
    transform: scale(0.4);
  }
}

@keyframes funnelGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--gray-500);
  padding: 60px 0 30px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-500);
}

.footer__brand {
  max-width: 300px;
}

.footer__brand img {
  height: 96px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-200);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--cyan);
}

.footer__contact-info p {
  font-size: 0.9rem;
  color: var(--gray-200);
  margin-bottom: 6px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  transition: all 0.3s;
  padding: 10px;
  box-sizing: border-box;
}

.footer__social svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__social--instagram:hover {
  border-color: #E1306C;
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
}

.footer__social--facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
  background: rgba(24, 119, 242, 0.1);
}

.footer__social--whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 15, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--cyan);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  color: var(--white);
  font-size: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero__desc {
    margin: 0 auto 36px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero-dashboard {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-metric--1 { right: -10px; }
  .hero-metric--2 { left: -10px; }

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

  .services__header,
  .process__header,
  .team__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .contact__inner {
    flex-direction: column;
  }

  .contact__visual {
    display: none;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .footer__top {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

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

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

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

  .hero-metric {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .hero-metric__value { font-size: 1rem; }
  .hero-metric--1 { right: -5px; top: -5px; }
  .hero-metric--2 { left: -5px; }
  .hero-metric--3 { right: 10px; }
  .hero-ring { display: none; }
  .hero-cursor { display: none; }

  .hero__illustration {
    max-width: 320px;
  }

  .section-title {
    font-size: 2rem;
  }

  .logos__grid {
    justify-content: center;
    gap: 24px;
  }

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

  .footer__brand {
    display: none;
  }

  .footer__top {
    justify-content: center;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer__col:nth-child(1),
  .footer__col:nth-child(2) {
    display: none;
  }

  .footer .footer__links {
    justify-content: center;
    width: 100%;
  }

  .footer__col:nth-child(3) {
    width: 100%;
  }

  .footer__col:nth-child(3) h4,
  .footer__col:nth-child(3) .footer__contact-info p {
    text-align: center;
  }

  .footer__col:nth-child(3) .footer__socials {
    display: flex;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .process-item__body p {
    padding-left: 0;
  }

  .process-item__left {
    gap: 16px;
  }

  .process-item {
    padding: 24px;
  }

  .contact__inner {
    padding: 32px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}
