/* R MKT — Modernização visual + conversão 2026 */

:root {
  --grad-brand: linear-gradient(135deg, #8EB69B 0%, #DAF1DD 50%, #8EB69B 100%);
  --grad-hero: linear-gradient(135deg, #0e2622 0%, #153832 40%, #0a1a14 100%);
  --grad-cta: linear-gradient(135deg, #8EB69B 0%, #6fa882 100%);
  --grad-cta-hover: linear-gradient(135deg, #235347 0%, #153832 100%);
  --glow-green: 0 0 60px rgba(142, 182, 155, 0.35);
  --glow-strong: 0 0 80px rgba(142, 182, 155, 0.5);
  --font-display: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
}

/* ── Nav aprimorada ── */
.nav.scrolled {
  background: rgba(3, 8, 6, 0.96);
  border-bottom-color: rgba(142, 182, 155, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav-cta-primary {
  background: var(--grad-cta) !important;
  color: #0e2622 !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 24px rgba(142, 182, 155, 0.45);
  animation: cta-glow 3s ease-in-out infinite;
}
.nav-cta-primary:hover {
  background: var(--grad-cta-hover) !important;
  color: #DAF1DD !important;
  transform: translateY(-2px) scale(1.02);
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(142, 182, 155, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(142, 182, 155, 0.65); }
}

/* ── Hero espetacular ── */
.hero {
  min-height: 100svh;
  padding-top: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(142, 182, 155, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(35, 83, 71, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(142, 182, 155, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 182, 155, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-inner {
  padding-top: 120px !important;
  padding-bottom: 100px !important;
}
.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem) !important;
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(142, 182, 155, 0.2);
  font-size: 0.78rem;
  color: var(--d-text);
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--green); font-size: 0.85rem; }

.hero-pane {
  background: rgba(21, 56, 50, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(142, 182, 155, 0.25);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--glow-green), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.hero-pane::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}
.hero-pane-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(142, 182, 155, 0.15);
  filter: blur(60px);
  top: -50px; right: -50px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: var(--d-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}

/* ── Botões de conversão ── */
.btn-primary {
  position: relative;
  overflow: hidden;
  border-radius: 12px !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  background: var(--grad-cta) !important;
  color: #0e2622 !important;
  box-shadow: 0 6px 28px rgba(142, 182, 155, 0.5) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--glow-strong) !important;
  background: var(--grad-cta-hover) !important;
  color: #DAF1DD !important;
}
.btn-whatsapp {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  border: 1px solid rgba(142, 182, 155, 0.35) !important;
  box-shadow: none !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  transition: all 0.3s ease !important;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: #25d366 !important;
  color: #25d366 !important;
  transform: translateY(-3px) !important;
}
.btn-pulse {
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 6px 28px rgba(142, 182, 155, 0.45); }
  50% { box-shadow: 0 6px 48px rgba(142, 182, 155, 0.75), 0 0 0 8px rgba(142, 182, 155, 0.12); }
}

/* ── Trust bar ── */
.trust-bar {
  background: linear-gradient(180deg, #030806 0%, #0e2622 100%);
  border-top: 1px solid rgba(142, 182, 155, 0.1);
  border-bottom: 1px solid rgba(142, 182, 155, 0.1);
  padding: 28px 24px;
  position: relative;
  z-index: 2;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--d-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-item i {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(142, 182, 155, 0.12);
  border-radius: 10px;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-item strong { color: var(--d-text); display: block; font-size: 0.95rem; }

/* ── Faixa de conversão ── */
.conv-strip {
  background: linear-gradient(135deg, #1f5a4c 0%, #0e2622 48%, #153832 100%);
  padding: 52px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 182, 155, 0.32);
  box-shadow:
    0 24px 64px rgba(6, 15, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.conv-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(142, 182, 155, 0.38) 0%, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(218, 241, 221, 0.08) 0%, transparent 45%);
  pointer-events: none;
}
.conv-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(218, 241, 221, 0.06);
  pointer-events: none;
}
.conv-strip--card {
  margin-top: 28px;
  border-radius: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.conv-strip-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.conv-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  color: #ffffff !important;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  line-height: 1.2;
}
#problemas .conv-strip h3,
#nossos-servicos .conv-strip h3,
#metodologia .conv-strip h3,
#faq .conv-strip h3,
#solutions-accordion .conv-strip h3 {
  color: #ffffff !important;
}
.conv-strip p {
  color: #DAF1DD !important;
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 500;
  opacity: 0.95;
}
#problemas .conv-strip p,
#nossos-servicos .conv-strip p,
#metodologia .conv-strip p,
#faq .conv-strip p,
#solutions-accordion .conv-strip p {
  color: #DAF1DD !important;
}
.conv-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.conv-strip .btn-primary {
  background: linear-gradient(135deg, #8EB69B 0%, #c8e6d0 100%) !important;
  color: #0a1f1a !important;
  box-shadow: 0 8px 32px rgba(142, 182, 155, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}
.conv-strip .btn-primary:hover {
  background: linear-gradient(135deg, #DAF1DD 0%, #8EB69B 100%) !important;
  color: #0e2622 !important;
}
.conv-strip .btn-whatsapp {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(218, 241, 221, 0.55) !important;
  backdrop-filter: blur(6px);
}
.conv-strip .btn-whatsapp:hover {
  background: rgba(218, 241, 221, 0.14) !important;
  border-color: #DAF1DD !important;
  color: #DAF1DD !important;
}
.conv-strip-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(218, 241, 221, 0.72) !important;
  opacity: 1;
}

/* Headline multi-tipografia — faixa de conversão (Serviços) */
.conv-headline {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 8px 0 0;
  text-align: center;
}

.conv-headline-intro {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4.75rem, 13vw, 9.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
  background: linear-gradient(135deg, #DAF1DD 0%, #8EB69B 55%, #235347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 32px rgba(142, 182, 155, 0.45));
}

.conv-headline-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 6.5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0;
  color: #DAF1DD !important;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.35);
}

.conv-headline-lead {
  display: block;
}

.conv-headline-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.75rem, 8.5vw, 5.75rem);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 18px 0;
  background: linear-gradient(135deg, #DAF1DD 0%, #8EB69B 55%, #235347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(142, 182, 155, 0.45));
}

.conv-headline-company {
  display: block;
}

.conv-headline-closing {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  margin: 26px 0 0;
  color: rgba(218, 241, 221, 0.9) !important;
}

@media (max-width: 520px) {
  .conv-headline-intro {
    font-size: clamp(3.75rem, 17vw, 6.5rem);
  }

  .conv-headline-title {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .conv-headline-value {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
    margin: 14px 0;
  }

  .conv-headline-closing {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }
}

/* ── CTAs nos slides de serviço ── */
.slide-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.slide-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  text-decoration: none;
}
.slide-cta-primary {
  background: var(--grad-cta);
  color: #0e2622;
  box-shadow: 0 4px 20px rgba(142, 182, 155, 0.4);
}
.slide-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}
.slide-cta-secondary {
  background: transparent;
  color: #235347;
  border: 1.5px solid #8EB69B;
}
.slide-cta-secondary:hover {
  background: rgba(142, 182, 155, 0.1);
}

/* ── Cards de serviço com hover premium ── */
.solution-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.solution-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--glow-green), 0 20px 50px rgba(0,0,0,0.3) !important;
}
.solution-card .solution-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  text-decoration: none;
}
.solution-card:hover .solution-cta-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── Sticky conversion bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(3, 8, 6, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(142, 182, 155, 0.2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  font-size: 0.88rem;
  color: var(--d-muted);
  display: none;
}
.sticky-cta-text strong { color: #fff; }
.sticky-cta .btn-primary {
  padding: 12px 24px !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
}
.sticky-cta-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 8px;
  transition: color 0.2s;
}
.sticky-cta-close:hover { color: #fff; }

@media (min-width: 640px) {
  .sticky-cta-text { display: block; }
}

/* ── WhatsApp flutuante ── */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}
.wa-float-tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: #153832;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── CTA final antes do footer ── */
.final-cta {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(142, 182, 155, 0.15) 0%, transparent 60%),
    #030806;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(142, 182, 155, 0.08);
  filter: blur(100px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.final-cta p {
  color: var(--d-muted);
  font-size: 1.05rem;
  margin: 0 0 36px;
  line-height: 1.7;
}
.final-cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}
.final-cta-benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(142, 182, 155, 0.08);
  border: 1px solid rgba(142, 182, 155, 0.15);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--d-text);
}
.final-cta-benefit i { color: var(--green); }

/* ── Section titles premium ── */
.section-title {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em !important;
}

/* ── Footer aprimorado ── */
.footer {
  padding: 48px 24px 120px !important;
}
.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 32px;
}

/* ── Responsivo hero ── */
@media (max-width: 880px) {
  .hero-stats-row { grid-template-columns: 1fr; gap: 12px; }
  .hero-stat { display: flex; align-items: center; gap: 12px; text-align: left; }
  .wa-float { bottom: 80px; right: 16px; width: 54px; height: 54px; font-size: 1.4rem; }
  .wa-float-tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-pulse, .nav-cta-primary, .wa-float { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
