/* ================================================
   FEITOSA DIGITAL — NOVO SITE
   Style System: CSS Custom Properties + Grid
   Temas: Dark (roxo/laranja) · Light (neutro)
   Max-width: 1400px | Mobile-first
   ================================================ */

/* ─── GSAP SAFETY — elementos sempre visíveis por padrão ─── */
/* GSAP usa immediateRender:false, mas esta regra garante
   que nenhum conteúdo fique oculto se o CDN falhar ou
   ScrollTrigger não disparar */
.service-card,
.solution-card,
.tool-item,
.about__text,
.about__stats-grid,
.section__header,
.cta-section__card {
  opacity: 1;
  transform: none;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family:
    'Exo 2',
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

/* ─── DARK THEME VARIABLES (padrão) ─────────── */
:root {
  --clr-bg: #000716;
  --clr-bg-alt: #050d1f;
  --clr-surface: #0b1628;
  --clr-surface-2: #111e35;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-hover: rgba(139, 107, 197, 0.4);
  --clr-text: #f0eef8;
  --clr-text-muted: #8b8fa8;
  --clr-accent: #fd673b;
  --clr-accent-glow: rgba(253, 103, 59, 0.25);
  --clr-purple: #8b6bc5;
  --clr-purple-lt: #cec4ef;
  --clr-pink: #e4b8bf;
  --grad-brand: linear-gradient(135deg, #8b6bc5 0%, #e4b8bf 100%);
  --grad-accent: linear-gradient(135deg, #fd673b 0%, #ff6cf9 100%);
  --grad-surface: linear-gradient(
    135deg,
    rgba(139, 107, 197, 0.08) 0%,
    rgba(228, 184, 191, 0.08) 100%
  );
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 64px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 60px rgba(139, 107, 197, 0.3);
  --radius-s: 0.8rem;
  --radius-m: 1.6rem;
  --radius-l: 2.4rem;
  --radius-xl: 3.2rem;
  --radius-f: 9999px;
  --header-h: 7.2rem;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── UTILITIES ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 4.8rem;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 6.4rem;
  }
}

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

.section {
  padding: 7.2rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 10rem 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.section__eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  display: inline-block;
}

.section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-text);
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-f);
  padding: 1.2rem 2.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn--lg {
  font-size: 1.6rem;
  padding: 1.6rem 3.2rem;
}

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}

.btn--ghost:hover {
  border-color: var(--clr-text);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  font-size: 1.7rem;
  padding: 1.8rem 4rem;
}

.btn--whatsapp:hover {
  background: transparent;
  color: #25d366;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

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

/* ─── BADGE ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-f);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

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

/* ─── TAG ────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-s);
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  transition: all 0.2s ease;
}

/* ─── LIGHT THEME VARIABLES ─────────────────── */
[data-theme='light'] {
  --clr-bg: #f5f5f7;
  --clr-bg-alt: #ebebf0;
  --clr-surface: #ffffff;
  --clr-surface-2: #f0eef8;
  --clr-border: rgba(0, 0, 0, 0.08);
  --clr-border-hover: rgba(109, 79, 194, 0.35);
  --clr-text: #111827;
  --clr-text-muted: #6b7280;
  --clr-accent: #d9521d;
  --clr-accent-glow: rgba(217, 82, 29, 0.15);
  --clr-purple: #6d4fc2;
  --clr-purple-lt: #9b82d9;
  --clr-pink: #b080a0;
  --grad-brand: linear-gradient(135deg, #6d4fc2 0%, #b080a0 100%);
  --grad-accent: linear-gradient(135deg, #d9521d 0%, #c030d0 100%);
  --grad-surface: linear-gradient(
    135deg,
    rgba(109, 79, 194, 0.05) 0%,
    rgba(176, 128, 160, 0.05) 100%
  );
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 64px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 50px rgba(109, 79, 194, 0.18);
}

/* ─── ICON THEME CLASSES ─────────────────────── */
[data-theme='dark'] .icon-light-only {
  display: none;
}
[data-theme='light'] .icon-dark-only {
  display: none;
}

/* ─── HEADER ─────────────────────────────────── */
/* Header sempre dark, independente do tema da página */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.8rem 0;
  transition: all var(--transition);
  /* Background escuro fixo — não depende do tema */
  background: rgba(0, 7, 22, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Override: variáveis fixadas nos valores dark */
  --clr-text: #f0eef8;
  --clr-text-muted: #8b8fa8;
  --clr-surface: #0b1628;
  --clr-border: rgba(255, 255, 255, 0.08);
}

.header.is-scrolled {
  background: rgba(0, 7, 22, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

@media (min-width: 768px) {
  .header__container {
    padding: 0 4.8rem;
  }
}

.header__logo img {
  height: 3.5rem;
  width: auto;
}

.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

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

.header__nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-f);
  transition: all 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--clr-text);
  background: var(--clr-surface);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__cta {
  display: none;
  font-size: 1.3rem;
  padding: 0.9rem 1.8rem;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

/* ─── THEME TOGGLE ───────────────────────────── */
.theme-toggle {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all 0.2s ease;
  overflow: hidden;
}

.theme-toggle:hover {
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: all 0.3s ease;
}

[data-theme='dark'] .theme-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
[data-theme='dark'] .theme-toggle .icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
[data-theme='light'] .theme-toggle .icon-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}
[data-theme='light'] .theme-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ─── HAMBURGER ──────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 4rem;
  height: 4rem;
  padding: 0.9rem;
  border-radius: var(--radius-s);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--clr-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  text-align: center;
}

.mobile-nav__link {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: color 0.2s ease;
}

.mobile-nav__link:hover {
  color: var(--clr-text);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 8rem;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

.hero__orb--1 {
  width: clamp(40rem, 55vw, 70rem);
  height: clamp(40rem, 55vw, 70rem);
  top: -15rem;
  right: -8rem;
  background: radial-gradient(
    circle,
    rgba(139, 107, 197, 0.22) 0%,
    transparent 70%
  );
}

.hero__orb--2 {
  width: clamp(30rem, 40vw, 50rem);
  height: clamp(30rem, 40vw, 50rem);
  bottom: -8rem;
  left: -5rem;
  background: radial-gradient(
    circle,
    rgba(253, 103, 59, 0.12) 0%,
    transparent 70%
  );
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.6rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 6fr 4fr;
    gap: 8rem;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  order: 2; /* texto abaixo da foto no mobile */
}

@media (min-width: 1024px) {
  .hero__content {
    order: 1;
    gap: 2.8rem;
  }
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--clr-text);
  max-width: 72rem;
}

.hero__subtitle {
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  line-height: 1.75;
  color: var(--clr-text-muted);
  max-width: 54rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* ── Hero Stats ── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--clr-border);
  width: 100%;
  flex-wrap: wrap;
}

@media (min-width: 480px) {
  .hero__stats {
    gap: 3.2rem;
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero__stat-value {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.hero__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--clr-text);
}

.hero__stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--clr-accent);
  margin-left: 0.1em;
}

.hero__stat-label {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: 0.02em;
}

.hero__stat-sep {
  width: 1px;
  height: 3.6rem;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* ── Hero Visual ── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1; /* foto primeiro no mobile */
}

@media (min-width: 1024px) {
  .hero__visual {
    order: 2;
  }
}

.hero__photo-wrap {
  width: clamp(20rem, 60vw, 46rem);
  height: clamp(20rem, 60vw, 46rem);
  border-radius: 50%;
  padding: 4px;
  background: var(--grad-brand);
  animation: glow-pulse 4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 40px rgba(139, 107, 197, 0.25),
      0 0 80px rgba(228, 184, 191, 0.12);
  }
  50% {
    box-shadow:
      0 0 70px rgba(139, 107, 197, 0.5),
      0 0 140px rgba(228, 184, 191, 0.25);
  }
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 5px solid var(--clr-bg);
  display: block;
  transition: border-color 0.35s ease;
}

/* ─── ABOUT ──────────────────────────────────── */
.about {
  background: var(--clr-bg-alt);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.about__lead {
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  line-height: 1.8;
  color: var(--clr-text-muted);
}

.about__contact {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.about__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--clr-text-muted);
  transition: color 0.2s ease;
}

a.about__contact-item:hover {
  color: var(--clr-accent);
}

.about__contact-item--static {
  pointer-events: none;
}

.about__contact-item svg {
  flex-shrink: 0;
  color: var(--clr-purple-lt);
}

/* ── About Socials ── */
.about__socials {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.about__social-link {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all 0.22s ease;
}

.about__social-link:hover {
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ── Stat Cards ── */
.about__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.stat-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-l);
  padding: 2.4rem 2rem;

  @media (min-width: 480px) {
    padding: 3.2rem;
  }
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.stat-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-card--wide {
  grid-column: span 2;
}

.stat-card__num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__suf {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--clr-accent);
}

.stat-card__label {
  font-size: 1.4rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* ─── SERVICES ───────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}

.service-card:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg);
}

.service-card__img-wrap {
  position: relative;
  height: 22rem;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    var(--clr-surface) 100%
  );
  pointer-events: none;
}

.service-card__body {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
}

.service-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-text);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-card:hover .tag {
  color: var(--clr-text);
  border-color: var(--clr-border-hover);
}

.service-card__desc {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  flex: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-accent);
  transition: gap 0.22s ease;
  width: fit-content;
}

.service-card__cta:hover {
  gap: 1.1rem;
}

/* ─── REVIEW PRO CTA ─────────────────────────── */
.review-pro-cta__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0c0e1a 0%, #111827 100%);
  border: 1px solid rgba(253, 103, 59, 0.25);
  padding: 3.2rem 2rem;
  box-shadow: 0 0 80px rgba(253, 103, 59, 0.08);
}

@media (min-width: 640px) {
  .review-pro-cta__card {
    padding: clamp(4rem, 6vw, 7.2rem) clamp(2.4rem, 5vw, 6.4rem);
  }
}

.review-pro-cta__orb {
  position: absolute;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(253, 103, 59, 0.12) 0%,
    transparent 65%
  );
  top: -20rem;
  right: -10rem;
  pointer-events: none;
}

.review-pro-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fd673b;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-f);
  border: 1px solid rgba(253, 103, 59, 0.3);
  background: rgba(253, 103, 59, 0.08);
  margin-bottom: 2.4rem;
}

.review-pro-cta__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .review-pro-cta__content {
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
  }
}

.review-pro-cta__text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.review-pro-cta__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #f0eef8;
}

.review-pro-cta__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #8b8fa8;
}

.review-pro-cta__desc strong {
  color: #fd673b;
  font-weight: 600;
}

.review-pro-cta__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.review-pro-cta__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.45rem;
  color: #c7c6d3;
}

.review-pro-cta__features li svg {
  flex-shrink: 0;
  color: #fd673b;
}

.review-pro-cta__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 0.8rem;
}

.btn--rp {
  background: #fd673b;
  color: #fff;
  border: 2px solid #fd673b;
  border-radius: var(--radius-f);
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn--rp:hover {
  background: transparent;
  color: #fd673b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253, 103, 59, 0.35);
}

.review-pro-cta__note {
  font-size: 1.2rem;
  color: #8b8fa8;
}

/* ── Review Pro Mockup ── */
.review-pro-cta__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-pro-cta__mockup {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 100%;
  max-width: 38rem;
}

.rp-review {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-l);
  padding: 2rem;
}

.rp-review__header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.rp-review__avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b6bc5, #e4b8bf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rp-review__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0eef8;
}

.rp-review__stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 0.05em;
}

.rp-review__badge-new {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-f);
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.rp-review__text {
  font-size: 1.35rem;
  color: #8b8fa8;
  line-height: 1.6;
  font-style: italic;
}

.rp-arrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  color: #fd673b;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.8;
}

.rp-reply {
  background: rgba(253, 103, 59, 0.06);
  border: 1px solid rgba(253, 103, 59, 0.2);
  border-radius: var(--radius-l);
  padding: 2rem;
}

.rp-reply__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.rp-reply__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(253, 103, 59, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd673b;
  flex-shrink: 0;
}

.rp-reply__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fd673b;
  letter-spacing: 0.02em;
}

.rp-reply__text {
  font-size: 1.35rem;
  color: #c7c6d3;
  line-height: 1.7;
}

/* ─── RESUME ─────────────────────────────────── */
.resume {
  background: var(--clr-bg-alt);
}

/* ── Solution Cards ── */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 6.4rem;
}

@media (min-width: 640px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  display: block;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-surface);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.solution-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-card__inner {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.solution-card__badge {
  align-self: flex-start;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-s);
  background: var(--grad-brand);
  color: #fff;
}

.solution-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-text);
}

.solution-card__desc {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-purple-lt);
  margin-top: 0.4rem;
  transition: gap 0.22s ease;
}

.solution-card:hover .solution-card__link {
  gap: 1rem;
}

/* ── Tools Grid ── */
.tools-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-text);
  text-align: center;
  margin-bottom: 3.2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 2rem;
  }
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.4rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-l);
  transition: all 0.22s ease;
  cursor: default;
}

.tool-item:hover {
  border-color: var(--clr-border-hover);
  background: var(--clr-surface-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.tool-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-item__icon img {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
  border-radius: 0.6rem;
}

.tool-item__name {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.3;
}

/* ─── CTA SECTION ────────────────────────────── */
.cta-section__card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(5.6rem, 8vw, 10rem) clamp(2.4rem, 5vw, 6.4rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  overflow: hidden;
}

.cta-section__orb {
  position: absolute;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 107, 197, 0.1) 0%,
    transparent 65%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-text);
  max-width: 76rem;
}

.cta-section__subtitle {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: 1.75;
  color: var(--clr-text-muted);
  max-width: 58rem;
}

.cta-section__info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  /* sempre dark, independente do tema */
  --clr-bg: #000716;
  --clr-bg-alt: #080e1f;
  --clr-text: #f0eef8;
  --clr-text-muted: #8b8fa8;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-surface: rgba(255, 255, 255, 0.04);
  background: #080e1f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6.4rem 0 3.2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6.4rem;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer__brand img {
  height: 3rem;
  width: auto;
}

.footer__tagline {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  max-width: 32rem;
}

.footer__cnpj {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  opacity: 0.55;
}

.footer__nav-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__nav-list a {
  font-size: 1.4rem;
  color: var(--clr-text-muted);
  transition: color 0.2s ease;
}

.footer__nav-list a:hover {
  color: var(--clr-text);
}

.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__social-links a {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all 0.22s ease;
}

.footer__social-links a:hover {
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.footer__bottom {
  padding-top: 3.2rem;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.footer__bottom p {
  font-size: 1.3rem;
  color: var(--clr-text-muted);
}

/* ─── FLOATING WHATSAPP ──────────────────────── */
.float-wa {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 50;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  opacity: 0;
  transform: scale(0.7) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.float-wa.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.float-wa:hover {
  transform: scale(1.12) translateY(0);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

/* ─── ACCESSIBILITY ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

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

  html {
    scroll-behavior: auto;
  }

  .hero__photo-wrap {
    animation: none !important;
  }

  .badge__dot {
    animation: none !important;
  }
}
