/* =============================================
   ASSESSORIA JURÍDICA INTERNACIONAL - ESTILOS
   ============================================= */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C878;
  --gold-dark: #A0802E;
  --navy: #0B1C3B;
  --navy-mid: #122952;
  --navy-light: #1A3870;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --green: #16A34A;
  --red: #DC2626;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.14);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }

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

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

ul { list-style: none; }

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

.hidden { display: none !important; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
  text-align: center;
  justify-content: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--gold-dark); }

/* ---- SECTION COMMONS ---- */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,28,59,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-heading);
}
.nav-logo i { color: var(--gold); font-size: 1.4rem; }
.nav-logo strong { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1E3A6E 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,.08) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
}
.hero-title .highlight { color: #7BAAF7; }
.hero-title .highlight-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold-light);
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 90px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   LEAD FORM
   ============================================= */
.lead-form-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.lead-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.lead-form-info {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 48px;
  color: var(--white);
}
.lead-form-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--white);
}
.lead-form-info h2 span { color: var(--gold); }
.lead-form-info p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.05rem; }

.lead-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.lead-benefits li i { color: var(--gold); font-size: 1rem; }

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
}
.trust-item i { color: var(--gold); }

.lead-form-box { padding: 56px 48px; }
.lead-form-box h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 32px;
}

/* FORMS */
.lead-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy {
  font-size: .8rem;
  color: var(--gray-400);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
}
.form-success i {
  font-size: 3rem;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}
.form-success h4 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

/* =============================================
   SOBRE
   ============================================= */
.sobre-section { padding: 100px 0; background: var(--white); text-align: center; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  text-align: left;
  margin-top: 20px;
}

.sobre-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.sobre-text h2 span { color: var(--gold); }
.sobre-text p { color: var(--gray-600); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }

.sobre-numbers {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.num-item { text-align: center; }
.num { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.num-label { font-size: .8rem; color: var(--gray-600); }

.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.pillar-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.pillar-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.pillar-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   COMPARATIVO
   ============================================= */
.comparativo-section {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
.comparativo-section .section-badge { background: rgba(201,168,76,.2); color: var(--gold-light); }
.comparativo-section .section-title { color: var(--white); }
.comparativo-section .section-title span { color: var(--gold); }
.comparativo-section .section-subtitle { color: rgba(255,255,255,.65); }

.comp-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-table thead { background: var(--navy-light); }
.comp-table th {
  padding: 18px 24px;
  text-align: center;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.comp-table th:first-child { text-align: left; }
.comp-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  font-size: .95rem;
}
.comp-table td:first-child { text-align: left; }
.comp-table td small { display: block; color: var(--gray-400); font-size: .8rem; margin-top: 2px; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--gray-100); }

.br-col.bad { color: var(--red); font-weight: 700; font-size: 1.05rem; }
.py-col.good { color: var(--green); font-weight: 700; font-size: 1.05rem; }
.save { }
.save-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.comp-disclaimer {
  margin-top: 24px;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos-section {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}

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

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: left;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.servico-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,.2), var(--shadow-md);
}

.servico-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.servico-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.servico-card h3 { font-size: 1.15rem; color: var(--navy); }
.servico-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; flex: 1; }

.servico-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.servico-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-600);
}
.servico-includes li i { color: var(--green); font-size: .8rem; flex-shrink: 0; }

/* =============================================
   PROCESSO
   ============================================= */
.processo-section { padding: 100px 0; background: var(--white); text-align: center; }

.processo-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 20px;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 4px;
}

.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(11,28,59,.2);
  transition: var(--transition);
}
.step:hover .step-icon { transform: scale(1.08); }

.step-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

.step-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  padding-top: 40px;
  flex-shrink: 0;
  opacity: .5;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 100px 0; background: var(--gray-100); text-align: center; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover, .faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: .9rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.75;
}

/* =============================================
   CONTATO
   ============================================= */
.contato-section { padding: 100px 0; background: var(--white); text-align: center; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  text-align: left;
}

.contato-info { display: flex; flex-direction: column; gap: 20px; }

.contato-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contato-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.contato-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contato-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.contato-card p { font-size: .85rem; color: var(--gray-600); margin-bottom: 6px; }
.contato-link { font-size: .88rem; color: var(--gold); font-weight: 600; }
a.contato-link:hover { text-decoration: underline; }

.contato-form-wrapper {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contato-form-wrapper h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-links h5 {
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-cta h5 {
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.footer-cta p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 20px; line-height: 1.65; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-disclaimer { font-size: .75rem !important; max-width: 600px; }

/* =============================================
   CHAT WIDGET
   ============================================= */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 999;
}

.chat-toggle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}
.chat-toggle:hover { transform: scale(1.08); background: var(--navy-light); }

.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

.chat-box {
  position: absolute;
  bottom: 76px; right: 0;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  max-height: 520px;
}

.chat-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.chat-header-info { flex: 1; }
.chat-header-info h4 { color: var(--white); font-size: .95rem; font-family: var(--font-body); }
.chat-status { color: rgba(255,255,255,.6); font-size: .78rem; display: flex; align-items: center; gap: 4px; }
.chat-status i { color: #4ADE80; font-size: .5rem; }
.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color var(--transition);
}
.chat-close-btn:hover { color: var(--white); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 260px;
  scroll-behavior: smooth;
}

.chat-msg {
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }

.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .88rem;
  line-height: 1.55;
}
.chat-msg.bot .chat-bubble {
  background: var(--gray-100);
  color: var(--gray-800);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-time { font-size: .72rem; color: var(--gray-400); padding: 0 4px; }
.chat-msg.user .chat-time { text-align: right; }

.chat-typing .chat-bubble {
  display: flex; gap: 4px; align-items: center; padding: 12px 16px;
}
.chat-typing .dot {
  width: 6px; height: 6px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.chat-typing .dot:nth-child(2) { animation-delay: .2s; }
.chat-typing .dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.chat-capture {
  padding: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--off-white);
}
.capture-label { font-size: .82rem; font-weight: 600; color: var(--gray-800); }
.chat-capture input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .88rem;
  width: 100%;
  font-family: var(--font-body);
  transition: var(--transition);
}
.chat-capture input:focus { outline: none; border-color: var(--gold); }

.chat-input-area {
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.chat-quick-replies {
  padding: 8px 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.quick-reply-btn {
  padding: 5px 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: .78rem;
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
}
.quick-reply-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
}
.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .88rem;
  font-family: var(--font-body);
  transition: var(--transition);
}
.chat-input-row input:focus { outline: none; border-color: var(--gold); }
#chat-send {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
#chat-send:hover { background: var(--gold-dark); }

/* =============================================
   WHATSAPP FLOAT & BACK TO TOP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1fba59; }

.back-to-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 997;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top:not(.hidden) { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); transform: translateY(-2px); }

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comp-table th, .comp-table td { padding: 14px 16px; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,28,59,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .lead-form-wrapper { grid-template-columns: 1fr; }
  .lead-form-info { padding: 40px 28px; }
  .lead-form-box { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-pillars { grid-template-columns: 1fr; }

  .servicos-grid { grid-template-columns: 1fr; }

  .processo-steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .step { max-width: 260px; }

  .contato-grid { grid-template-columns: 1fr; }

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

  .chat-box { width: 92vw; right: -32px; }
  .chat-widget { right: 80px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .sobre-numbers { flex-direction: column; gap: 20px; }
}

/* =============================================
   ANIMAÇÕES DE ENTRADA
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
