/* ============================================
   VARIÁVEIS CSS - DESIGN SYSTEM PREMIUM
   ============================================ */
:root {
  /* Cores Primárias */
  --navy: #1A3E5A;
  --navy-900: #0b2232;
  --navy-800: #0d2739;

  /* Escala de Cinzas */
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #4A4A4A;
  --gray-600: #5a5a5a;
  --gray-500: #6B6B6B;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #E9EEF3;
  --gray-100: #F5F7FA;
  --gray-50: #f9fafb;

  /* Branco */
  --white: #FFFFFF;

  /* Verde Esmeralda */
  --emerald: #2E8B57;
  --emerald-700: #236b45;
  --emerald-600: #27995b;
  --emerald-light: #e6f7ef;

  /* Dourado */
  --goldenrod: #DAA520;
  --goldenrod-dark: #B8860B;
  --goldenrod-light: #fef3d8;

  /* Gradientes Premium */
  --gradient-gold: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
  --gradient-emerald: linear-gradient(135deg, #2E8B57 0%, #236b45 100%);
  --gradient-navy: linear-gradient(135deg, #1A3E5A 0%, #0b2232 100%);
  --gradient-overlay: linear-gradient(to bottom right, rgba(11,34,50,.75), rgba(11,34,50,.65));

  /* Sombras em Camadas (Premium) */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 2px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.12), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-glow: 0 0 20px rgba(218,165,32,.15);
  --shadow-glow-emerald: 0 0 20px rgba(46,139,87,.12);

  /* Bordas e Raios */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transições */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media(max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Grid Systems */
.grid-2 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.grid-3 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media(min-width: 768px) {
  .grid-2 {
    gap: 48px;
  }
  .grid-3 {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vcenter {
  align-items: center;
}

.nowrap {
  white-space: nowrap;
}

/* ============================================
   HEADER PREMIUM
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(233, 238, 243, 0.8);
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

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

/* ============================================
   ✨ LOGO PREMIUM - HEADER (SOLUÇÃO 3)
   ============================================ */
.brand-badge {
  /* Dimensões controladas */
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;

  /* Background e borda premium */
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  border-radius: 16px;
  padding: 2px;

  /* Sombras em camadas com glow dourado */
  box-shadow: 
    0 0 0 3px white,
    0 4px 12px rgba(0,0,0,0.1);

  /* Filtros para otimizar a imagem */
  filter: 
    brightness(1.05)
    contrast(1.1)
    saturate(1.15)
    drop-shadow(0 2px 8px rgba(218,165,32,0.2));

  /* Transição suave */
  transition: all var(--transition-smooth);
}

.brand-badge:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 
    0 0 0 3px white,
    0 8px 24px rgba(0,0,0,0.15),
    0 0 30px rgba(218,165,32,0.25);
  filter: 
    brightness(1.08)
    contrast(1.12)
    saturate(1.2)
    drop-shadow(0 4px 12px rgba(218,165,32,0.3));
}

/* Ajuste no hero dark para logo se destacar */
.hero.hero--dark .brand-badge {
  box-shadow: 
    0 0 0 3px rgba(255,255,255,0.15),
    0 4px 20px rgba(0,0,0,0.4);
  filter: 
    brightness(1.15)
    contrast(1.15)
    drop-shadow(0 4px 16px rgba(218,165,32,0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.brand-text strong {
  color: var(--navy-900);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-text span {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 500;
}

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

.nav-list {
  display: none;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--gray-700);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  transition: all var(--transition-base);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.nav-list a:hover {
  color: var(--navy-900);
  background: var(--gray-50);
}

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

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.menu-toggle:hover {
  background: var(--gray-100);
  color: var(--navy-900);
}

@media(min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .nav-list {
    display: flex;
  }
}

/* ============================================
   BUTTONS PREMIUM
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
}

.btn:hover::before {
  transform: translateX(0);
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-emerald);
  color: #fff;
  box-shadow: var(--shadow), var(--shadow-glow-emerald);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-emerald);
}

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

/* Large Button */
.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
}

/* Secondary Button */
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}

.btn-ghost--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost--light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION PREMIUM
   ============================================ */
.hero {
  background: linear-gradient(180deg, #eaf3f0 0%, #ffffff 70%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

/* Hero Dark Variant */
.hero.hero--dark {
  background: var(--navy-900);
  background-image: var(--gradient-overlay), url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 96px;
  color: #fff;
}

.hero.hero--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(218,165,32,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--goldenrod);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-dot-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-dot-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-dot-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.hero-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--goldenrod), transparent);
  opacity: 0.15;
}

.hero-line-1 {
  top: 30%;
  left: 0;
  width: 40%;
}

.hero-line-2 {
  bottom: 40%;
  right: 0;
  width: 35%;
}

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

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition-base);
}

.badge-premium {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.badge-premium:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.badge-premium svg {
  width: 16px;
  height: 16px;
}

/* Hero Typography */
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  animation: fadeInUp 0.6s ease-out both;
}

.hero.hero--dark h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.hero .lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 0 28px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero.hero--dark .lead {
  color: rgba(255, 255, 255, 0.85);
}

/* Checks */
.checks {
  margin: 24px 0 32px 0;
  padding: 0;
  list-style: none;
  color: var(--gray-700);
  animation: fadeInUp 0.6s ease-out 0.4s both;
  display: inline-block;
  text-align: left;
}

.checks li {
  margin: 12px 0;
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.6;
}

.checks--light li {
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--goldenrod);
  filter: drop-shadow(0 2px 4px rgba(218,165,32,0.2));
}

/* Actions */
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 56px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--goldenrod);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(218,165,32,0.3);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

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

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

.section.alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  padding: 8px 18px;
  background: var(--goldenrod-light);
  color: var(--goldenrod-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.section-header .subhead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   CARDS PREMIUM
   ============================================ */
.cards .card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

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

/* Card Badge */
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: var(--gradient-emerald);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* Card Icon */
.card-icon {
  margin-bottom: 20px;
  display: inline-flex;
  transition: transform var(--transition-base);
}

.card-hover:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon-premium {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--goldenrod-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card-hover:hover .card-icon-premium {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-glow);
}

.card-icon-premium svg {
  color: var(--goldenrod-dark);
  transition: all var(--transition-base);
}

.card-hover:hover .card-icon-premium svg {
  color: #fff;
  stroke: #fff;
}

/* Card Typography */
.card h3 {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0 0 18px;
}

.card .mini {
  list-style: none;
  margin: 20px 0 24px 0;
  padding: 0;
  color: var(--gray-600);
}

.card .mini li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

.card .mini li svg {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--emerald);
}

/* ============================================
   PROCESS TIMELINE PREMIUM (Como Funciona)
   ============================================ */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* Process Step */
.process-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  transition: all var(--transition-smooth);
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

/* Icon Wrapper */
.process-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* Process Number */
.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all var(--transition-smooth);
}

/* Process Icon */
.process-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  box-shadow: var(--shadow);
  transition: all var(--transition-smooth);
}

.process-step:hover .process-icon {
  transform: scale(1.05) rotate(5deg);
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
  background: var(--emerald-light);
}

.process-step:hover .process-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(218,165,32,0.4);
}

/* Connector Line */
.process-connector {
  position: absolute;
  left: 70px;
  top: 128px;
  width: 3px;
  height: calc(100% + 48px);
  background: linear-gradient(180deg, var(--emerald) 0%, var(--gray-300) 100%);
  opacity: 0.3;
  z-index: 1;
}

.process-step:last-child .process-connector {
  display: none;
}

/* Process Content */
.process-content {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition-smooth);
  position: relative;
}

.process-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-emerald);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.process-step:hover .process-content {
  transform: translateX(8px);
  border-color: var(--emerald);
  box-shadow: var(--shadow-xl);
}

.process-step:hover .process-content::before {
  transform: scaleX(1);
}

.process-content h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.process-content > p {
  margin: 0 0 16px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.6;
}

/* Process Features */
.process-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 14px;
  padding: 8px 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.process-features li:hover {
  background: var(--emerald-light);
  transform: translateX(4px);
}

.process-features li svg {
  flex-shrink: 0;
  color: var(--emerald);
}

/* Process CTA */
.process-cta {
  margin-top: 64px;
  padding: 40px;
  background: var(--gradient-navy);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(218,165,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.process-cta-content {
  position: relative;
  z-index: 2;
}

.process-cta-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.process-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}

.process-cta .btn {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg), var(--shadow-glow-emerald);
}

.process-cta .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(46,139,87,0.4);
}

/* Responsive - Mobile */
@media(max-width: 768px) {
  .process-timeline {
    padding: 0;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .process-icon-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }

  .process-icon {
    width: 64px;
    height: 64px;
  }

  .process-icon svg {
    width: 28px;
    height: 28px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .process-connector {
    left: 20px;
    top: 104px;
  }

  .process-content {
    padding: 20px;
  }

  .process-content h3 {
    font-size: 20px;
  }

  .process-cta {
    padding: 32px 24px;
  }

  .process-cta-content h3 {
    font-size: 24px;
  }
}

/* ============================================
   STEPS PREMIUM (OLD - Fallback)
   ============================================ */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0 auto;
  max-width: 880px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps-premium li {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all var(--transition-base);
  position: relative;
}

.steps-premium li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}

.step-number {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.step-content h3 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: var(--gray-600);
  font-size: 15px;
}

/* ============================================
   TESTIMONIALS PREMIUM
   ============================================ */
.testimonials {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

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

@media(min-width: 1024px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.t-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  color: var(--gray-700);
  transition: all var(--transition-smooth);
  position: relative;
}

.t-card-premium {
  border: 2px solid var(--gray-200);
}

.t-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--goldenrod);
}

/* Rating Stars */
.t-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.t-rating svg {
  filter: drop-shadow(0 2px 4px rgba(218,165,32,0.2));
}

/* Quote Icon */
.t-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
}

/* Testimonial Text */
.t-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 0 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Testimonial Footer */
.t-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.t-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-info strong {
  color: var(--navy-900);
  font-weight: 600;
  font-size: 15px;
}

.t-info span {
  color: var(--gray-500);
  font-size: 13px;
}

/* ============================================
   EQUIPE PREMIUM - REESTRUTURADA COM FOTOS
   ============================================ */

/* Introdução da equipe */
.equipe-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.equipe-intro p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 16px;
  margin: 16px 0;
}

/* Grid dos Advogados */
.lawyers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 48px 0;
}

@media(min-width: 768px) {
  .lawyers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* Card do Advogado */
.lawyer-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.lawyer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--goldenrod);
}

/* Frame da Foto do Advogado */
.lawyer-photo-frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lawyer-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: all var(--transition-smooth);
  padding: 20px;
}

.lawyer-card:hover .lawyer-photo {
  transform: scale(1.05);
}

/* Selo OAB na Foto */
.oab-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--goldenrod);
  border-radius: var(--radius-full);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  z-index: 2;
}

.oab-badge svg {
  color: var(--goldenrod);
  filter: drop-shadow(0 2px 4px rgba(218,165,32,0.3));
}

.lawyer-card:hover .oab-badge {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 25px rgba(218,165,32,0.4);
  border-width: 3px;
}

/* Informações do Advogado */
.lawyer-info {
  padding: 32px 28px;
  background: #fff;
}

.lawyer-info h3 {
  color: var(--navy-900);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.lawyer-oab {
  color: var(--emerald);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 16px;
  display: block;
}

.lawyer-oab strong {
  color: var(--emerald);
}

.lawyer-bio {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Credentials List */
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0 32px;
  padding: 28px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.credential-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 6px rgba(218,165,32,0.3));
}

.credential-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credential-item strong {
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 700;
}

.credential-item span {
  color: var(--gray-600);
  font-size: 14px;
}

/* Responsividade Mobile */
@media(max-width: 768px) {
  .lawyer-photo-frame {
    height: 360px;
  }

  .lawyer-photo {
    padding: 15px;
  }

  .lawyer-info {
    padding: 24px 20px;
  }

  .lawyer-info h3 {
    font-size: 20px;
  }

  .lawyer-oab {
    font-size: 14px;
  }

  .lawyer-bio {
    font-size: 14px;
  }

  .oab-badge {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .credentials-list {
    padding: 20px;
    margin: 32px 0 24px;
  }
}

/* ============================================
   FAQ PREMIUM
   ============================================ */
.faq {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media(min-width: 1024px) {
  .faq {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.faq-item {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow);
}

.faq-item[open] {
  border-color: var(--emerald);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  transition: all var(--transition-base);
}

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

.faq-item summary:hover {
  color: var(--emerald);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--goldenrod);
  transition: all var(--transition-base);
}

.faq-item[open] .faq-icon {
  color: var(--emerald);
  transform: rotate(15deg);
}

.faq-item p {
  padding: 0 24px 20px 56px;
  margin: 0;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.site-footer {
  background: var(--navy-900);
  background-image: linear-gradient(135deg, var(--navy-900) 0%, #0d2739 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218,165,32,0.3), transparent);
}

.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media(min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* ============================================
   ✨ LOGO PREMIUM - FOOTER (SOLUÇÃO 3)
   ============================================ */
.footer-logo {
  /* Dimensões maiores para versão institucional */
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;

  /* Border radius e sombras premium */
  border-radius: 20px;
  box-shadow: 
    0 0 0 2px rgba(255,255,255,0.15),
    0 8px 32px rgba(0,0,0,0.3);

  /* Filtros otimizados para fundo escuro */
  filter: 
    brightness(1.1) 
    contrast(1.05);

  /* Transição suave */
  transition: all var(--transition-base);
}

.footer-logo:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 
    0 0 0 2px rgba(218,165,32,0.4),
    0 12px 40px rgba(0,0,0,0.4);
}

.footer-brand h4 {
  color: #fff;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-col p {
  line-height: 1.7;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col p a {
  color: var(--goldenrod);
  text-decoration: none;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.footer-col p a:hover {
  color: #fff;
  border-bottom-color: var(--goldenrod);
}

.footer-col strong {
  color: #fff;
  font-weight: 600;
}

.footer-col .legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.6;
}

.footer-col.right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media(min-width: 1024px) {
  .footer-col.right {
    align-items: center;
    justify-content: flex-end;
  }
}

/* Trust Seals */
.trust-seals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.seal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.seal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--goldenrod);
  transform: translateY(-2px);
}

.seal svg {
  flex-shrink: 0;
}

/* ============================================
   STICKY CTA PREMIUM
   ============================================ */
.cta-sticky {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--gradient-emerald);
  color: #fff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-lg), var(--shadow-glow-emerald);
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  animation: slideInUp 0.5s ease-out 1s both, pulse 2s ease-in-out 3s infinite;
}

.cta-sticky:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(46,139,87,0.3);
}

.cta-sticky:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-sticky svg {
  flex-shrink: 0;
  animation: wiggle 1s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: var(--shadow-lg), var(--shadow-glow-emerald);
  }
  50% {
    box-shadow: var(--shadow-xl), 0 0 40px rgba(46,139,87,0.4);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

@media(max-width: 768px) {
  .cta-sticky {
    right: 16px;
    bottom: 16px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .cta-sticky span {
    display: none;
  }

  .cta-sticky svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media(max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero.hero--dark {
    padding: 80px 0 64px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .trust-badges {
    justify-content: center;
  }

  .credentials-list {
    padding: 20px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 11px;
  }

  /* ✨ Ajuste mobile da logo do header */
  .brand-badge {
    width: 52px;
    height: 52px;
  }

  /* ✨ Ajuste mobile da logo do footer */
  .footer-logo {
    width: 64px;
    height: 64px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .cta-sticky,
  .actions,
  .btn {
    display: none !important;
  }
}