
/* ==============================
   PALETA VERDE – METACELMASTER
   ============================== */
:root {
  --green-primary: #1AFF7C;
  --green-secondary: #00D45A;
  --green-soft: #2EFF9A;
  --green-dark: #0F3D2A;
  --green-glow: rgba(26, 255, 124, 0.35);
}

/* Botões padrão */
button,
.btn {
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  color: #001b0c;
  border-radius: 14px;
}

/* Hover */
button:hover,
.btn:hover {
  box-shadow: 0 0 20px var(--green-glow);
}


/* ============================================
   METACELMASTER - CSS MELHORADO E PROFISSIONAL
   ============================================ */

/* === VARIÁVEIS CSS - MATRIX PRO === */
:root {
  /* Base Matrix Pro */
  --bg0: #070A0A;
  --bg1: #050707;

  --text: #E8FFF1;
  --muted: rgba(232,255,241,.70);

  --matrix: #00FF41;     /* verde NEON vibrante */
  --matrix2: #00FF88;    /* verde NEON secundário */
  --cyan: #00F0FF;       /* detalhe leve */
  --line: rgba(0,255,65,.16);

  --card: rgba(8,14,12,.72);
  --card2: rgba(10,18,15,.86);

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --glow: 0 0 18px rgba(0,255,65,.18);

  /* Espaçamento */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border radius */
  --r: 18px;
  --r2: 22px;
  --r-sm: 12px;
  --r-lg: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-primary: 0 12px 30px rgba(0, 255, 65, 0.20);
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, rgba(0,255,65,.95) 0%, rgba(0,255,88,.85) 100%);
  --gradient-success: linear-gradient(135deg, rgba(0,255,65,.95) 0%, rgba(0,255,88,.85) 100%);
  --gradient-vibrant: linear-gradient(135deg, #00FF41 0%, #00E887 50%, #FF4FD8 100%);
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET E BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font: 16px/1.55 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(0,255,65,.14), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(0,240,255,.09), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Grid Matrix */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0 97%, rgba(0,255,65,.07) 97% 100%),
    linear-gradient(90deg, transparent 0 97%, rgba(0,255,65,.05) 97% 100%);
  background-size: 48px 48px;
  opacity: .28;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: -2;
}

/* Scanlines (bem leve) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,.02) 0px,
    rgba(255,255,255,.02) 1px,
    transparent 2px,
    transparent 6px
  );
  opacity: .20;
  pointer-events: none;
  z-index: -1;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", system-ui;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

code, .pill, .tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

h1 {
  font-size: clamp(26px, 4vw, 38px);
  margin: 12px 0 8px;
  max-width: 580px;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 8px;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  margin: 0 0 8px;
}

p {
  margin: 0;
}

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

strong {
  font-weight: 700;
}

/* === UTILITÁRIOS === */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* === ACESSIBILIDADE === */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 1000;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: var(--primary);
  color: white;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 255, 65, 0.4);
}

*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === TOP BAR === */
.topbar {
  background: rgba(0,0,0,.45);
  border-bottom: 1px solid rgba(0,255,65,.14);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 40;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link {
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.link:hover {
  color: var(--matrix);
  opacity: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(0, 255, 65, 0.35);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.40);
  border-bottom: 1px solid rgba(0,255,65,.14);
  transition: all var(--transition-fast);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: translateY(-2px);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0,255,65,.20);
  background: rgba(6,12,10,.80);
  transition: all var(--transition-fast);
}

.brand:hover img {
  box-shadow: 0 4px 12px rgba(0,255,65,.25);
}

.brand__text strong {
  display: block;
  letter-spacing: 0.3px;
  font-weight: 800;
}

.brand__text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav a:not(.btn):hover {
  color: var(--matrix);
  background: rgba(0,255,65,.06);
  border-color: rgba(0,255,65,.14);
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--matrix);
  transition: width var(--transition-base);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

/* Burger Menu */
.burger {
  display: none;
  background: rgba(6,12,10,.80);
  border: 1px solid rgba(0,255,65,.20);
  border-radius: var(--r-sm);
  padding: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.burger:hover {
  border-color: var(--matrix);
  transform: translateY(-2px);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: all var(--transition-base);
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,65,.22);
  background: linear-gradient(135deg, rgba(0,255,65,.95), rgba(0,255,88,.85));
  color: #02110A;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 50px rgba(0,255,65,.12);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0,255,65,.22);
  filter: brightness(1.05);
}

.btn--gradient {
  background: linear-gradient(135deg, rgba(0,255,65,.95), rgba(0,255,88,.85));
  color: #02110A;
  box-shadow: 0 18px 50px rgba(0,255,65,.12);
}

.btn--gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn--gradient:hover::before {
  left: 100%;
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0,255,65,.22);
}

.btn--gradient:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(6,12,10,.55);
  color: var(--matrix);
  border: 1px solid rgba(0,255,65,.28);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(6,12,10,.80);
  transform: translateY(-2px);
}

.btn--secondary {
  background: rgba(6,12,10,.65);
  color: var(--matrix);
  border: 1px solid rgba(0,255,65,.25);
  font-weight: 600;
}

.btn--secondary:hover {
  background: rgba(6,12,10,.85);
  border-color: var(--matrix);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
}

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

.btn--primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
}

.btn__icon {
  font-size: 20px;
}

.btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn__text strong {
  font-size: 15px;
}

.btn__text small {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  padding: 40px 0 30px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.hero__content {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__card {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(6,12,10,.70);
  border: 1px solid rgba(0,255,65,.20);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(0,255,65,.10);
}

.trust-badge__icon {
  font-size: 16px;
}

.trust-badge__text strong {
  color: var(--matrix);
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  background: rgba(6,12,10,.65);
  border: 1px solid rgba(0,255,65,.18);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* Subtitle */
.subtitle {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 54ch;
  margin: 12px 0;
}

.subtitle__highlight {
  color: var(--matrix);
  font-weight: 600;
}

/* Accents */
.accent {
  color: var(--matrix);
  text-shadow: 0 0 24px rgba(0, 255, 65, 0.18);
}

.accent2 {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(0, 232, 135, 0.14);
}

/* CTA */
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.cta--enhanced {
  margin: 24px 0;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(6,12,10,.65);
  border: 1px solid rgba(0,255,65,.18);
  border-radius: var(--r);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(0,255,65,.08);
}

.social-proof__avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  margin-left: -10px;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:last-child {
  background: var(--gradient-success);
  font-size: 11px;
  font-weight: 800;
}

.social-proof__text {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Badges */
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  font-size: 13px;
  color: var(--text);
  border: 1px solid rgba(0,255,65,.18);
  background: rgba(6,12,10,.60);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.badge:hover {
  background: rgba(6,12,10,.75);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Grid FX */
.gridfx {
  position: absolute;
  inset: -20% -10%;
  background: 
    linear-gradient(transparent 0 97%, rgba(0, 255, 65, 0.10) 97% 100%),
    linear-gradient(90deg, transparent 0 97%, rgba(0, 232, 135, 0.10) 97% 100%);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 30% 10%, black 10%, transparent 60%);
  opacity: 0.20;
  pointer-events: none;
  z-index: -1;
}

/* Decorative Shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

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

.shape--1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape--2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 50%;
  right: 10%;
  animation-delay: 7s;
}

.shape--3 {
  width: 350px;
  height: 350px;
  background: var(--accent2);
  bottom: 20%;
  left: 40%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* === CARDS === */
.card {
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--r2);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0,255,65,.28);
}

.card--glass {
  background:
    radial-gradient(900px 300px at 10% 0%, rgba(0,255,65,.10), transparent 55%),
    radial-gradient(900px 300px at 90% 0%, rgba(0,240,255,.07), transparent 55%),
    linear-gradient(180deg, rgba(10,18,15,.88), rgba(6,10,9,.70));
  border: 1px solid rgba(0,255,65,.20);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(10px);
}

.card--elevated {
  box-shadow: var(--shadow), var(--glow);
}

.card--highlight {
  border: 2px solid var(--matrix);
  background: linear-gradient(180deg, var(--card2), var(--card));
}

.card__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 20px;
}

.card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.card__footer-icon {
  font-size: 16px;
}

/* Check List */
.check {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 12px;
}

.check li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.5;
}

.check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

.check--compact li {
  padding-left: 26px;
}

.heroBtns {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
  position: relative;
}

.section--alt {
  background: rgba(5,10,8,.45);
  border-top: 1px solid rgba(0,255,65,.12);
  border-bottom: 1px solid rgba(0,255,65,.12);
}

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

.head h2 {
  margin-bottom: 12px;
}

.head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* === GRIDS === */
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === PRICING === */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.price {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.price__ribbon {
  position: absolute;
  top: 20px;
  right: -42px;
  background: var(--gradient-primary);
  color: #02110A;
  padding: 6px 50px;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 255, 65, 0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

.price__ribbon--featured {
  background: var(--gradient-success);
}

.price__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding-top: 10px;
}

.price__header h3 {
  flex: 1;
  margin: 0;
  line-height: 1.2;
}

.price__icon {
  font-size: 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.price__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}

.price__value--sm {
  margin: 16px 0 20px;
}

.price__currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}

.price__amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price__value--sm .price__amount {
  font-size: 36px;
}

.price__range {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.price__period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.price__footer {
  margin-top: auto;
  padding-top: 8px;
}

.price__note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
  font-weight: 500;
}

.price--featured {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--primary);
  box-shadow: 
    0 20px 60px rgba(0, 255, 65, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

/* === PRODUCTS === */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.product:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,65,.35);
  box-shadow: 0 22px 70px rgba(0,0,0,.55), 0 0 26px rgba(0,255,65,.16);
}

.product__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 232, 135, 0.3);
}

.product__badge--new {
  background: linear-gradient(135deg, #FF6B6B, #FF4FD8);
}

.product__img {
  position: relative;
  height: 240px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,65,.18);
  background: rgba(6,12,10,.80);
  overflow: hidden;
  margin-bottom: 16px;
}

.product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product:hover .product__img img {
  transform: scale(1.1);
}

.product__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 16, 38, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product:hover .product__overlay {
  opacity: 1;
}

.product__quick-view {
  padding: 12px 20px;
  background: rgba(6,12,10,.75);
  color: var(--matrix);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.product__quick-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.product__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.product__rating {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.product__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  font-size: 11px;
  padding: 5px 12px;
  background: rgba(0, 255, 65, 0.10);
  color: var(--matrix);
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(0, 255, 65, 0.20);
}

.product__cta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.placeholder {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

/* === SERVICE ICON === */
.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-icon--lg {
  font-size: 64px;
}

/* === CALLOUT === */
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--r);
  border: 1px solid rgba(0, 255, 65, 0.20);
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.08), rgba(0, 232, 135, 0.08));
}

.callout__icon {
  font-size: 32px;
}

/* === FAQ === */
.faq {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0,255,65,.18);
  border-radius: var(--r);
  background: rgba(6,12,10,.70);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(0,255,65,.30);
  box-shadow: 0 6px 20px rgba(0,255,65,.12);
}

.faq-item[open] {
  border-color: var(--matrix);
  box-shadow: 0 8px 24px rgba(0,255,65,.16);
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition-fast);
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question:hover {
  background: rgba(0,255,65,.08);
}

.faq-item__icon {
  font-size: 22px;
  flex-shrink: 0;
}

.faq-item__arrow {
  margin-left: auto;
  font-size: 12px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item[open] .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 24px 24px 60px;
  color: var(--muted);
  line-height: 1.7;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--matrix);
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  transition: gap var(--transition-fast);
}

.faq-item__link:hover {
  gap: 12px;
}

.mini {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.mini li {
  margin: 8px 0;
  line-height: 1.5;
}

/* === SCHEDULE === */
.schedule {
  display: grid;
  gap: 16px;
  margin: 20px 0 24px;
}

.schedule__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(6,12,10,.60);
  border: 1px solid rgba(0,255,65,.18);
  border-radius: var(--r-sm);
}

.schedule__days {
  font-weight: 600;
  color: var(--muted);
}

.schedule__hours {
  font-weight: 800;
  color: var(--matrix);
  font-size: 15px;
}

/* === NOTE === */
.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(0,255,65,.18);
  background: rgba(5,8,7,.70);
  backdrop-filter: blur(10px);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(6,12,10,.75);
}

.footer__brand strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.footer__brand p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--text);
}

.footer__col a,
.footer__col p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  transition: color var(--transition-fast);
}

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

.footer__response {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.footer__response strong {
  color: var(--matrix);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer__bottom p {
  color: var(--muted);
  font-size: 14px;
}

.footer__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__badge {
  font-size: 12px;
  padding: 6px 14px;
  background: rgba(6,12,10,.70);
  border: 1px solid rgba(0,255,65,.18);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
}

/* === FLOATING WHATSAPP === */
.floatWA {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0,255,65,.94);
  color: #02110A;
  font-weight: 1000;
  border: 1px solid rgba(0,255,65,.40);
  box-shadow: 0 20px 60px rgba(0,255,65,.18), 0 0 30px rgba(0,255,65,.15);
  transition: all var(--transition-base);
  animation: bounce 2s ease-in-out infinite;
}

.floatWA:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 24px 70px rgba(0,255,65,.26), 0 0 40px rgba(0,255,65,.22);
  animation: none;
}

.floatWA__icon {
  font-size: 24px;
}

.floatWA__text {
  font-size: 15px;
}

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

/* === ANIMATIONS === */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing,
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .subtitle {
    font-size: 16px;
  }
  
  /* Spacing */
  .section {
    padding: 60px 0;
  }
  
  .wrap {
    padding: 0 20px;
  }
  
  /* Top Bar */
  .topbar__right {
    display: none;
  }
  
  /* Navigation */
  .nav {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: rgba(250, 247, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 60;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(0, 255, 65, 0.15);
    background: rgba(6,12,10,.90);
    text-align: center;
  }
  
  .nav a.btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
  }
  
  .burger {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 40px 0 32px;
  }
  
  .social-proof {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Grids */
  .grid2,
  .grid3,
  .pricing,
  .products {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .price--featured {
    transform: none;
  }
  
  /* Products */
  .product__img {
    height: 220px;
  }
  
  /* Footer */
  .footer__links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Floating WhatsApp */
  .floatWA {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
  }
  
  .floatWA__text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .btn--primary {
    flex-direction: column;
    text-align: center;
  }
  
  .btn__text {
    align-items: center;
  }
  
  .price__value {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .price__amount {
    font-size: 40px;
  }
}

/* === PRINT STYLES === */
@media print {
  .topbar,
  .burger,
  .floatWA,
  .btn,
  .hero__shapes,
  .gridfx {
    display: none !important;
  }
  
  body {
    background: rgba(6,12,10,.75);
    color: black;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/* ============================================
   SEÇÃO DE SERVIÇOS TÉCNICOS - PREMIUM
   ============================================ */

.section--services {
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 65, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 232, 135, 0.06) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(180deg, rgba(10,18,15,.88), rgba(6,10,9,.75));
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--matrix);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.tag--premium {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 232, 135, 0.1) 100%);
  border-color: var(--matrix);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: var(--space-md);
  font-weight: 500;
}

/* Grid de Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.service-card {
  background: linear-gradient(180deg, rgba(10,18,15,.88), rgba(6,10,9,.75));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--matrix);
}

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

.service-card--featured {
  background: linear-gradient(135deg, rgba(10,18,15,.95), rgba(6,10,9,.85));
  border: 1px solid rgba(0,255,65,.25);
  box-shadow: 0 0 25px rgba(0,255,65,.12);
}

.service-card__icon {
  font-size: 42px;
  margin-bottom: var(--space-md);
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.service-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* Seção de Marcas */
.brands-section {
  background: linear-gradient(135deg, rgba(10,18,15,.88), rgba(6,10,9,.75));
  border-radius: var(--r-lg);
  padding: var(--space-3xl) var(--space-xl);
  margin-bottom: var(--space-3xl);
  border: 1px solid rgba(0,255,65,.20);
  box-shadow: 0 0 30px rgba(0,255,65,.08);
}

.brands-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: var(--space-xl);
  color: var(--text);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  align-items: center;
  justify-items: center;
}

.brand-item {
  background: rgba(6,12,10,.75);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: var(--space-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  min-height: 80px;
}

.brand-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--matrix);
}

.brand-logo {
  width: 100%;
  max-width: 140px;
}

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

.brand-item--more {
  background: var(--gradient-primary);
  border-color: var(--matrix);
}

.brand-more {
  text-align: center;
}

.brand-more__text {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

/* CTA Section */
.services-cta {
  margin-top: var(--space-3xl);
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--r-lg);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-box__content {
  position: relative;
  z-index: 1;
}

.cta-box__content h3 {
  color: white;
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.cta-box__content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.6;
}

.cta-box__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-box__note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-align: center;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 700;
}

/* Responsivo para seção de serviços */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .cta-box {
    grid-template-columns: 1fr;
    padding: var(--space-xl);
    text-align: center;
  }
  
  .cta-box__content h3 {
    font-size: 22px;
  }
}

/* ============================================
   ÍCONES SVG PROFISSIONAIS
   ============================================ */

/* Ícones gerais */
.btn__icon svg,
.badge__icon,
.trust-badge__icon,
.pill__icon,
.card__footer-icon,
.avatar-icon,
.service-icon,
.service-icon--lg,
.callout__icon svg,
.floatWA__icon svg {
  flex-shrink: 0;
  transition: all var(--transition-base);
}

/* Ícones de botão */
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* Ícones de badge */
.badge__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: var(--matrix);
}

/* Ícones de card de serviço */
.service-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

/* Ícones dos planos */
.price__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

/* Ícones de avatar */
.avatar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  background: rgba(6,12,10,.75);
}

.avatar-icon:first-child {
  margin-left: 0;
}

.avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 11px;
  font-weight: 700;
  margin-left: -10px;
  z-index: 4;
}

/* Card badge com ícone */
.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card__badge svg {
  width: 16px;
  height: 16px;
  color: var(--matrix);
}

/* Pill com ícone */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill__icon {
  width: 16px;
  height: 16px;
}

/* Service icons */
.service-icon,
.service-icon--lg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

/* Responsivo para ícones */
@media (max-width: 768px) {
  .service-card__icon {
    width: 40px;
    height: 40px;
  }
  
  .price__icon {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   NOVAS MELHORIAS - CONVERSÃO
   ============================================ */

/* Banner de Promoção */
.promo-banner {
  background: linear-gradient(135deg, rgba(0,255,65,.95) 0%, rgba(0,255,88,.85) 100%);
  color: #02110A;
  padding: 12px 0;
  position: relative;
  z-index: 100;
  animation: slideDown 0.4s ease-out;
  box-shadow: 0 4px 20px rgba(0,255,65,.20);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.promo-banner__content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}

.promo-banner__icon {
  flex-shrink: 0;
}

.promo-banner__text {
  font-size: 14px;
  font-weight: 500;
}

.promo-banner__text strong {
  font-weight: 700;
}

.promo-banner__timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.95;
}

.promo-banner__close {
  background: rgba(0,0,0,.2);
  border: none;
  color: #02110A;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.promo-banner__close:hover {
  background: rgba(0,0,0,.35);
  transform: rotate(90deg);
}

/* Contador de Estatísticas */
.stats-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 232, 135, 0.05) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(6,12,10,.75);
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--matrix);
}

.stat-item__icon {
  margin: 0 auto var(--space-md);
}

.stat-item__number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.stat-item__label {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

/* Seção Por que Escolher */
.why-section {
  background: rgba(6,12,10,.75);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-card {
  padding: var(--space-xl);
  background: linear-gradient(180deg, rgba(10,18,15,.88), rgba(6,10,9,.75));
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--matrix);
}

.why-card__icon {
  margin-bottom: var(--space-md);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.why-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Seção de Depoimentos */
.testimonials-section {
  background: var(--bg2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(10,18,15,.88), rgba(6,10,9,.75));
  border: 1px solid rgba(0,255,65,.20);
  border-radius: var(--r);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0,0,0,.40);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.55), 0 0 20px rgba(0,255,65,.10);
  border-color: rgba(0,255,65,.35);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.testimonial-card__info p {
  font-size: 13px;
  color: var(--muted);
}

.testimonial-card__rating {
  display: flex;
  gap: 4px;
}

.testimonial-card__content p {
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

/* Formulário de Orçamento */
.quick-quote-section {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.03) 0%, rgba(0, 232, 135, 0.03) 100%);
}

.quick-quote-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.quick-quote__content h2 {
  margin-bottom: var(--space-md);
}

.quick-quote__content p {
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.quick-quote__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-quote__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--muted);
}

.quick-quote__form {
  background: rgba(6,12,10,.75);
  padding: var(--space-3xl);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.quote-form .form-group {
  margin-bottom: var(--space-lg);
}

.quote-form label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
  font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition-base);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--matrix);
  box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}

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

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--space-md);
}

/* Pop-up de Intenção de Saída */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.exit-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.exit-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.exit-popup__content {
  position: relative;
  background: linear-gradient(180deg, rgba(10,18,15,.95), rgba(6,10,9,.90));
  border: 1px solid rgba(0,255,65,.25);
  border-radius: var(--r-lg);
  padding: var(--space-3xl);
  max-width: 540px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0,255,65,.15);
  text-align: center;
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.exit-popup__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  transition: all var(--transition-base);
}

.exit-popup__close:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.exit-popup__icon {
  margin: 0 auto var(--space-lg);
  animation: bounce 2s infinite;
}

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

.exit-popup__content h2 {
  margin-bottom: var(--space-sm);
  font-size: 28px;
}

.exit-popup__subtitle {
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.exit-popup__offer {
  background: var(--bg2);
  border-radius: var(--r);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.exit-popup__discount {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.exit-popup__discount-value {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.exit-popup__discount-label {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

.exit-popup__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.exit-popup__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--muted);
}

.exit-popup__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.exit-popup__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
  font-size: 13px;
  color: var(--muted);
}

/* Responsivo */
@media (max-width: 768px) {
  .promo-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-quote-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .quick-quote__form {
    padding: var(--space-xl);
  }
  
  .exit-popup__content {
    padding: var(--space-xl);
    margin: var(--space-md);
  }
  
  .exit-popup__discount-value {
    font-size: 36px;
  }
}

/* MATRIX PRO OVERRIDE */
:root{
  --bg0:#070A0A;
  --bg1:#050707;
  --text:#E8FFF1;
  --muted:rgba(232,255,241,.70);
  --matrix:#00FF88;
  --matrix2:#00E676;
  --cyan:#00F0FF;
  --line:rgba(0,255,136,.16);
  --card:rgba(8,14,12,.72);
  --card2:rgba(10,18,15,.86);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --glow:0 0 18px rgba(0,255,136,.18);
}
body{
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(0,255,136,.12), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(0,240,255,.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
}
.card{
  background:linear-gradient(180deg,var(--card2),var(--card));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.btn{
  background:linear-gradient(135deg,var(--matrix),var(--matrix2));
  color:#02110A;
  box-shadow:0 18px 50px rgba(0,255,136,.12);
}


/* =========================
   MATRIX CLASSIC – FINAL
========================= */
:root{
  --matrix:  #00FF88;
  --matrix2: #18B95A;
  --text:    #E8FFF1;
  --muted:   rgba(232,255,241,.70);
  --bg-dark: #070A0A;
  --bg-card: rgba(8,14,12,.88);
  --line: rgba(0,255,136,.18);
  --glow: 0 0 22px rgba(0,255,136,.12);
}

.cta-matrix{
  padding:60px 0;
  background: radial-gradient(
    700px 220px at center,
    rgba(0,255,136,.10),
    transparent 60%
  );
}

.cta-box{
  max-width:1100px;
  margin:0 auto;
  padding:34px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;

  background: linear-gradient(
    180deg,
    rgba(10,18,15,.92),
    rgba(6,10,9,.98)
  );

  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:
    0 30px 90px rgba(0,0,0,.7),
    var(--glow);
}

.cta-text h3{
  margin:0 0 8px;
  font-size:26px;
  color:var(--matrix);
}

.cta-text p{
  margin:0;
  color:var(--muted);
  max-width:520px;
}

.cta-action{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

.btn-matrix{
  padding:14px 26px;
  border-radius:14px;
  background: linear-gradient(135deg,var(--matrix),var(--matrix2));
  color:#02110A;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 0 24px rgba(0,255,136,.25);
  transition:.2s;
}

.btn-matrix:hover{
  transform:translateY(-2px);
  box-shadow:0 0 40px rgba(0,255,136,.4);
}

.cta-action span{
  font-size:12px;
  color:rgba(232,255,241,.6);
}



/* =========================================
   MetaCelMaster — Botões Padronizados (PILL)
   Baseado no botão "Nossos Serviços Especializados"
========================================= */
.btn-matrix-pill,
.btn, .btn--ghost, .btn--sm,
.btn-matrix, .btn-matrix-cta,
a.btn, a.btn--ghost, a.btn--sm,
button, input[type="submit"], input[type="button"],
.floatWA{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  height:42px;
  padding:10px 18px;

  border-radius:999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(0,255,136,.45);

  color: var(--matrix, #00FF88);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;

  text-decoration:none;
  cursor:pointer;

  transition: background .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.btn-matrix-pill:hover,
.btn:hover, .btn--ghost:hover, .btn--sm:hover,
.btn-matrix:hover, .btn-matrix-cta:hover,
a.btn:hover, a.btn--ghost:hover, a.btn--sm:hover,
button:hover, input[type="submit"]:hover, input[type="button"]:hover,
.floatWA:hover{
  background: rgba(0,255,136,.08);
  border-color: rgba(0,255,136,.65);
  box-shadow: 0 0 0 2px rgba(0,255,136,.08),
              0 0 24px rgba(0,255,136,.18);
  transform: translateY(-1px);
}

.btn-matrix-pill:active,
.btn:active, .btn--ghost:active, .btn--sm:active,
.btn-matrix:active, .btn-matrix-cta:active,
button:active, input[type="submit"]:active, input[type="button"]:active,
.floatWA:active{
  transform: translateY(0px);
  box-shadow: 0 0 0 2px rgba(0,255,136,.06),
              0 0 18px rgba(0,255,136,.14);
}

/* Preserva botões bloco (largura total) */
.btn--block{
  width:100% !important;
}

/* Remove sombras antigas muito fortes */
.btn, .btn--ghost, .btn--sm, .btn-matrix, .btn-matrix-cta, .floatWA{
  box-shadow:none;
}

/* Variante pequena */
.btn--sm{
  height:38px;
  padding:8px 14px;
  font-size:13px;
}


/* FIX BOTÕES TRANSPARENTES - PRODUÇÃO */
.btn-outline,
.button-outline,
.badge-outline,
.pill,
.tag {
  background: rgba(0, 255, 120, 0.08);
  border: 1px solid rgba(0, 255, 120, 0.45);
  color: #1ED760;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 120, 0.15);
}

.btn-outline:hover,
.button-outline:hover,
.badge-outline:hover,
.pill:hover,
.tag:hover {
  background: rgba(0, 255, 120, 0.18);
  border-color: rgba(0, 255, 120, 0.75);
}


/* AJUSTE TRANSPARÊNCIA (HOSTINGER) — Pills/Tags semi-transparent glass */
.pill, .tag, .badge-outline, .btn-outline, .button-outline{
  background: rgba(0, 0, 0, 0.18) !important;  /* mais transparente */
  border: 1px solid rgba(0, 255, 120, 0.42) !important;
  color: #1ED760 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(0,255,120,.10);
}

.pill:hover, .tag:hover, .badge-outline:hover, .btn-outline:hover, .button-outline:hover{
  background: rgba(0, 255, 120, 0.10) !important;
  border-color: rgba(0, 255, 120, 0.75) !important;
}

/* Mantém botões principais (CTA) sólidos — não mexer */
.btn:not(.btn-outline):not(.button-outline),
.btn-matrix, .btn-matrix-cta, .floatWA{
  background: linear-gradient(135deg, var(--matrix, #00FF88), var(--matrix2, #18B95A)) !important;
  color: #02110A !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
