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

:root {
  --verde-escuro: #7f2d1f;
  --verde-medio: #c96148;
  --verde-claro: #a7c0bc;
  --dourado: #d6c285;
  --dourado-claro: #dba791;
  --dourado-bg: rgba(214,194,133,0.08);
  --creme: #faead3;
  --creme-escuro: #f0ddc4;
  --cinza-bg: #fdf6ee;
  --texto: #2C2C2C;
  --texto-leve: #5a5a5a;
  --texto-claro: #999;
  --branco: #FFFFFF;
  --borda: rgba(127,45,31,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--texto); background: var(--branco);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  font-size: 17px; line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 60px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--borda); transition: all 0.4s ease;
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.02); }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo {
  width: 40px; height: 40px; background: var(--verde-escuro); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px;
  color: var(--dourado); letter-spacing: 1px;
}
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-icon { height: 32px; width: auto; object-fit: contain; filter: brightness(0) saturate(100%) invert(19%) sepia(60%) saturate(1100%) hue-rotate(345deg) brightness(92%) contrast(95%); }
.nav-logo-marca { height: 28px; width: auto; object-fit: contain; filter: brightness(0) saturate(100%) invert(19%) sepia(60%) saturate(1100%) hue-rotate(345deg) brightness(92%) contrast(95%); margin-top: 4px; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--verde-escuro); line-height: 1.1; }
.nav-brand-sub { font-size: 10.5px; color: var(--texto-leve); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 500; color: var(--texto-leve);
  letter-spacing: 0.3px; transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--verde-escuro); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--dourado); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde-escuro); color: #fff !important; padding: 11px 22px;
  border-radius: 8px; font-size: 14px !important; font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--verde-medio) !important; transform: translateY(-1px); }
.nav-mobile { display: none; background: none; border: none; font-size: 22px; color: var(--verde-escuro); cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; border: none;
  border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; letter-spacing: 0.2px;
}
.btn-fill {
  padding: 17px 34px;
  background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-medio) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(127,45,31,0.15);
}
.btn-fill:hover {
  background: linear-gradient(135deg, var(--verde-medio) 0%, var(--verde-claro) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(127,45,31,0.25);
}
.btn-outline { padding: 16px 32px; background: transparent; color: var(--verde-escuro); border: 1.5px solid rgba(127,45,31,0.18); }
.btn-outline:hover { border-color: var(--verde-escuro); background: rgba(127,45,31,0.02); transform: translateY(-2px); }
.btn-whatsapp {
  padding: 17px 34px;
  background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37,211,102,0.2);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20bd5a 0%, #1aa84d 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.3);
}
.btn-outline-white { padding: 16px 32px; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-lg { padding: 19px 42px; font-size: 17px; border-radius: 12px; }

/* ===== SECTIONS ===== */
.section { padding: 120px 60px; }
.section-alt { background: var(--cinza-bg); }
.section-creme { background: var(--creme); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--dourado);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px;
}
.section-tag i { font-size: 8px; }

.section-title {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 600;
  color: var(--verde-escuro); line-height: 1.18; margin-bottom: 24px; letter-spacing: -0.5px;
}

.section-desc {
  font-size: 19px; line-height: 1.8; color: var(--texto-leve); max-width: 680px;
}
.section-desc-lg { font-size: 21px; line-height: 1.8; color: var(--texto-leve); max-width: 720px; }

.section-center { text-align: center; }
.section-center .section-desc, .section-center .section-desc-lg { margin: 0 auto; }
.section-center .section-tag { justify-content: center; }

.container { max-width: 1220px; margin: 0 auto; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1220px; margin: 0 auto; }
.grid-2.top { align-items: start; }
.grid-2.gap-lg { gap: 100px; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 160px 60px 100px;
  position: relative; overflow: hidden;
}
.page-hero-dark { background: var(--verde-escuro); }
.page-hero-dark .section-title { color: #fff; }
.page-hero-dark .section-desc-lg { color: rgba(255,255,255,0.6); }
.page-hero-dark .page-hero-breadcrumb a, .page-hero-dark .page-hero-breadcrumb { color: rgba(255,255,255,0.4); }
.page-hero-dark .section-tag { color: var(--dourado); }

.page-hero-creme { background: var(--creme); }

.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(214,194,133,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; filter: blur(30px);
}
.page-hero-dark::before {
  background: radial-gradient(circle, rgba(214,194,133,0.06) 0%, transparent 70%);
  filter: blur(60px);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(127,45,31,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; filter: blur(30px);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-title { font-size: 54px; margin-bottom: 22px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--texto-leve); margin-bottom: 24px;
}
.page-hero-breadcrumb a { color: var(--texto-leve); text-decoration: none; transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--verde-escuro); }
.page-hero-breadcrumb span { color: var(--dourado); }

/* ===== HERO (home) ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 110px 60px 70px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(214,194,133,0.05) 0%, rgba(127,45,31,0.02) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none; filter: blur(40px);
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(127,45,31,0.03) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; filter: blur(40px);
}
.hero-grid {
  max-width: 1220px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: var(--dourado-bg); border: 1px solid rgba(214,194,133,0.2);
  border-radius: 100px; margin-bottom: 28px;
}
.hero-badge i { color: var(--dourado); font-size: 10px; }
.hero-badge span { font-size: 13px; font-weight: 600; color: var(--verde-escuro); letter-spacing: 1.5px; text-transform: uppercase; }

.hero-title {
  font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 600;
  line-height: 1.12; color: var(--verde-escuro); margin-bottom: 28px; letter-spacing: -0.5px;
}
.hero-title em { color: var(--dourado); font-style: italic; }

.hero-sub {
  font-size: 19px; line-height: 1.75; color: var(--texto-leve);
  margin-bottom: 38px; max-width: 520px;
}
.hero-btns { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px; border-top: 1px solid var(--borda);
}
.hero-proof-stars { display: flex; gap: 2px; color: var(--dourado); font-size: 16px; }
.hero-proof-text { font-size: 15px; color: var(--texto-leve); line-height: 1.5; }
.hero-proof-text strong { color: var(--texto); font-weight: 600; }

/* ===== BR FLAG (real image) ===== */
.mock-flag-br {
  width: 32px; height: 22px; border-radius: 3px; overflow: hidden;
  background: url('bandeirabrasil.png') center/cover no-repeat;
}

/* IT flag */
.mock-flag-it {
  width: 32px; height: 22px; border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: row;
}
.mock-flag-it .fi1 { flex: 1; background: #008C45; }
.mock-flag-it .fi2 { flex: 1; background: #F4F5F0; }
.mock-flag-it .fi3 { flex: 1; background: #CD212A; }

/* ===== CSS MOCKUP: HERO DOCS ===== */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; overflow: hidden; }
.mockup-scene { position: relative; width: 480px; height: 520px; }
/* Ambient glow behind hero docs */
.mockup-scene::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,194,133,0.12) 0%, rgba(127,45,31,0.06) 50%, transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}

/* Document mockup */
.mock-doc {
  position: absolute; border-radius: 20px; padding: 30px 26px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    0 10px 30px rgba(0,0,0,0.06),
    0 0 0 1px rgba(0,0,0,0.03);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}
.mock-doc-pt {
  width: 290px; height: 370px;
  background: linear-gradient(145deg, #ffffff 0%, #fafaf8 100%);
  top: 50px; left: 0; z-index: 2; transform: rotate(-3deg);
}
.mock-doc-pt:hover { transform: rotate(-1deg) translateY(-8px); box-shadow: 0 40px 100px rgba(0,0,0,0.14), 0 15px 40px rgba(0,0,0,0.08); }
.mock-doc-it {
  width: 290px; height: 370px;
  background: linear-gradient(145deg, var(--creme) 0%, #f5f0e6 100%);
  top: 20px; right: 0; z-index: 1; transform: rotate(4deg);
}
.mock-doc-it:hover { transform: rotate(2deg) translateY(-8px); box-shadow: 0 40px 100px rgba(0,0,0,0.14), 0 15px 40px rgba(0,0,0,0.08); }

.mock-doc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--verde-escuro);
}
.mock-doc-it .mock-doc-header { border-bottom-color: var(--dourado); }
.mock-doc-flag { display: flex; align-items: center; gap: 8px; }
.mock-doc-flag span { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--verde-escuro); }
.mock-doc-it .mock-doc-flag span { color: var(--dourado); }

/* Doc verified seal */
.mock-doc-seal {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(127,45,31,0.25);
}
.mock-doc-it .mock-doc-seal { background: linear-gradient(135deg, var(--dourado), var(--dourado-claro)); box-shadow: 0 4px 15px rgba(214,194,133,0.3); }
.mock-doc-seal i { font-size: 13px; color: #fff; }

/* Document body */
.mock-doc-body { display: flex; flex-direction: column; gap: 0; }
.mock-doc-title { height: 12px; width: 65%; border-radius: 4px; background: rgba(127,45,31,0.14); margin-bottom: 16px; }
.mock-doc-it .mock-doc-title { background: rgba(214,194,133,0.22); }

.mock-doc-row { display: flex; gap: 12px; margin-bottom: 10px; }
.mock-doc-label { height: 8px; width: 30%; border-radius: 3px; background: rgba(127,45,31,0.1); }
.mock-doc-value { height: 8px; flex: 1; border-radius: 3px; background: rgba(127,45,31,0.05); }
.mock-doc-it .mock-doc-label { background: rgba(214,194,133,0.16); }
.mock-doc-it .mock-doc-value { background: rgba(214,194,133,0.06); }

.mock-doc-divider { height: 1px; background: rgba(127,45,31,0.06); margin: 14px 0; }
.mock-doc-it .mock-doc-divider { background: rgba(214,194,133,0.1); }

.mock-doc-text { height: 7px; border-radius: 3px; background: rgba(127,45,31,0.06); margin-bottom: 8px; }
.mock-doc-it .mock-doc-text { background: rgba(214,194,133,0.08); }
.w100 { width: 100%; } .w90 { width: 90%; } .w80 { width: 80%; }
.w70 { width: 70%; } .w60 { width: 60%; } .w50 { width: 50%; } .w40 { width: 40%; }

/* Stamp at bottom of doc */
.mock-doc-stamp {
  position: absolute; bottom: 22px; right: 22px;
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid var(--verde-escuro); opacity: 0.12;
  display: flex; align-items: center; justify-content: center; transform: rotate(-15deg);
}
.mock-doc-it .mock-doc-stamp { border-color: var(--dourado); opacity: 0.18; }
.mock-doc-stamp-inner { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid currentColor; }

/* Signature line */
.mock-doc-sig {
  position: absolute; bottom: 28px; left: 26px;
  display: flex; flex-direction: column; gap: 4px;
}
.mock-doc-sig-line { width: 80px; height: 2px; background: rgba(127,45,31,0.12); border-radius: 1px; }
.mock-doc-it .mock-doc-sig-line { background: rgba(214,194,133,0.15); }
.mock-doc-sig-text { width: 60px; height: 5px; border-radius: 2px; background: rgba(127,45,31,0.06); margin-top: 2px; }
.mock-doc-it .mock-doc-sig-text { background: rgba(214,194,133,0.08); }

/* Translation arrow */
.mock-arrow {
  position: absolute; top: 50%; left: 50%; z-index: 10; transform: translate(-50%, -50%);
  width: 64px; height: 64px; background: var(--verde-escuro); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 12px 40px rgba(127,45,31,0.35),
    0 0 0 6px rgba(127,45,31,0.08),
    0 0 0 12px rgba(127,45,31,0.04);
  animation: pulseArrow 3s ease-in-out infinite;
}
.mock-arrow i { color: var(--dourado); font-size: 18px; }
@keyframes pulseArrow {
  0%, 100% { box-shadow: 0 12px 40px rgba(127,45,31,0.35), 0 0 0 6px rgba(127,45,31,0.08), 0 0 0 12px rgba(127,45,31,0.04); }
  50% { box-shadow: 0 12px 40px rgba(127,45,31,0.35), 0 0 0 10px rgba(127,45,31,0.06), 0 0 0 20px rgba(127,45,31,0.02); }
}

/* Floating badges - glassmorphism */
.mock-float {
  position: absolute; border-radius: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 15px 50px rgba(0,0,0,0.1),
    0 4px 12px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 12px; z-index: 5;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.mock-float:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 6px 16px rgba(0,0,0,0.06); }
.mock-float-1 { top: 0; right: 10px; animation: floatUp 5s ease-in-out infinite; }
.mock-float-2 { bottom: 0; left: -20px; animation: floatUp 5s ease-in-out infinite 1.5s; }
.mock-float-3 { bottom: 80px; right: -20px; animation: floatUp 5s ease-in-out infinite 3s; }
.mock-float-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.mock-float-icon.green { background: rgba(127,45,31,0.08); color: var(--verde-escuro); }
.mock-float-icon.gold { background: rgba(214,194,133,0.12); color: var(--dourado); }
.mock-float-label { font-size: 13px; font-weight: 700; color: var(--texto); line-height: 1.3; }
.mock-float-label small { display: block; font-weight: 400; color: var(--texto-leve); font-size: 12px; margin-top: 1px; }

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

/* ===== CREDIBILITY BAR ===== */
.cred-bar { padding: 52px 60px; background: var(--creme); border-top: 1px solid var(--borda); }
.cred-grid { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.cred-item { display: flex; align-items: center; gap: 16px; position: relative; }
.cred-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 36px; width: 1px; background: rgba(127,45,31,0.08);
}
.cred-icon {
  width: 50px; height: 50px; background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03);
  color: var(--verde-escuro); font-size: 19px;
  border: 1px solid rgba(127,45,31,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cred-item:hover .cred-icon {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.cred-text h4 { font-size: 16px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 2px; }
.cred-text p { font-size: 14px; color: var(--texto-leve); }

/* ===== ABOUT HOME SECTION ===== */
.about-quote {
  font-family: 'Playfair Display', serif; font-size: 26px; font-style: italic;
  color: var(--verde-escuro); line-height: 1.5; margin-bottom: 30px;
  padding-left: 26px; border-left: 3px solid var(--dourado);
}
.about-text { font-size: 18px; line-height: 1.85; color: var(--texto-leve); margin-bottom: 20px; }
.text-body { font-size: 18px; line-height: 1.85; color: var(--texto-leve); margin-bottom: 18px; }
.text-body-lg { font-size: 19px; line-height: 1.85; color: var(--texto-leve); margin-bottom: 20px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: var(--verde-escuro);
  text-decoration: none; margin-top: 12px; transition: gap 0.3s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow i { color: var(--dourado); font-size: 14px; }

/* ===== CSS MOCKUP: ABOUT VISUAL ===== */
.about-visual { position: relative; height: 460px; }
.mock-profile-card {
  position: absolute; top: 20px; left: 20px;
  width: 300px; background: #fff; border-radius: 18px;
  padding: 32px; box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04); z-index: 2;
}
.mock-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-claro));
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado); font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
}
.mock-profile-lines { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.mock-profile-line { height: 7px; border-radius: 4px; background: rgba(127,45,31,0.06); }

.mock-cert {
  position: absolute; top: 0; right: 10px;
  width: 210px; background: var(--creme); border-radius: 14px;
  padding: 22px; box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03); z-index: 3;
}
.mock-cert-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.mock-cert-badge i { color: #fff; font-size: 18px; }
.mock-cert-title { font-size: 14px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 4px; }
.mock-cert-sub { font-size: 12px; color: var(--texto-leve); }

.mock-usp {
  position: absolute; bottom: 20px; right: 30px;
  background: var(--verde-escuro); color: #fff; border-radius: 14px;
  padding: 18px 22px; box-shadow: 0 15px 40px rgba(127,45,31,0.2); z-index: 3;
  display: flex; align-items: center; gap: 12px;
}
.mock-usp i { color: var(--dourado); font-size: 20px; }
.mock-usp-text { font-size: 13px; font-weight: 600; line-height: 1.4; }
.mock-usp-text small { display: block; font-weight: 400; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ===== SERVICES CARDS (home) ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1220px; margin: 40px auto 0; }
.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 20px; padding: 38px 30px;
  border: 1px solid rgba(127,45,31,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--verde-escuro), var(--dourado));
  opacity: 0; transition: opacity 0.4s;
}
.service-card::after {
  content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(214,194,133,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; opacity: 0; transition: opacity 0.5s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
  border-color: rgba(214,194,133,0.15);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.svc-icon {
  width: 64px; height: 64px; border-radius: 18px;
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center; font-size: 24px;
  position: relative; transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover .svc-icon { transform: translateY(-2px); }
.svc-icon.c1 { background: rgba(127,45,31,0.06); color: var(--verde-escuro); box-shadow: 0 4px 15px rgba(127,45,31,0.08); }
.svc-icon.c2 { background: rgba(214,194,133,0.1); color: var(--dourado); box-shadow: 0 4px 15px rgba(214,194,133,0.12); }
.svc-icon.c3 { background: rgba(201,97,72,0.08); color: var(--verde-medio); box-shadow: 0 4px 15px rgba(201,97,72,0.1); }
.svc-icon.c4 { background: rgba(127,45,31,0.06); color: var(--verde-escuro); box-shadow: 0 4px 15px rgba(127,45,31,0.08); }

.service-card h3 { font-size: 19px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 14px; }
.service-card p { font-size: 16px; line-height: 1.75; color: var(--texto-leve); }

/* ===== STEPS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1220px; margin: 50px auto 0; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 44px; left: 12%; right: 12%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--dourado) 0, var(--dourado) 8px, transparent 8px, transparent 16px);
  opacity: 0.3;
}
.step { text-align: center; position: relative; padding: 0 20px; }
.step-num {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700;
  position: relative; z-index: 2;
}
.step:nth-child(1) .step-num { background: var(--verde-escuro); color: var(--dourado); }
.step:nth-child(2) .step-num { background: var(--verde-medio); color: #fff; }
.step:nth-child(3) .step-num { background: var(--dourado); color: var(--verde-escuro); }
.step:nth-child(4) .step-num { background: var(--verde-escuro); color: var(--dourado); }
.step h3 { font-size: 18px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 14px; }
.step p { font-size: 16px; line-height: 1.75; color: var(--texto-leve); }

/* ===== DIFERENCIAIS ===== */
.diff-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.diff-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(145deg, #ffffff, #fefefe);
  border-radius: 16px;
  border: 1px solid rgba(127,45,31,0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.diff-item:hover {
  border-color: rgba(214,194,133,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateX(4px);
}
.diff-check {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--verde-escuro); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.diff-check i { color: var(--dourado); font-size: 14px; }
.diff-item p { font-size: 17px; line-height: 1.6; color: var(--texto); font-weight: 500; }

/* Mockup: Methodology dark card */
.mock-gauge-scene { position: relative; height: 440px; }
.mock-gauge-scene::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(214,194,133,0.08); filter: blur(80px);
  pointer-events: none;
}
.mock-methodology {
  position: absolute; top: 10px; left: 10px; right: 10px;
  background: linear-gradient(145deg, var(--verde-escuro) 0%, #152e22 100%);
  border-radius: 22px;
  padding: 32px;
  box-shadow:
    0 30px 80px rgba(127,45,31,0.35),
    0 10px 25px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  min-height: 390px;
}
.mock-meth-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.mock-meth-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-meth-dot:nth-child(1) { background: #ff5f57; }
.mock-meth-dot:nth-child(2) { background: #febc2e; }
.mock-meth-dot:nth-child(3) { background: #a7c0bc; }
.mock-meth-steps { display: flex; flex-direction: column; gap: 16px; }
.mock-meth-step {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.mock-meth-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(214,194,133,0.12);
  transform: translateX(4px);
}
.mock-meth-step-num {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700;
}
.mock-meth-step:nth-child(1) .mock-meth-step-num { background: rgba(214,194,133,0.15); color: var(--dourado); }
.mock-meth-step:nth-child(2) .mock-meth-step-num { background: rgba(58,125,94,0.2); color: var(--verde-claro); }
.mock-meth-step:nth-child(3) .mock-meth-step-num { background: rgba(214,194,133,0.15); color: var(--dourado); }
.mock-meth-step-text { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 500; }
.mock-meth-step-bar { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); overflow: hidden; margin-left: auto; }
.mock-meth-step-bar-fill { height: 100%; border-radius: 3px; }
.mock-meth-step:nth-child(1) .mock-meth-step-bar-fill { width: 100%; background: var(--dourado); }
.mock-meth-step:nth-child(2) .mock-meth-step-bar-fill { width: 75%; background: var(--verde-claro); }
.mock-meth-step:nth-child(3) .mock-meth-step-bar-fill { width: 50%; background: var(--dourado); animation: growBar 2s ease-in-out infinite alternate; }
@keyframes growBar { 0% { width: 50%; } 100% { width: 100%; } }
.mock-meth-badge {
  position: absolute; bottom: -16px; right: 24px;
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 12px;
}
.mock-meth-badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(214,194,133,0.12); display: flex;
  align-items: center; justify-content: center;
}
.mock-meth-badge-icon i { color: var(--dourado); font-size: 16px; }
.mock-meth-badge-text { font-size: 13px; font-weight: 700; color: var(--verde-escuro); }
.mock-meth-badge-text small { display: block; font-weight: 400; color: var(--texto-leve); margin-top: 1px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 60px; text-align: center;
  background: var(--verde-escuro); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('imagemmundomapbackground.svg') center/cover no-repeat;
  opacity: 0.06; pointer-events: none;
}
.cta-section .cta-watermark {
  position: absolute; right: -80px; bottom: -80px; width: 380px; height: 380px;
  opacity: 0.04; pointer-events: none; z-index: 0;
}
.cta-section::after {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(214,194,133,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; filter: blur(40px);
}
.cta-content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-section .section-tag { color: var(--dourado); }
.cta-title {
  font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 600;
  color: #fff; line-height: 1.25; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.cta-desc { font-size: 19px; color: rgba(255,255,255,0.6); margin-bottom: 38px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FORM ===== */
.form-card {
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  border-radius: 24px; padding: 48px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08), 0 6px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(127,45,31,0.05);
}
.form-card h3 {
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 600;
  color: var(--verde-escuro); margin-bottom: 10px;
}
.form-card .form-sub { font-size: 16px; color: var(--texto-leve); margin-bottom: 36px; line-height: 1.7; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--texto); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-input {
  width: 100%; padding: 15px 18px; border: 1.5px solid var(--borda);
  border-radius: 10px; font-size: 16px; font-family: 'Inter', sans-serif;
  color: var(--texto); background: var(--cinza-bg); transition: all 0.3s; outline: none;
}
.form-input:focus { border-color: var(--verde-escuro); background: #fff; }
.form-input::placeholder { color: var(--texto-claro); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-btn {
  width: 100%; padding: 17px; background: var(--verde-escuro); color: #fff;
  border: none; border-radius: 10px; font-size: 17px; font-weight: 600;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.3s;
  margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-btn:hover { background: var(--verde-medio); transform: translateY(-1px); }

/* ===== CONTACT ===== */
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon i { font-size: 22px; }
.contact-item h4 { font-size: 18px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 4px; }
.contact-item p { font-size: 16px; color: var(--texto-leve); line-height: 1.6; }
.contact-item a { color: var(--verde-escuro); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.contact-item a:hover { color: var(--dourado); }

/* ===== SOBRE PAGE ===== */
.team-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 24px; padding: 48px;
  border: 1px solid rgba(127,45,31,0.06);
  position: relative; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04), 0 2px 10px rgba(0,0,0,0.02);
  transition: box-shadow 0.4s ease;
}
.team-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 4px 15px rgba(0,0,0,0.03); }
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--verde-escuro), var(--dourado), var(--verde-claro));
}
.team-role {
  display: inline-block; padding: 7px 18px; background: var(--dourado-bg);
  border-radius: 6px; font-size: 13px; font-weight: 700; color: var(--dourado);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 600; color: var(--verde-escuro); margin-bottom: 22px; }
.team-card p { font-size: 17px; line-height: 1.85; color: var(--texto-leve); margin-bottom: 16px; }

.big-quote {
  max-width: 860px; margin: 0 auto; text-align: center;
  font-family: 'Playfair Display', serif; font-size: 32px; font-style: italic;
  color: var(--verde-escuro); line-height: 1.5; padding: 50px 0;
}
.big-quote-author { font-family: 'Inter', sans-serif; font-size: 16px; font-style: normal; color: var(--texto-leve); margin-top: 24px; font-weight: 500; }

/* ===== SERVIÇOS PAGE ===== */
.svc-detail-section { padding: 0; }
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 660px;
}
.svc-block-text {
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-block-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
/* Ambient glow for service visuals */
.svc-block-visual::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,194,133,0.06) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.svc-detail-section:nth-child(even) .svc-block-text { order: 2; padding: 80px 80px 80px 60px; }
.svc-detail-section:nth-child(even) .svc-block-visual { order: 1; }
.svc-detail-section:nth-child(odd) .svc-block-visual { background: var(--creme); }
.svc-detail-section:nth-child(even) .svc-block-visual { background: var(--cinza-bg); }

.svc-block-text h3 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 600; color: var(--verde-escuro); margin-bottom: 20px; }
.svc-block-text p { font-size: 18px; line-height: 1.85; color: var(--texto-leve); margin-bottom: 22px; }
.svc-block-text ul { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.svc-block-text ul li { display: flex; align-items: center; gap: 14px; font-size: 17px; color: var(--texto); font-weight: 500; }
.svc-block-text ul li i { color: var(--dourado); font-size: 14px; width: 22px; text-align: center; }

/* ===== CSS Mockup: Service document scenes ===== */
.svc-mockup {
  position: relative; width: 460px; height: 520px;
}

/* Cidadania: passport/certificate scene */
.svc-mock-certidao {
  width: 350px; background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04);
  position: absolute; top: 0; left: 0; z-index: 2;
}
.svc-mock-certidao-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 2px solid var(--verde-escuro);
}
.svc-mock-certidao-header .label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde-escuro); }
.svc-mock-certidao-header .seal {
  width: 28px; height: 28px; border-radius: 50%; background: var(--verde-escuro);
  display: flex; align-items: center; justify-content: center;
}
.svc-mock-certidao-header .seal i { color: var(--dourado); font-size: 12px; }

/* Diploma mockup */
.svc-mock-diploma {
  width: 350px; background: linear-gradient(135deg, #FFFDF5, #FFF9E6); border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(214,194,133,0.15);
  position: absolute; top: 0; left: 0; z-index: 2; text-align: center;
}
.svc-mock-diploma-crest {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  display: flex; align-items: center; justify-content: center;
}
.svc-mock-diploma-crest i { color: #fff; font-size: 22px; }

/* Contract mockup */
.svc-mock-contract {
  width: 350px; background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04);
  position: absolute; top: 0; left: 0; z-index: 2;
}

/* Consular mockup */
.svc-mock-consular {
  width: 350px; background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04);
  position: absolute; top: 0; left: 10px; z-index: 2;
}

/* Shared doc elements */
.svc-doc-row { display: flex; gap: 10px; margin-bottom: 9px; }
.svc-doc-label { height: 7px; width: 35%; border-radius: 3px; background: rgba(127,45,31,0.1); }
.svc-doc-value { height: 7px; flex: 1; border-radius: 3px; background: rgba(127,45,31,0.05); }
.svc-doc-line { height: 7px; border-radius: 3px; background: rgba(127,45,31,0.05); margin-bottom: 8px; }
.svc-doc-divider { height: 1px; background: rgba(127,45,31,0.06); margin: 14px 0; }

/* Floating service badge */
.svc-float-badge {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 10px;
  z-index: 5;
}
.svc-float-badge i { font-size: 16px; }
.svc-float-badge span { font-size: 12px; font-weight: 700; color: var(--verde-escuro); }
.svc-float-badge small { display: block; font-size: 11px; font-weight: 400; color: var(--texto-leve); margin-top: 1px; }

/* Methodology flow */
.meth-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1220px; margin: 50px auto 0; position: relative;
}
.meth-flow::before {
  content: ''; position: absolute; top: 60px; left: 10%; right: 10%;
  height: 3px; background: linear-gradient(90deg, var(--verde-escuro), var(--dourado), var(--verde-escuro));
  opacity: 0.15;
}
.meth-flow-item { text-align: center; padding: 0 20px; position: relative; }
.meth-flow-icon {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  border: 2px solid rgba(127,45,31,0.08);
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  box-shadow: 0 6px 25px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.meth-flow-item:hover .meth-flow-icon {
  border-color: var(--dourado);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0 0 6px rgba(214,194,133,0.06);
}
.meth-flow-icon i { font-size: 34px; color: var(--verde-escuro); }
.meth-flow-num {
  position: absolute; top: -6px; right: -6px; width: 34px; height: 34px;
  background: var(--dourado); color: var(--verde-escuro); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; z-index: 3;
}
.meth-flow-item h4 { font-size: 18px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 12px; }
.meth-flow-item p { font-size: 16px; line-height: 1.75; color: var(--texto-leve); }

/* Commitment cards */
.commit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1220px; margin: 40px auto 0; }
.commit-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 30px;
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  border-radius: 18px; border: 1px solid rgba(127,45,31,0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.commit-card:hover {
  border-color: rgba(214,194,133,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.commit-card h4 { font-size: 18px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 8px; }
.commit-card p { font-size: 16px; line-height: 1.75; color: var(--texto-leve); }

/* Prazos */
.prazos-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1220px; margin: 40px auto 0; }
.prazo-card {
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  border-radius: 20px; padding: 40px 32px;
  border: 1px solid rgba(127,45,31,0.05); text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.prazo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07), 0 6px 16px rgba(0,0,0,0.04);
  border-color: rgba(214,194,133,0.15);
}
.prazo-card-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.prazo-card h4 { font-size: 20px; font-weight: 700; color: var(--verde-escuro); margin-bottom: 8px; }
.prazo-card .prazo-time { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--dourado); margin-bottom: 14px; }
.prazo-card p { font-size: 16px; color: var(--texto-leve); line-height: 1.7; }

/* ===== CONTATO PAGE: WhatsApp mockup ===== */
.wpp-mockup {
  width: 360px; background: #e5ddd5; border-radius: 22px; overflow: hidden;
  box-shadow:
    0 35px 90px rgba(0,0,0,0.18),
    0 12px 30px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}
.wpp-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.2), 0 15px 40px rgba(0,0,0,0.1);
}
.wpp-mockup-header {
  background: #075E54; padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.wpp-mockup-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-claro));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--dourado);
}
.wpp-mockup-name { color: #fff; font-size: 15px; font-weight: 600; }
.wpp-mockup-status { color: rgba(255,255,255,0.6); font-size: 12px; }
.wpp-mockup-chat { padding: 22px 18px; display: flex; flex-direction: column; gap: 12px; min-height: 260px; }
.wpp-msg {
  max-width: 80%; padding: 11px 15px; border-radius: 10px;
  font-size: 14px; line-height: 1.5; position: relative;
}
.wpp-msg-in { background: #fff; align-self: flex-start; border-top-left-radius: 0; color: var(--texto); }
.wpp-msg-out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 0; color: var(--texto); }
.wpp-msg-time { font-size: 10px; color: #999; text-align: right; margin-top: 4px; }
.wpp-mockup-input {
  background: #f0f0f0; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.wpp-mockup-input-field {
  flex: 1; background: #fff; border-radius: 20px; padding: 10px 16px;
  font-size: 14px; color: #999; border: none;
}
.wpp-mockup-input i { color: #075E54; font-size: 18px; }

/* ===== SOBRE PAGE: Values ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1220px; margin: 40px auto 0; }
.value-card {
  padding: 44px 34px; border-radius: 22px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  border: 1px solid rgba(127,45,31,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--verde-escuro), var(--dourado), var(--verde-claro));
}
.value-card-icon {
  width: 64px; height: 64px; border-radius: 16px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--verde-escuro); margin-bottom: 16px; }
.value-card p { font-size: 17px; line-height: 1.8; color: var(--texto-leve); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 60px 30px; background: var(--verde-escuro);
  border-top: 3px solid var(--dourado); position: relative; overflow: hidden;
}
.footer-watermark {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; opacity: 0.03; pointer-events: none;
}
.footer-grid {
  max-width: 1220px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img { height: 50px; width: auto; object-fit: contain; margin-bottom: 18px; opacity: 0.9; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 4px; display: none; }
.footer-brand-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--dourado); margin-bottom: 16px; display: none; }
.footer-brand-desc { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--dourado); }
.footer-bottom {
  max-width: 1220px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ===== WHATSAPP FLOAT ===== */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 62px; height: 62px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 8px 30px rgba(37,211,102,0.35),
    0 0 0 4px rgba(37,211,102,0.12),
    0 0 0 8px rgba(37,211,102,0.06);
  cursor: pointer; z-index: 999;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  animation: wppPulse 3s ease-in-out infinite;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.45), 0 0 0 6px rgba(37,211,102,0.15);
  animation: none;
}
.wpp-float i { color: #fff; font-size: 28px; }
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.35), 0 0 0 4px rgba(37,211,102,0.12), 0 0 0 8px rgba(37,211,102,0.06); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,0.35), 0 0 0 8px rgba(37,211,102,0.08), 0 0 0 16px rgba(37,211,102,0.03); }
}

/* ===== SMOOTH ENTRANCE TRANSITIONS ===== */
.service-card, .diff-item, .commit-card, .prazo-card, .value-card, .step, .meth-flow-item {
  opacity: 1;
}

/* Subtle glass border utility for inline mockups */
.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ===== MOBILE NAV ===== */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 999; padding: 30px;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0; font-size: 18px; font-weight: 600; color: var(--verde-escuro);
  text-decoration: none; border-bottom: 1px solid var(--borda);
  transition: color 0.3s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a.active { color: var(--dourado); }
.nav-mobile-menu .nav-mobile-cta {
  margin-top: 20px; padding: 16px; background: var(--verde-escuro);
  color: #fff !important; border-radius: 12px; justify-content: center;
  border-bottom: none; font-size: 16px;
}
.nav-mobile-menu .nav-mobile-cta i { color: var(--dourado); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .navbar, .cred-bar, .cta-section, .footer { padding-left: 24px; padding-right: 24px; }

  /* Layout */
  .hero-grid, .grid-2, .svc-block { grid-template-columns: 1fr; gap: 40px; }
  .grid-2.gap-lg { gap: 50px; }
  .svc-block { min-height: auto; }
  .svc-block-text, .svc-detail-section:nth-child(even) .svc-block-text { padding: 50px 24px; order: 1 !important; }
  .svc-block-visual, .svc-detail-section:nth-child(even) .svc-block-visual { order: 2 !important; padding: 30px 24px; }
  .hero, .section, .page-hero { padding-left: 24px; padding-right: 24px; }

  /* Hero */
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 60px; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-title { font-size: 40px; }
  .mockup-scene { width: 100%; max-width: 400px; height: 440px; }
  .mock-doc-pt, .mock-doc-it { width: 240px; height: 300px; }

  /* Sections */
  .section-title { font-size: 34px; }
  .page-hero .section-title { font-size: 36px; }
  .page-hero { padding-top: 130px; padding-bottom: 70px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .cta-section { padding-top: 70px; padding-bottom: 70px; }
  .cta-title { font-size: 34px; }
  .section-desc, .section-desc-lg { font-size: 17px; }
  .about-quote { font-size: 22px; }
  .big-quote { font-size: 26px; }

  /* Grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .meth-flow { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps-grid::before, .meth-flow::before { display: none; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item::after { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .prazos-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Team photos */
  .team-photo-wrap { max-width: 360px !important; margin: 0 auto; }

  /* Map visual */
  .map-visual-wrap { width: 100% !important; height: auto !important; min-height: 350px !important; }

  /* WPP mockup */
  .wpp-mockup { width: 100%; }

  /* Form */
  .form-card { padding: 32px 24px; }
  .form-card h3 { font-size: 26px; }

  /* Contato channels */
  .contact-channels { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  /* Nav */
  .navbar { padding-left: 16px; padding-right: 16px; height: 66px; }
  .nav-mobile-menu { top: 66px; padding: 20px 16px; }
  .nav-logo { width: 36px; height: 36px; font-size: 13px; }
  .nav-logo-img { height: 30px; }
  .nav-logo-icon { height: 26px; }
  .nav-logo-marca { height: 22px; }
  .nav-brand-name { font-size: 16px; }
  .nav-brand-sub { font-size: 9px; }

  /* Hero */
  .hero { padding-top: 90px; padding-bottom: 50px; }
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 16px 32px; font-size: 16px; }
  .hero-visual { min-height: 300px; }
  .mockup-scene { max-width: 320px; height: 380px; }
  .mock-doc-pt, .mock-doc-it { width: 200px; height: 250px; padding: 20px 16px; }
  .mock-doc-pt { top: 40px; left: 0; }
  .mock-doc-it { top: 10px; right: 0; }
  .mock-float { display: none; }
  .mock-arrow { width: 52px; height: 52px; }
  .mock-arrow i { font-size: 15px; }

  /* Sections */
  .section { padding: 60px 16px; }
  .page-hero { padding: 110px 16px 60px; }
  .section-title { font-size: 28px; }
  .page-hero .section-title { font-size: 28px; }
  .section-tag { font-size: 11px; letter-spacing: 2px; }
  .section-desc, .section-desc-lg { font-size: 16px; }
  .text-body-lg { font-size: 16px; }
  .about-quote { font-size: 20px; padding-left: 18px; }
  .about-text { font-size: 16px; }
  .big-quote { font-size: 22px; padding: 20px 0; }

  /* CTA */
  .cta-section { padding: 60px 16px; }
  .cta-title { font-size: 28px; }
  .cta-desc { font-size: 16px; }

  /* Cred bar */
  .cred-bar { padding: 36px 16px; }
  .cred-grid { grid-template-columns: 1fr; gap: 20px; }
  .cred-text h4 { font-size: 15px; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 22px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 15px; }
  .svc-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; }

  /* Steps / Methodology */
  .steps-grid, .meth-flow { grid-template-columns: 1fr; gap: 30px; }
  .step-num { width: 70px; height: 70px; font-size: 24px; margin-bottom: 20px; }
  .meth-flow-icon { width: 90px; height: 90px; margin-bottom: 20px; }
  .meth-flow-icon img { width: 36px !important; height: 36px !important; }
  .meth-flow-num { width: 28px; height: 28px; font-size: 12px; }

  /* Diffs */
  .diff-item { padding: 16px 18px; }
  .diff-item p { font-size: 15px; }

  /* Gauge scene */
  .mock-gauge-scene { height: auto; min-height: 360px; }
  .mock-methodology { position: relative; top: auto; left: auto; right: auto; padding: 24px; min-height: auto; }
  .mock-meth-step { padding: 12px 14px; }
  .mock-meth-step-text { font-size: 13px; }
  .mock-meth-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; }

  /* Service detail pages */
  .svc-block-text, .svc-detail-section:nth-child(even) .svc-block-text { padding: 40px 16px; }
  .svc-block-visual, .svc-detail-section:nth-child(even) .svc-block-visual { padding: 20px 16px 40px; }
  .svc-block-text h3 { font-size: 28px; }
  .svc-block-text p { font-size: 16px; }
  .svc-block-text ul li { font-size: 15px; }

  /* Team */
  .team-card { padding: 28px 22px; }
  .team-card h3 { font-size: 24px; }
  .team-card p { font-size: 15px; }
  .team-photo-wrap { max-width: 100% !important; }

  /* Values */
  .value-card { padding: 30px 24px; }
  .value-card h3 { font-size: 22px; }
  .value-card p { font-size: 15px; }
  .value-card-icon { width: 52px; height: 52px; font-size: 22px; }

  /* Prazos */
  .prazo-card { padding: 30px 24px; }
  .prazo-card h4 { font-size: 18px; }
  .prazo-card .prazo-time { font-size: 22px; }

  /* Commits */
  .commit-card { padding: 22px; gap: 14px; }
  .commit-card h4 { font-size: 16px; }
  .commit-card p { font-size: 15px; }

  /* Footer */
  .footer { padding: 40px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Form */
  .form-card { padding: 24px 18px; }
  .form-card h3 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-input { padding: 13px 16px; font-size: 15px; }

  /* WPP float */
  .wpp-float { width: 54px; height: 54px; bottom: 20px; right: 16px; }
  .wpp-float i { font-size: 24px; }

  /* CTA mini form */
  .cta-mini-form { grid-template-columns: 1fr !important; }

  /* Map visual */
  .map-visual-wrap { min-height: 260px !important; overflow: hidden; }
  .map-visual-wrap [style*="animation:floatUp"] { display: none; }
  .svc-mockup { width: 100%; }

  /* Sobre mockups */
  .sobre-desktop-mockup { display: none; }

  /* Contato channels */
  .contact-channels { gap: 12px !important; }
  .contact-channel-card { padding: 20px !important; flex-wrap: wrap; }
  .contact-channel-card [style*="margin-left:auto"] { display: none; }
}
