/* ==========================================================================
   LICITRON CONSULTORIA - DESIGN SYSTEM & MODERN STYLING (2026+)
   Paleta Oficial:
   - Verde Esmeralda Profundo (Primária escura): #06281e / #0B3D2E / #0F5132
   - Verde Limão Elétrico / Vibrant (Acento & Energia): #10B981 / #22C55E / #4ADE80
   - Chumbo / Grafite Premium: #111815 / #1E2A26
   - Off-White / Gelo Suave: #F8FAF9 / #F0F4F2
   - Efeitos: Glassmorphism, Mesh Gradients, Glow Effects, Micro-interações
   ========================================================================== */

:root {
  /* Cores Principais */
  --green-darkest: #061d15;
  --green-dark: #0B3D2E;
  --green-primary: #0F5132;
  --green-medium: #146c43;
  --green-accent: #22C55E;
  --green-lime: #10B981;
  --green-glow: rgba(34, 197, 94, 0.45);
  --lime-glow: rgba(74, 222, 128, 0.35);

  /* Neutros e Superfícies */
  --graphite-dark: #0c1411;
  --graphite: #15221d;
  --graphite-card: #1c2c26;
  --text-main: #1d2924;
  --text-muted: #566860;
  --text-light: #8d9e96;
  --white: #ffffff;
  --off-white: #F8FAF9;
  --surface-tint: #EEF5F1;
  --border-subtle: rgba(11, 61, 46, 0.08);
  --border-glass: rgba(255, 255, 255, 0.14);

  /* Sombras Modernas */
  --shadow-sm: 0 4px 16px -4px rgba(11, 61, 46, 0.08);
  --shadow-md: 0 12px 32px -8px rgba(11, 61, 46, 0.12);
  --shadow-lg: 0 24px 50px -12px rgba(11, 61, 46, 0.18);
  --shadow-glow: 0 0 35px -5px var(--green-glow);
  
  /* Raios e Curvaturas */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transições suaves */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--graphite);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.3rem, 4.8vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Badges & Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.eyebrow.light {
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.25);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.12rem;
  line-height: 1.65;
}

/* Botões Modernos */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(16, 185, 129, 0.55);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -6px rgba(16, 185, 129, 0.7);
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

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

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid rgba(11, 61, 46, 0.18);
}

.btn-ghost:hover {
  border-color: var(--green-accent);
  color: var(--green-primary);
  background: rgba(34, 197, 94, 0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--green-dark);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -5px rgba(0,0,0,0.25);
  background: #fcfdfc;
  color: var(--green-primary);
}

.btn-outline-w {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-w:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 20px 0;
}

header.top {
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px -10px rgba(11, 61, 46, 0.12);
  border-bottom: 1px solid rgba(11, 61, 46, 0.06);
  padding: 12px 0;
}

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

/* Logos dinâmicas no Header */
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-link .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.brand-link .logo-light {
  display: block;
}

.brand-link .logo-dark {
  display: none;
}

header.scrolled .brand-link .logo-light {
  display: none;
}

header.scrolled .brand-link .logo-dark {
  display: block;
}

.menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.menu a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

header.top .menu a {
  color: rgba(255, 255, 255, 0.92);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--green-accent);
  transition: transform var(--transition-normal);
}

.menu a:hover {
  color: var(--green-primary);
}

header.top .menu a:hover {
  color: #4ADE80;
}

.menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--graphite);
  border-radius: 3px;
  transition: var(--transition-normal);
}

header.top .hamburger span {
  background: #ffffff;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, #0F5132, #06281e);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  gap: 8px;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  color: #ffffff;
  font-size: 1.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #4ADE80;
  padding-left: 18px;
}

.mobile-nav-links .m-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: grid;
  place-items: center;
  color: #4ADE80;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover .m-icon {
  background: #10B981;
  color: #ffffff;
  border-color: #10B981;
  transform: scale(1.05);
}

.mobile-menu .m-cta-btn {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-socials a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom: none !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition-fast);
}

.mobile-socials a:hover {
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80 !important;
  padding-left: 16px !important;
}

.mobile-socials a svg {
  flex-shrink: 0;
  fill: currentColor;
}

.close-mm {
  position: absolute;
  top: 26px;
  right: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition-fast);
}

.close-mm:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   HERO SECTION (High-Tech Mesh Glow)
   ========================================================================== */
.hero {
  background: radial-gradient(120% 120% at 75% 15%, #0F5132 0%, #0B3D2E 45%, #051d15 100%);
  color: #ffffff;
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28) 0%, transparent 68%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroPulse 9s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

@keyframes heroPulse {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(-30px, 30px); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #ffffff;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #4ADE80 0%, #22C55E 60%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  margin: 24px 0 36px;
  max-width: 550px;
  line-height: 1.65;
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-checks span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: rgba(34, 197, 94, 0.25);
  color: #4ADE80;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

/* Hero Visual - Card Minimalista & Sutil */
.hero-visual-wrapper {
  perspective: 1000px;
}

.subtle-hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.subtle-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.35);
}

.subtle-brand-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.subtle-brand-badge img {
  height: 38px;
  width: auto;
  opacity: 0.95;
}

.subtle-status {
  font-size: 0.76rem;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.subtle-status .dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
}

.subtle-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.subtle-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.subtle-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateX(4px);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.18);
  color: #4ADE80;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pillar-item strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.pillar-item small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.subtle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.subtle-footer span {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.subtle-footer span::before {
  content: "📍";
  font-size: 0.85rem;
}

.subtle-link {
  color: #4ADE80;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.subtle-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Floating Glass Badges */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatAnim 5s ease-in-out infinite alternate;
}

.float-badge .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.15);
  display: grid;
  place-items: center;
  color: var(--green-primary);
  font-size: 1.1rem;
}

.fb1 { bottom: -20px; left: -26px; animation-delay: 0s; }
.fb2 { top: 35px; right: -28px; animation-delay: 2.5s; }

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

/* ==========================================================================
   AUTHORITY / STATS
   ========================================================================== */
.authority {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-subtle);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.stat {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 61, 46, 0.08);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10B981, #0B3D2E);
  opacity: 0;
  transition: var(--transition-normal);
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 197, 94, 0.3);
}

.stat:hover::before {
  opacity: 1;
}

.stat b {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.03em;
}

.stat b span {
  color: var(--green-accent);
}

.stat small {
  display: block;
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

.authority-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* ==========================================================================
   PROBLEMA SECTION
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}

.prob {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-left: 4px solid #EF4444;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.prob:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.prob .x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #FEE2E2;
  color: #DC2626;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.prob p {
  color: var(--graphite);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.problem-solve {
  margin-top: 48px;
  background: linear-gradient(135deg, #0B3D2E 0%, #0F5132 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.problem-solve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.25), transparent 70%);
}

.problem-solve h3 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  position: relative;
  z-index: 1;
}

.problem-solve h3 span {
  color: #4ADE80;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ==========================================================================
   TIMELINE / COMO FUNCIONA
   ========================================================================== */
.timeline {
  background: radial-gradient(100% 100% at 50% 0%, #0c2b21 0%, #061912 100%);
  color: #ffffff;
}

.timeline .section-head h2 { color: #ffffff; }
.timeline .section-head p { color: rgba(255, 255, 255, 0.78); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), #22C55E, rgba(34, 197, 94, 0.2));
  z-index: 1;
}

.step {
  padding: 0 16px;
  position: relative;
  text-align: center;
}

.step .num {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #0F5132);
  border: 4px solid #061912;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-bounce);
}

.step:hover .num {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.7);
}

.step h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ==========================================================================
   SOLUÇÕES / CARDS
   ========================================================================== */
.services {
  background: var(--off-white);
}

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

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 61, 46, 0.08);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.35);
}

.card .ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0B3D2E 0%, #10B981 100%);
  display: grid;
  place-items: center;
  color: #ffffff;
  margin-bottom: 22px;
  font-size: 1.55rem;
  box-shadow: 0 10px 20px -5px rgba(11, 61, 46, 0.25);
  transition: var(--transition-normal);
}

.card:hover .ic {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--graphite);
}

.card p {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ==========================================================================
   DIFERENCIAL
   ========================================================================== */
.diff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.diff-list {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 61, 46, 0.08);
}

.diff-list h3 {
  color: var(--green-dark);
  margin-bottom: 26px;
  font-size: 1.45rem;
}

.diff-list ul {
  list-style: none;
}

.diff-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  font-weight: 600;
  color: var(--graphite);
  font-size: 1rem;
  border-bottom: 1px solid var(--surface-tint);
}

.diff-list li:last-child {
  border-bottom: none;
}

.diff-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.diff-quote {
  background: radial-gradient(100% 100% at 0% 0%, #0F5132, #06281e);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.diff-quote span {
  font-size: 4.5rem;
  color: #4ADE80;
  font-family: Georgia, serif;
  line-height: 0;
  display: block;
  margin-bottom: 20px;
}

.diff-quote p {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.diff-quote p b {
  color: #4ADE80;
}

/* ==========================================================================
   FOR WHO (SEGMENTOS ALVO)
   ========================================================================== */
.forwho {
  background: var(--off-white);
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fw {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px 22px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-top: 4px solid var(--green-accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.fw:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: #10B981;
}

.fw h3 {
  font-size: 1.08rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.fw p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo {
  background: linear-gradient(150deg, #0B3D2E, #0F5132);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/4.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-photo .logo-watermark {
  max-width: 180px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.about-photo .ph {
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  background: rgba(0, 0, 0, 0.15);
}

.about h2 {
  margin-bottom: 22px;
}

.about p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-box {
  margin-top: 30px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 30px;
  border-left: 4px solid var(--green-accent);
  border-right: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-box h3 {
  color: var(--green-dark);
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.about-box ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.about-box li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.about-box li::before {
  content: "•";
  color: var(--green-accent);
  font-weight: 800;
  font-size: 1.4rem;
  margin-right: 10px;
  line-height: 0;
}

/* ==========================================================================
   CASES DE SUCESSO
   ========================================================================== */
.cases {
  background: radial-gradient(120% 120% at 50% 10%, #0F5132 0%, #0B3D2E 50%, #061e16 100%);
  color: #ffffff;
}

.cases .section-head h2 { color: #ffffff; }
.cases .section-head p { color: rgba(255, 255, 255, 0.8); }

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

.case {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.case:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
}

.case .cn {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #4ADE80;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.case-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.case-row span {
  color: rgba(255, 255, 255, 0.65);
}

.case-row b {
  color: #ffffff;
}

.case-val {
  margin: 20px 0 10px;
}

.case-val b {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.85rem;
  color: #4ADE80;
}

.case .res {
  display: inline-block;
  margin-top: 10px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
}

.cases-btn {
  text-align: center;
  margin-top: 50px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testi:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 197, 94, 0.25);
}

.testi p {
  color: var(--graphite);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

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

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B3D2E, #10B981);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 61, 46, 0.15);
}

.testi-user b {
  display: block;
  color: var(--graphite);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
}

.testi-user small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   SEGMENTOS
   ========================================================================== */
.segments {
  background: var(--off-white);
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seg {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--graphite);
  transition: var(--transition-fast);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.seg:hover {
  background: var(--green-dark);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.seg .ic {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 10px;
}

.seg-note {
  margin-top: 40px;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-sm);
}

.seg-note h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
}

/* ==========================================================================
   PLANS / MODELO DE CONTRATAÇÃO
   ========================================================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.plan {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.plan.featured {
  border: 2px solid var(--green-accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  background: linear-gradient(180deg, #ffffff 0%, #f9fdfa 100%);
}

.plan.featured:hover {
  transform: scale(1.06) translateY(-4px);
}

.plan.featured::before {
  content: "★ Mais Procurado";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #10B981, #059669);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.plan h3 {
  color: var(--green-dark);
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.plan .desc {
  font-size: 0.96rem;
  min-height: 52px;
  margin-bottom: 28px;
}

.plan .btn {
  width: 100%;
}

/* ==========================================================================
   LEAD FORM SECTION
   ========================================================================== */
.leadform {
  background: radial-gradient(120% 120% at 20% 20%, #0F5132 0%, #0B3D2E 60%, #051a13 100%);
  color: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.form-grid h2 { color: #ffffff; }
.form-grid > div > p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 18px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 7px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(11, 61, 46, 0.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--graphite);
  transition: var(--transition-fast);
  background: #ffffff;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.lgpd {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0 22px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.lgpd input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-accent);
}

.form-card .btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.faq-q {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--graphite);
  font-size: 1.05rem;
  gap: 18px;
  user-select: none;
}

.faq-q .arw {
  transition: var(--transition-normal);
  color: var(--green-accent);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.open .faq-q .arw {
  transform: rotate(45deg);
  color: #EF4444;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 26px;
}

.faq-item.open .faq-a {
  max-height: 350px;
  padding: 0 26px 24px;
}

.faq-a p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog {
  background: var(--off-white);
}

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

.post {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 197, 94, 0.25);
}

.post-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0B3D2E, #10B981);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
}

.post-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post .cat {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.post h3 {
  font-size: 1.2rem;
  margin: 6px 0 12px;
  color: var(--graphite);
}

.post a.read-more {
  margin-top: auto;
  padding-top: 14px;
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.post a.read-more:hover {
  color: var(--green-accent);
  gap: 10px;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.ctafinal {
  background: radial-gradient(120% 120% at 50% 0%, #0F5132 0%, #0B3D2E 60%, #061e16 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ctafinal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.ctafinal h2 {
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto;
}

.ctafinal p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 22px auto 38px;
  font-size: 1.15rem;
}

.ctafinal .hero-btns {
  justify-content: center;
}

/* ==========================================================================
   FOOTER (Premium Chumbo & Emerald)
   ========================================================================== */
footer {
  background: #0d1612;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.foot-brand img {
  height: 48px;
  margin-bottom: 18px;
}

footer p {
  font-size: 0.94rem;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.foot-col h4 {
  color: #ffffff;
  font-size: 1.08rem;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.foot-col ul {
  list-style: none;
}

.foot-col li {
  margin-bottom: 12px;
}

.foot-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.foot-col a:hover {
  color: #4ADE80;
  padding-left: 4px;
}

.foot-info {
  font-size: 0.92rem;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.7);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: var(--transition-fast);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.socials a:hover {
  background: #10B981;
  border-color: #10B981;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   WHATSAPP FLOAT BUTTON (Animated Pulse)
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 990;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition-bounce);
  animation: waPulse 2.6s infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   REVEAL ON SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .diff-wrap, .about-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .stats, .forwho-grid, .seg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
  .steps::before {
    display: none;
  }
  .cards-grid, .cases-grid, .testi-grid, .plans-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan.featured {
    transform: none;
  }
  .fb1, .fb2 {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .menu, .nav-cta .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .problem-grid, .cards-grid, .cases-grid, .testi-grid, .plans-grid, .blog-grid, .forwho-grid, .stats, .frow {
    grid-template-columns: 1fr;
  }
  .seg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .diff-quote p {
    font-size: 1.4rem;
  }
}
