/*
Theme Name: Vizor Assessoria em Leilões
Theme URI: https://vizor.com.br
Author: Vizor
Author URI: https://vizor.com.br
Description: Tema profissional para Vizor Assessoria em Leilões — especializada em imóveis de leilão com foco em segurança jurídica e lucratividade.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: vizor
Tags: real-estate, auction, professional, dark, blue
*/

/* =========================================================
   VIZOR THEME — CSS VARIABLES & RESET
========================================================= */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0d1f3c;
  --navy-light:  #112447;
  --blue:        #1e90d6;
  --blue-light:  #29aae3;
  --blue-pale:   #4fc3f7;
  --white:       #ffffff;
  --off-white:   #e8f4fd;
  --gray:        #8baabf;
  --gray-light:  #c5d8e8;
  --gold:        #f0c040;
  --success:     #22c55e;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-blue: 0 4px 32px rgba(30,144,214,0.25);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-pale); }

ul { list-style: none; }

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

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.text-blue   { color: var(--blue-light); }
.text-gray   { color: var(--gray); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-title span { color: var(--blue-light); }

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 40px rgba(30,144,214,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue-light);
  border-color: var(--blue-light);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* =========================================================
   DECORATIVE CORNER LINES (brand element from PDF)
========================================================= */
.corner-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
}
.corner-deco.top-right {
  top: 0; right: 0;
  border-top: 2px solid rgba(30,144,214,0.3);
  border-right: 2px solid rgba(30,144,214,0.3);
}
.corner-deco.bottom-left {
  bottom: 0; left: 0;
  border-bottom: 2px solid rgba(30,144,214,0.15);
  border-left: 2px solid rgba(30,144,214,0.15);
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::before {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 4px;
  transform: rotate(15deg) translate(-2px,-2px);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-light);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(30,144,214,0.15);
}

.nav-cta { margin-left: 16px; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,144,214,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,144,214,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,144,214,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,144,214,0.15);
  border: 1px solid rgba(30,144,214,0.3);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-light);
  animation: pulse 2s infinite;
}

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

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; color: var(--blue-light); }

.hero-desc {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-light);
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-pale));
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.hero-card-row:last-of-type { border-bottom: none; }

.hero-card-key { color: var(--gray); }
.hero-card-val { color: var(--white); font-weight: 600; }
.hero-card-val.blue { color: var(--blue-light); }
.hero-card-val.gold { color: var(--gold); }

.hero-card-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* Floating badges on hero card */
.hero-float-badge {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(30,144,214,0.3);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.hero-float-badge.pos1 { top: -16px; right: 24px; }
.hero-float-badge.pos2 { bottom: -16px; left: 24px; }
.hero-float-badge .badge-val { color: var(--success); }

/* =========================================================
   SOBRE / ABOUT
========================================================= */
#sobre {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(30,144,214,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-img-placeholder {
  text-align: center;
  padding: 40px;
}

.sobre-img-placeholder .big-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-blue);
  text-align: center;
}

.sobre-badge-float .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.sobre-badge-float .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sobre-text .section-subtitle { margin-bottom: 32px; }

.sobre-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pilar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(30,144,214,0.06);
  border: 1px solid rgba(30,144,214,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pilar:hover {
  background: rgba(30,144,214,0.12);
  border-color: rgba(30,144,214,0.25);
  transform: translateX(4px);
}

.pilar-icon {
  width: 44px; height: 44px;
  background: rgba(30,144,214,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pilar-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--white);
}

.pilar-desc { font-size: 0.875rem; color: var(--gray); }

/* =========================================================
   COMO FUNCIONA / PROCESS
========================================================= */
#processo {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-subtitle { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--blue) 100%);
  opacity: 0.3;
}

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

.step-num {
  width: 80px; height: 80px;
  background: var(--navy-light);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-light);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}

.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--white);
}

.step-desc { font-size: 0.875rem; color: var(--gray); }

.step-days {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(30,144,214,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(30,144,214,0.2);
}

/* =========================================================
   SERVIÇOS
========================================================= */
#servicos {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.servicos-header { text-align: center; margin-bottom: 64px; }
.servicos-header .section-subtitle { margin: 0 auto; }

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

.servico-card {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-pale));
  transform: scaleX(0);
  transition: var(--transition);
}

.servico-card:hover {
  border-color: rgba(30,144,214,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

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

.servico-icon {
  width: 60px; height: 60px;
  background: rgba(30,144,214,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.servico-card:hover .servico-icon {
  background: rgba(30,144,214,0.25);
  transform: scale(1.05);
}

.servico-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--white);
}

.servico-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

.servico-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servico-list li {
  font-size: 0.85rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.servico-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   VALORIZAÇÃO — TABELA COMPARATIVA
========================================================= */
#valorizacao {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.val-header { text-align: center; margin-bottom: 64px; }
.val-header .section-subtitle { margin: 0 auto; }

.val-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,144,214,0.2);
  box-shadow: var(--shadow);
  margin-bottom: 64px;
}

.val-table {
  width: 100%;
  border-collapse: collapse;
}

.val-table th {
  background: rgba(30,144,214,0.15);
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(30,144,214,0.2);
}

.val-table td {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: var(--gray-light);
}

.val-table tr:last-child td { border-bottom: none; }

.val-table tr:hover td { background: rgba(30,144,214,0.04); }

.val-table .period-cell {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
}

.val-table .price-cell {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-light);
}

.val-table .pct-cell {
  font-weight: 700;
  color: var(--success);
}

/* Projeção cards */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proj-card {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.proj-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.proj-card.highlight {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(30,144,214,0.12), rgba(10,22,40,0.9));
  box-shadow: var(--shadow-blue);
}

.proj-year {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}

.proj-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.proj-note { font-size: 0.85rem; color: var(--gray); }

/* =========================================================
   NEGOCIAÇÃO — COMPARATIVO
========================================================= */
#negociacao {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.neg-header { text-align: center; margin-bottom: 64px; }
.neg-header .section-subtitle { margin: 0 auto; }

.neg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.neg-card {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.neg-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.neg-card.featured::before {
  content: 'MAIOR RETORNO';
  position: absolute;
  top: 20px; right: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}

.neg-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.neg-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.neg-card-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.neg-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.neg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.neg-row:last-child { border-bottom: none; }
.neg-row-key { color: var(--gray); }
.neg-row-val { font-weight: 700; color: var(--white); }
.neg-row-val.big { color: var(--blue-light); font-size: 1.1rem; }
.neg-row-val.green { color: var(--success); }
.neg-row-val.gold { color: var(--gold); }

.neg-cta { margin-top: 32px; width: 100%; justify-content: center; }

/* Comparativo table */
.comp-table-wrap {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th {
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(30,144,214,0.15);
}

.comp-table th:first-child { color: var(--gray); }
.comp-table th:nth-child(2) { color: var(--white); background: rgba(255,255,255,0.03); }
.comp-table th:nth-child(3) { color: var(--blue-light); background: rgba(30,144,214,0.08); }

.comp-table td {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}

.comp-table tr:last-child td { border-bottom: none; }
.comp-table .crit { font-weight: 700; color: var(--gray-light); }
.comp-table .val1 { color: var(--gray); background: rgba(255,255,255,0.02); }
.comp-table .val2 { color: var(--white); font-weight: 600; background: rgba(30,144,214,0.05); }

/* =========================================================
   PLANILHA DE INVESTIMENTO
========================================================= */
#planilha {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.planilha-header { text-align: center; margin-bottom: 64px; }
.planilha-header .section-subtitle { margin: 0 auto; }

.planilha-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(30,144,214,0.3);
  background: transparent;
  color: var(--gray);
}

.tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue-light);
}

.planilha-table-wrap {
  display: none;
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.planilha-table-wrap.active { display: block; }

.planilha-table-head {
  background: rgba(30,144,214,0.12);
  padding: 24px 32px;
  border-bottom: 1px solid rgba(30,144,214,0.2);
}

.planilha-table-head h3 {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.planilha-table-head h3 strong {
  color: var(--blue-light);
  font-size: 1.3rem;
}

.planilha-table {
  width: 100%;
  border-collapse: collapse;
}

.planilha-table th {
  padding: 16px 32px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  background: rgba(30,144,214,0.06);
  border-bottom: 1px solid rgba(30,144,214,0.12);
}

.planilha-table td {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--gray-light);
}

.planilha-table tr:last-child td { border-bottom: none; }
.planilha-table .item-name { color: var(--white); font-weight: 600; }
.planilha-table .ref-pct { color: var(--blue-light); }
.planilha-table .val-num { color: var(--white); font-weight: 700; font-family: var(--font-head); }

.planilha-total {
  padding: 20px 32px;
  background: rgba(30,144,214,0.12);
  border-top: 2px solid rgba(30,144,214,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.planilha-total .tot-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.planilha-total .tot-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
}

.planilha-obs {
  margin-top: 32px;
  background: rgba(30,144,214,0.05);
  border: 1px solid rgba(30,144,214,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 800px;
  margin: 32px auto 0;
}

.planilha-obs h4 {
  font-size: 1rem;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.planilha-obs ul { display: flex; flex-direction: column; gap: 12px; }

.planilha-obs li {
  font-size: 0.875rem;
  color: var(--gray);
  display: flex;
  gap: 10px;
}

.planilha-obs li::before {
  content: '•';
  color: var(--blue-light);
  font-weight: 900;
  flex-shrink: 0;
}

/* =========================================================
   ASSESSORIA / CTA SECTION
========================================================= */
#assessoria {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.assessoria-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.assessoria-text .section-subtitle { margin-bottom: 40px; }

.assessoria-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.assessoria-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(30,144,214,0.06);
  border: 1px solid rgba(30,144,214,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}

.assessoria-item:hover {
  background: rgba(30,144,214,0.12);
  border-color: rgba(30,144,214,0.25);
}

.item-dot {
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(30,144,214,0.5);
}

.item-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--blue-light);
}

.item-desc { font-size: 0.875rem; color: var(--gray); }

/* Honorários box */
.hon-box {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hon-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-pale));
}

.hon-model {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 24px;
  display: block;
}

.hon-pct {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hon-pct-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 32px;
  display: block;
}

.hon-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 24px 0;
}

.hon-cond {
  font-size: 0.875rem;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.hon-vantagem {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 32px;
}

/* =========================================================
   CONTATO
========================================================= */
#contato {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-info .section-subtitle { margin-bottom: 40px; }

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

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

.contato-item-icon {
  width: 48px; height: 48px;
  background: rgba(30,144,214,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--blue-light);
}

.contato-item-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 2px;
}

.contato-item-val {
  font-weight: 600;
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--navy-light);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,214,0.15);
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray); }

.form-row select { appearance: none; cursor: pointer; }
.form-row select option { background: var(--navy-mid); }

.form-row textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* =========================================================
   FOOTER
========================================================= */
#site-footer {
  background: #060e1a;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(30,144,214,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px; height: 40px;
  background: rgba(30,144,214,0.1);
  border: 1px solid rgba(30,144,214,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue-light);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col li a {
  font-size: 0.875rem;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col li a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.825rem; color: var(--gray); }

/* =========================================================
   MOBILE NAV DRAWER
========================================================= */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100%;
  background: var(--navy-mid);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid rgba(30,144,214,0.15);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gray-light);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--blue-light); padding-left: 8px; }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
}

.overlay.open { display: block; }

/* =========================================================
   ANIMATIONS
========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .sobre-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .assessoria-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .servicos-grid { grid-template-columns: 1fr; }
  .neg-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}
