/* ========================================
   HZ Marketing Digital - Premium Styles
   Methodology: BEM + CSS Custom Properties
   ======================================== */

:root {
  /* Colors */
  --c-black: #0a0a0f;
  --c-dark: #12121a;
  --c-card: #1a1a2e;
  --c-card-hover: #1f1f35;
  --c-border: #2a2a3e;
  --c-purple: #7c3aed;
  --c-lilac: #a855f7;
  --c-neon: #c084fc;
  --c-glow: #e879f9;
  --c-white: #ffffff;
  --c-gray: #94a3b8;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  --grad-glow: radial-gradient(600px circle, rgba(168, 85, 247, 0.15), transparent 60%);
  --grad-card: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(18, 18, 26, 0.9));
  
  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container: min(1200px, 92vw);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out);
}

/* ======= RESET & BASE ======= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--c-black);
  color: var(--c-white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ======= SECTION TAG ======= */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 50px;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 600;
  color: var(--c-lilac);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section__tag--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--c-white);
}

/* ======= HEADER ======= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  padding: 0.5rem 0;
}

.header__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.header__logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__logo-sub {
  font-size: 0.65rem;
  color: var(--c-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-gray);
  transition: color var(--transition);
  position: relative;
}

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

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

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

.header__link--cta {
  background: var(--grad-primary);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
}

.header__link--cta::after {
  display: none;
}

.header__link--cta:hover {
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.header__hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__hamburger--active .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger--active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger--active .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.15), transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 35px) scale(1.02); }
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-neon);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-glow);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title-highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--c-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.hero__btn--primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 25px rgba(124, 58, 237, 0.3);
}

.hero__btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(124, 58, 237, 0.45);
}

.hero__btn--primary:hover::before {
  opacity: 1;
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  backdrop-filter: blur(10px);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.hero__stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
}

.hero__stat-plus {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-lilac);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--c-gray);
  margin-top: 0.25rem;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero Visual - Browser Mockup */
.hero__visual {
  perspective: 1000px;
}

.hero__browser {
  background: var(--c-dark);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-out);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(168, 85, 247, 0.08);
}

.hero__browser:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero__browser-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--c-border);
}

.hero__browser-dots {
  display: flex;
  gap: 6px;
}

.hero__browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero__browser-dots span:first-child { background: #ff5f56; }
.hero__browser-dots span:nth-child(2) { background: #ffbd2e; }
.hero__browser-dots span:nth-child(3) { background: #27c93f; }

.hero__browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  color: var(--c-gray);
}

.hero__browser-body {
  padding: 2rem;
  min-height: 300px;
}

.hero__mock-badge {
  width: 40%;
  height: 8px;
  background: rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero__mock-title {
  width: 80%;
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.hero__mock-title--short {
  width: 55%;
  margin-bottom: 1.2rem;
}

.hero__mock-text {
  width: 90%;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.hero__mock-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__mock-btn {
  width: 30%;
  height: 12px;
  background: var(--grad-primary);
  border-radius: 6px;
}

.hero__mock-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__mock-chart {
  margin-top: 2rem;
}

.hero__mock-svg {
  width: 100%;
  height: auto;
}

.hero__chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 3s ease-out forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.hero__chart-area {
  opacity: 0;
  animation: fade-in-area 1.5s ease-out 1.5s forwards;
}

@keyframes fade-in-area {
  to { opacity: 1; }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce-scroll 2s ease-in-out infinite;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--c-lilac);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ======= SOBRE ======= */
.sobre {
  padding: var(--section-pad) 0;
  position: relative;
}

.sobre__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.sobre__text {
  color: var(--c-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sobre__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.sobre__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.08);
  border-radius: 12px;
  transition: all var(--transition);
}

.sobre__feature:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateX(4px);
}

.sobre__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  border-radius: 10px;
  color: white;
}

.sobre__feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.sobre__feature span {
  font-size: 0.82rem;
  color: var(--c-gray);
}

.sobre__image {
  position: relative;
}

.sobre__image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.sobre__image-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.sobre__image-frame:hover img {
  transform: scale(1.05);
}

.sobre__image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), transparent 50%);
  pointer-events: none;
}

.sobre__image-card {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: var(--c-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sobre__image-card-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sobre__image-card-text {
  font-size: 0.75rem;
  color: var(--c-gray);
  max-width: 150px;
}

/* ======= SERVIÇOS ======= */
.servicos {
  padding: var(--section-pad) 0;
  position: relative;
}

.servicos__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.servicos__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.servicos__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.servicos__subtitle {
  color: var(--c-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servicos__card {
  background: var(--grad-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.servicos__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.servicos__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.servicos__card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.05);
}

.servicos__card:hover::before {
  transform: scaleX(1);
}

.servicos__card:hover::after {
  opacity: 1;
}

.servicos__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 14px;
  color: var(--c-lilac);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.servicos__card:hover .servicos__card-icon {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.servicos__card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.servicos__card-text {
  color: var(--c-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.servicos__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.servicos__card-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 50px;
  color: var(--c-neon);
}

.servicos__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-lilac);
  transition: all var(--transition);
}

.servicos__card-link:hover {
  color: var(--c-glow);
  gap: 0.7rem;
}

/* ======= RESULTADOS ======= */
.resultados {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.resultados__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent 50%),
    linear-gradient(225deg, rgba(168, 85, 247, 0.06), transparent 50%);
  pointer-events: none;
}

.resultados__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.resultados__header {
  text-align: center;
  margin-bottom: 4rem;
}

.resultados__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.resultados__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.resultados__card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.resultados__card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.resultados__card-icon {
  display: flex;
  justify-content: center;
  color: var(--c-lilac);
  margin-bottom: 1rem;
}

.resultados__card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.resultados__card-plus {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--c-lilac);
}

.resultados__card-label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-gray);
  margin-top: 0.5rem;
}

/* ======= DEPOIMENTOS ======= */
.depoimentos {
  padding: var(--section-pad) 0;
}

.depoimentos__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.depoimentos__header {
  text-align: center;
  margin-bottom: 4rem;
}

.depoimentos__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimentos__card {
  background: var(--grad-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.depoimentos__card:hover {
  border-color: rgba(168, 85, 247, 0.25);
  transform: translateY(-4px);
}

.depoimentos__card-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.depoimentos__card-text {
  font-size: 0.95rem;
  color: var(--c-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.depoimentos__card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depoimentos__card-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.2);
}

.depoimentos__card-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.depoimentos__card-author span {
  font-size: 0.78rem;
  color: var(--c-gray);
}

/* ======= CTA ======= */
.cta {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cta__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  top: -30%;
  left: 20%;
}

.cta__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.12), transparent 70%);
  bottom: -20%;
  right: 10%;
}

.cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cta__content {
  text-align: center;
}

.cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta__text {
  color: var(--c-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 25px rgba(124, 58, 237, 0.35);
}

.cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.5);
}

.cta__btn--outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: var(--c-white);
}

.cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: none;
}

.cta__note {
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.7);
}

/* ======= FOOTER ======= */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--c-border);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer__logo-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__logo-sub {
  font-size: 0.65rem;
  color: var(--c-gray);
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--c-gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--c-gray);
  transition: color var(--transition);
}

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

.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gray);
  font-size: 0.85rem;
}

.footer__links--contact svg {
  flex-shrink: 0;
  color: var(--c-lilac);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.5);
}

/* ======= WHATSAPP FLOAT ======= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: float-whatsapp 3s ease-in-out infinite;
}

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

@keyframes float-whatsapp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ======= REVEAL ANIMATION ======= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ======= RESPONSIVE ======= */

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

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

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__browser {
    transform: none;
  }

  .sobre__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
  .header__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1000;
  }

  .header__menu--open {
    transform: translateX(0);
  }

  .header__link {
    font-size: 1.2rem;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero__visual {
    display: none;
  }

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

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

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

  .sobre__image-card {
    right: 1rem;
    padding: 1rem;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

/* Small Mobile */
@media (max-width: 400px) {
  .resultados__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2rem;
  }
}