/* ═══════════════════════════════════════════════════════════════════════
   PRO CABO — Static build (pure HTML/CSS/JS, converted from React source)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── FONTS ──────────────────────────────────────────────────────────────── */
:root {
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

/* ─── DARK THEME ─────────────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg-primary:   #0B0B0C;
  --bg-secondary: #080809;
  --text-primary: #F5F5F5;
  --text-60: rgba(245, 245, 245, 0.60);
  --text-50: rgba(245, 245, 245, 0.50);
  --text-40: rgba(245, 245, 245, 0.40);
  --text-30: rgba(245, 245, 245, 0.30);
  --text-20: rgba(245, 245, 245, 0.20);
  --gold:        #C8A96A;
  --gold-light:  #d9bc8a;
  --gold-dark:   #b8953a;
  --card-bg:     rgba(255, 255, 255, 0.03);
  --card-border: rgba(200, 169, 106, 0.15);
  --process-bg:     rgba(255, 255, 255, 0.05);
  --process-border: rgba(200, 169, 106, 0.25);
  --process-text:   rgba(245, 245, 245, 0.90);
  --process-muted:  rgba(245, 245, 245, 0.50);
  --process-number-stroke: #C8A96A;
  --navbar-bg:    rgba(11, 11, 12, 0.80);
  --navbar-text:  rgba(245, 245, 245, 0.70);
  --divider-via:  #C8A96A;
  --section-line: rgba(200, 169, 106, 0.18);
  --badge-border: rgba(200, 169, 106, 0.30);
  --badge-text:   #C8A96A;
  --btn-outline-border: rgba(245, 245, 245, 0.15);
  --btn-outline-text:   rgba(245, 245, 245, 0.65);
  --footer-bg:    #080809;
  --footer-border: rgba(200, 169, 106, 0.08);
}

/* ─── WHITE THEME (default) ──────────────────────────────────────────────── */
:root,
[data-theme="white"] {
  --bg-primary:   #FFFFFF;
  --bg-secondary: #F6F2EF;
  --text-primary: #1A1A1A;
  --text-60: rgba(26, 26, 26, 0.78);
  --text-50: rgba(26, 26, 26, 0.68);
  --text-40: rgba(26, 26, 26, 0.58);
  --text-30: rgba(26, 26, 26, 0.42);
  --text-20: rgba(26, 26, 26, 0.30);
  --gold:        #D44E00;
  --gold-light:  #E86820;
  --gold-dark:   #A83800;
  --card-bg:     rgba(26, 26, 26, 0.03);
  --card-border: rgba(212, 78, 0, 0.15);
  --process-bg:     #FFFFFF;
  --process-border: rgba(212, 78, 0, 0.20);
  --process-text:   #1A1A1A;
  --process-muted:  rgba(26, 26, 26, 0.68);
  --process-number-stroke: #D44E00;
  --navbar-bg:    rgba(255, 255, 255, 0.85);
  --navbar-text:  rgba(26, 26, 26, 0.78);
  --divider-via:  #D44E00;
  --section-line: rgba(212, 78, 0, 0.14);
  --badge-border: rgba(212, 78, 0, 0.25);
  --badge-text:   #D44E00;
  --btn-outline-border: rgba(26, 26, 26, 0.18);
  --btn-outline-text:   rgba(26, 26, 26, 0.72);
  --footer-bg:    #F6F2EF;
  --footer-border: rgba(212, 78, 0, 0.10);
}

/* ─── CLEAN THEME ────────────────────────────────────────────────────────── */
[data-theme="clean"] {
  --bg-primary:   #F9F7F2;
  --bg-secondary: #EEEbE2;
  --text-primary: #1C1C1D;
  --text-60: rgba(28, 28, 29, 0.65);
  --text-50: rgba(28, 28, 29, 0.55);
  --text-40: rgba(28, 28, 29, 0.45);
  --text-30: rgba(28, 28, 29, 0.30);
  --text-20: rgba(28, 28, 29, 0.18);
  --gold:        #A87B2A;
  --gold-light:  #C8A96A;
  --gold-dark:   #8A6018;
  --card-bg:     rgba(255, 255, 255, 0.75);
  --card-border: rgba(168, 123, 42, 0.18);
  --process-bg:     #FFFFFF;
  --process-border: rgba(168, 123, 42, 0.22);
  --process-text:   #1C1C1D;
  --process-muted:  rgba(28, 28, 29, 0.55);
  --process-number-stroke: #A87B2A;
  --navbar-bg:    rgba(249, 247, 242, 0.80);
  --navbar-text:  rgba(28, 28, 29, 0.65);
  --divider-via:  #A87B2A;
  --section-line: rgba(168, 123, 42, 0.18);
  --badge-border: rgba(168, 123, 42, 0.30);
  --badge-text:   #A87B2A;
  --btn-outline-border: rgba(28, 28, 29, 0.18);
  --btn-outline-text:   rgba(28, 28, 29, 0.60);
  --footer-bg:    #EEEbE2;
  --footer-border: rgba(168, 123, 42, 0.10);
}

/* ─── RESET / BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: none; padding: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

button, [role="button"], a, label[for], select { cursor: pointer; }

.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }
.text-gold    { color: var(--gold); }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: 56rem; }

.section { padding: 6rem 0; position: relative; overflow: hidden; }
.section-primary { background: var(--bg-primary); }
.section-secondary { background: var(--bg-secondary); }

.section-line-top,
.section-line-bottom {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--section-line), transparent);
}
.section-line-top { top: 0; }
.section-line-bottom { bottom: 0; }

.section-header { text-align: center; margin-bottom: 5rem; }
.eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.section-desc {
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--text-50);
}
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── GOLD GRADIENT TEXT ─────────────────────────────────────────────────── */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── DIVIDER ────────────────────────────────────────────────────────────── */
.divider-gold {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--divider-via), transparent);
  margin-bottom: 1.25rem;
}

/* ─── GLASS CARD ─────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

/* ─── GOLD BUTTON ────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 0.15rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(200, 169, 106, 0.35);
  transform: translateY(-1px);
}

/* ─── DOTS ───────────────────────────────────────────────────────────────── */
.dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); flex-shrink: 0; }
.dot-sm { width: 4px; height: 4px; border-radius: 999px; background: var(--gold); flex-shrink: 0; display: inline-block; }

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.animate-fade-in-up  { opacity: 0; animation: fadeInUp 0.75s ease forwards; }
.animate-fade-in     { opacity: 0; animation: fadeIn 0.9s ease forwards; }
.animate-slide-left  { opacity: 0; animation: slideInLeft 0.75s ease forwards; }
.animate-slide-right { opacity: 0; animation: slideInRight 0.75s ease forwards; }

.delay-100 { animation-delay: 0.10s; }
.delay-200 { animation-delay: 0.20s; }
.delay-300 { animation-delay: 0.30s; }
.delay-400 { animation-delay: 0.40s; }
.delay-500 { animation-delay: 0.50s; }
.delay-600 { animation-delay: 0.60s; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════ NAVBAR ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.navbar.scrolled {
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--section-line);
  padding: 0.75rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img { height: 2.5rem; width: auto; object-fit: contain; }

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navbar-text);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--gold); }

.navbar-cta { display: none; font-size: 0.75rem; padding: 0.65rem 1.25rem; }

.navbar-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--text-primary);
}

.navbar-mobile {
  display: none;
  padding: 1.5rem;
  background: var(--navbar-bg);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--section-line);
}
.navbar-mobile.open { display: block; }
.navbar-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.navbar-mobile-links .nav-link { text-align: left; width: 100%; }
.navbar-mobile-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: inline-flex; }
  .navbar-toggle { display: none; }
  .navbar-mobile { display: none !important; }
  .section { padding: 7rem 0; }
}
@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}

/* ═══════════════════════════ HERO ═════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
}
.hero-texture {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23D44E00' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,78,0,0.05), transparent 65%);
}
.hero-edge {
  position: absolute; left: 0; top: 0; bottom: 0; width: 1px; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.hero-content {
  position: relative; z-index: 10;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 7rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  width: fit-content;
  border: 1px solid var(--badge-border);
}
.badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--badge-text);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-line { display: block; color: var(--text-primary); }

.hero-sub {
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 440px;
  color: var(--text-60);
  font-size: 0.97rem;
}

.hero-cta {
  font-size: 0.875rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-40);
}
.hero-trust-sep { width: 1px; height: 0.875rem; background: var(--section-line); }
.hero-trust-sep-desktop, .hero-trust-item-desktop { display: none; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual-frame-outer {
  display: none;
  position: absolute; top: -1rem; right: -1rem; width: 10rem; height: 10rem; border-radius: 0.15rem;
  border: 1px solid var(--section-line);
}
.hero-visual-frame-inner {
  display: none;
  position: absolute; bottom: -1rem; left: -1rem; width: 6rem; height: 6rem; border-radius: 0.15rem;
  border: 1px solid var(--section-line); opacity: 0.5;
}
.hero-visual-box-wrap {
  position: relative; z-index: 10; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0.15rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 2.5rem;
  position: relative;
}
.hero-visual-logo { width: 100%; max-width: 280px; object-fit: contain; }
.hero-visual-divider { display: none; width: 4rem; height: 1px; background: var(--gold); opacity: 0.4; }
.hero-visual-tagline {
  display: none;
  text-align: center; font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-40);
}
.hero-visual-floating-badge {
  position: static; margin-top: 0.5rem;
  border-radius: 0.15rem; padding: 0.75rem 1rem;
  background: rgba(11, 11, 12, 0.88);
  border: 1px solid rgba(212, 78, 0, 0.35);
  backdrop-filter: blur(12px);
}
.hero-visual-floating-inner { display: flex; align-items: center; gap: 0.75rem; }
.hero-visual-floating-icon {
  width: 2rem; height: 2rem; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  background: rgba(212,78,0,0.15); border: 1px solid rgba(212,78,0,0.3); color: #E86820;
}
.hero-visual-floating-label { font-size: 0.625rem; letter-spacing: 0.02em; color: rgba(245,245,245,0.5); }
.hero-visual-floating-value { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: #F5F5F5; }

.hero-scroll {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
  padding-bottom: 1.25rem;
}
.hero-scroll span {
  font-size: 0.5625rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-20);
}
.hero-scroll-line {
  width: 1px; height: 1.75rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .hero { height: 100svh; min-height: 600px; }
  .hero-content { justify-content: center; padding-top: 5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; height: 100%; }
  .hero-visual { display: flex; justify-content: flex-end; align-items: center; height: 100%; }
  .hero-visual-frame-outer, .hero-visual-frame-inner { display: block; }
  .hero-visual-box-wrap { max-height: calc(100svh - 14rem); }
  .hero-visual-box { aspect-ratio: auto; height: calc(100svh - 14rem); gap: 2rem; padding: 3rem; }
  .hero-visual-divider, .hero-visual-tagline { display: block; }
  .hero-visual-floating-badge { position: absolute; bottom: 1rem; left: 1rem; margin-top: 0; }
  .hero-trust-sep-desktop, .hero-trust-item-desktop { display: flex; }
}

/* ═══════════════════════════ AUTHORITY / STATS ════════════════════════════ */
.authority-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,78,0,0.04), transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.stat-card { padding: 2rem; transition: transform 0.4s ease, border-color 0.3s ease; }
.stat-card:hover { transform: translateY(-4px); }
.stat-icon {
  width: 3rem; height: 3rem; border-radius: 0.15rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(212,78,0,0.08);
  border: 1px solid var(--card-border);
  color: var(--gold);
}
.stat-number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 0.75rem; color: var(--text-primary);
}
.stat-hr { width: 2rem; height: 1px; margin-bottom: 0.75rem; background: var(--card-border); }
.stat-desc { font-size: 0.875rem; line-height: 1.7; color: var(--text-40); }

.authority-bottom { margin-top: 5rem; }
.authority-bottom-inner {
  padding: 1.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.authority-bottom-left { display: flex; align-items: center; gap: 1rem; }
.authority-bar {
  width: 4px; height: 3rem; border-radius: 999px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,78,0,0.2));
}
.authority-bottom-title { font-family: var(--font-display); font-weight: 300; font-size: 1.25rem; color: var(--text-primary); }
.authority-bottom-sub { font-size: 0.875rem; margin-top: 0.25rem; color: var(--text-40); }
.authority-tags { display: flex; align-items: center; gap: 2rem; }
.authority-tags span {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-40);
  display: none;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .authority-bottom-inner { flex-direction: row; }
  .authority-tags span { display: block; }
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════ SERVICES ═════════════════════════════════════ */
.services-texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.015;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212,78,0,1) 40px, rgba(212,78,0,1) 41px);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-2px); }
.service-glow {
  position: absolute; top: 0; right: 0; width: 6rem; height: 6rem; pointer-events: none;
  opacity: 0; transition: opacity 0.5s ease;
  background: radial-gradient(circle at top right, rgba(212,78,0,0.08), transparent 70%);
}
.service-card:hover .service-glow { opacity: 1; }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; }
.service-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.15rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(212,78,0,0.08); border: 1px solid var(--card-border); color: var(--gold);
}
.service-subtitle {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; text-align: right; margin-top: 0.25rem;
  color: var(--text-30);
}
.service-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-primary); }
.service-desc { line-height: 1.7; font-size: 0.875rem; margin-bottom: 1.5rem; color: var(--text-50); }
.service-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 2rem;
}
.service-items li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-40); }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  transition: gap 0.3s ease;
}
.service-card:hover .service-link { gap: 1rem; }
.service-link-line { width: 2rem; height: 1px; background: var(--gold); display: inline-block; }

@media (min-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══════════════════════════ PROCESS ══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.process-card {
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: default;
  background: var(--process-bg);
  border: 1px solid var(--process-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.process-card:hover { transform: translateY(-4px); }
.process-number {
  font-weight: 700; line-height: 1; margin-bottom: 1.25rem; user-select: none;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--process-number-stroke);
  opacity: 0.55;
  font-family: var(--font-display);
}
.process-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; color: var(--process-text); }
.process-hr { width: 2rem; height: 2px; margin-bottom: 1rem; border-radius: 999px; background: #D44E00; opacity: 0.45; }
.process-desc { font-size: 0.875rem; line-height: 1.7; flex: 1; color: var(--process-muted); }

.process-cta { text-align: center; margin-top: 3rem; }
.process-cta p { font-size: 0.875rem; margin-bottom: 1.25rem; letter-spacing: 0.02em; color: var(--text-40); }
.process-cta-btn { padding: 1rem 2.5rem; font-size: 0.875rem; font-weight: 600; }

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

/* ═══════════════════════════ ABOUT ════════════════════════════════════════ */
.about-texture {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23D44E00' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual-wrap { position: relative; order: 2; }
.about-frame-outer {
  position: absolute; top: -1.5rem; left: -1.5rem; width: 10rem; height: 10rem; border-radius: 0.15rem;
  border: 1px solid var(--section-line); display: none;
}
.about-frame-inner {
  position: absolute; bottom: -1.5rem; right: -1.5rem; width: 7rem; height: 7rem; border-radius: 0.15rem;
  border: 1px solid var(--section-line); opacity: 0.5; display: none;
}
.about-visual {
  position: relative; border-radius: 0.15rem; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  padding: 3rem;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}
.about-visual-logo { width: 100%; max-width: 220px; object-fit: contain; }
.about-credential {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; border-radius: 0.15rem; padding: 1rem 1.25rem;
  background: rgba(11, 11, 12, 0.88);
  border: 1px solid rgba(212, 78, 0, 0.35);
  backdrop-filter: blur(12px);
}
.about-credential-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: #F5F5F5; }
.about-credential-role { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.125rem; color: #E86820; }
.about-credential-addr { font-size: 0.75rem; margin-top: 0.5rem; color: rgba(245,245,245,0.5); }

.about-text { order: 1; }
.about-p { line-height: 1.7; margin-bottom: 1.25rem; color: var(--text-60); font-size: 0.97rem; }

.about-highlights { display: flex; flex-direction: column; gap: 1rem; }
.about-highlight { display: flex; gap: 1rem; padding: 1.25rem; }
.about-highlight-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.15rem; flex-shrink: 0; margin-top: 0.125rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,78,0,0.08); border: 1px solid var(--card-border); color: var(--gold);
}
.about-highlight-title { font-weight: 600; font-size: 0.875rem; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 0.25rem; color: var(--text-primary); }
.about-highlight-text { font-size: 0.875rem; line-height: 1.7; color: var(--text-40); }

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about-visual-wrap { order: 1; }
  .about-text { order: 2; }
  .about-frame-outer, .about-frame-inner { display: block; }
}

/* ═══════════════════════════ TESTIMONIALS ═════════════════════════════════ */
.testimonials-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,78,0,0.04), transparent 60%);
}
.testimonials-grid { display: none; }
.testimonial-card { padding: 1.75rem; display: flex; flex-direction: column; justify-content: space-between; }
.quote-icon { color: var(--gold); opacity: 0.3; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; flex: 1; color: var(--text-60); }
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 0.7rem; }
.testimonial-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }
.testimonial-loc { font-size: 0.75rem; margin-top: 0.125rem; color: var(--text-30); }
.testimonial-tag {
  font-size: 0.625rem; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 999px; padding: 0.25rem 0.75rem;
  color: var(--gold); border: 1px solid var(--card-border); white-space: nowrap;
}

.testimonials-carousel { display: block; }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; }
.carousel-dots button {
  height: 8px; border-radius: 999px; transition: all 0.3s ease;
  background: var(--card-border); width: 8px;
}
.carousel-dots button.active { background: var(--gold); width: 24px; }

@media (min-width: 1024px) {
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .testimonials-carousel { display: none; }
}

/* ═══════════════════════════ FAQ ═══════════════════════════════════════════ */
.faq-texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.015;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212,78,0,1) 60px, rgba(212,78,0,1) 61px);
}
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { overflow: hidden; transition: border-color 0.3s ease; }
.faq-item.is-open { border-color: var(--gold); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem; text-align: left;
}
.faq-question span:first-child { font-size: 0.875rem; font-weight: 500; line-height: 1.6; color: var(--text-60); }
.faq-item.is-open .faq-question span:first-child { color: var(--text-primary); }
.faq-toggle {
  width: 2rem; height: 2rem; border-radius: 0.15rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  background: rgba(212,78,0,0.10); color: var(--gold);
}
.faq-item.is-open .faq-toggle { background: var(--gold); color: #FFFFFF; transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.5rem; }
.faq-answer-hr { width: 2rem; height: 1px; margin-bottom: 1rem; background: var(--gold); opacity: 0.35; }
.faq-answer p { font-size: 0.875rem; line-height: 1.7; color: var(--text-50); }

.faq-note { text-align: center; margin-top: 3rem; }
.faq-note p { font-size: 0.875rem; color: var(--text-30); }
.faq-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }

/* ═══════════════════════════ CTA ═══════════════════════════════════════════ */
.cta-line-top {
  position: absolute; top: 0; left: 0; right: 0; height: 1px; opacity: 0.2;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-line-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--section-line), transparent);
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,78,0,0.06), transparent 65%);
}
.cta-texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23D44E00' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-title {
  font-family: var(--font-display); font-weight: 300; line-height: 1.25; margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 4.5vw, 3.9rem); color: var(--text-primary);
}
.cta-desc { line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; color: var(--text-50); font-size: 0.97rem; }
.cta-btn { padding: 1.25rem 2.5rem; font-size: 0.9rem; font-weight: 600; }
.cta-arrow { transition: transform 0.3s ease; }
.cta-btn:hover .cta-arrow { transform: translateX(4px); }
.cta-features { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
.cta-feature { display: flex; align-items: center; gap: 0.5rem; }
.cta-feature span { font-size: 0.75rem; letter-spacing: 0.02em; color: var(--text-40); }

/* ═══════════════════════════ FOOTER ════════════════════════════════════════ */
.footer { background: var(--footer-bg); border-top: 1px solid var(--footer-border); }
.footer-inner { padding: 4rem 1.5rem 2rem; }
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo { height: 5rem; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-info p { font-size: 0.9rem; line-height: 1.6; color: var(--text-60); }
.footer-info-name { font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.footer-info a { color: var(--text-60); transition: color 0.2s ease; }
.footer-info a:hover { color: var(--gold); }

.footer-compliance {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-40);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  border-top: 1px solid var(--footer-border);
}
.footer-bottom p { font-size: 0.75rem; text-align: center; color: var(--text-40); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--text-40); transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--gold); }

.footer-credit { font-size: 0.7rem; text-align: center; color: var(--text-30); }
.footer-credit a { color: var(--text-40); font-weight: 600; transition: color 0.2s ease; }
.footer-credit a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }
  .footer-legal { justify-self: start; }
  .footer-bottom p#footerYear { justify-self: center; text-align: center; }
  .footer-credit { justify-self: end; text-align: right; }
}

/* ═══════════════════════════ LEGAL PAGES ═══════════════════════════════════ */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 3rem;
  background: var(--bg-primary);
}
.legal-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 0%, rgba(212,78,0,0.06), transparent 60%);
}
.legal-breadcrumb {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 1.5rem;
  color: var(--text-30);
}
.legal-breadcrumb a { color: var(--text-40); transition: color 0.2s ease; }
.legal-breadcrumb a:hover { color: var(--gold); }
.legal-eyebrow {
  position: relative; z-index: 1;
  display: block; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1rem; color: var(--gold);
}
.legal-title {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 300; line-height: 1.15;
  font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--text-primary);
}
.legal-subtitle {
  position: relative; z-index: 1;
  font-size: 0.95rem; line-height: 1.7; max-width: 42rem; color: var(--text-50);
}

.legal-notice {
  margin: 0 auto 3rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
}
.legal-notice p { font-size: 0.85rem; line-height: 1.7; color: var(--text-50); }
.legal-notice strong { color: var(--text-primary); }

.legal-summary { margin: 0 auto 3.5rem; padding: 1.75rem 2rem; }
.legal-summary h2 {
  font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1rem; color: var(--gold);
}
.legal-summary ul { display: flex; flex-direction: column; gap: 0.6rem; }
.legal-summary li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.875rem; line-height: 1.7; color: var(--text-60); }
.legal-summary li .dot-sm { margin-top: 0.55rem; }

.legal-content { padding: 0 0 6rem; }
.legal-block { padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--section-line); }
.legal-block:last-of-type { border-bottom: none; margin-bottom: 0; }

.legal-block h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  margin-bottom: 1rem; color: var(--text-primary);
  display: flex; align-items: baseline; gap: 0.6rem;
}
.legal-block h2 .legal-num { color: var(--gold); font-weight: 700; }
.legal-block h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  margin: 1.5rem 0 0.6rem; color: var(--text-primary);
}
.legal-block p { font-size: 0.9rem; line-height: 1.8; color: var(--text-50); margin-bottom: 1rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul, .legal-block ol { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.legal-block ul { padding-left: 0; }
.legal-block ul li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; line-height: 1.75; color: var(--text-50); }
.legal-block ul li .dot-sm { margin-top: 0.6rem; }
.legal-block ol { padding-left: 1.25rem; }
.legal-block ol li { font-size: 0.9rem; line-height: 1.75; color: var(--text-50); padding-left: 0.4rem; }
.legal-block a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-block strong { color: var(--text-primary); font-weight: 600; }

.legal-contact-box { padding: 1.5rem 1.75rem; margin-top: 0.5rem; }
.legal-contact-box p { margin-bottom: 0.4rem; font-size: 0.875rem; color: var(--text-60); }
.legal-contact-box p:last-child { margin-bottom: 0; }
.legal-contact-box strong { color: var(--text-primary); }

.legal-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; border-radius: 0.5rem; border: 1px solid var(--card-border); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 32rem; }
.legal-table th {
  text-align: left; padding: 0.9rem 1.1rem; font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.7rem;
  background: rgba(212,78,0,0.06); color: var(--gold); border-bottom: 1px solid var(--card-border);
}
.legal-table td {
  padding: 1rem 1.1rem; vertical-align: top; line-height: 1.7; color: var(--text-50);
  border-bottom: 1px solid var(--card-border);
}
.legal-table tr:last-child td { border-bottom: none; }

.legal-meta { margin-top: 3rem; text-align: center; }
.legal-meta p { font-size: 0.8rem; color: var(--text-30); }

.legal-back { text-align: center; margin-top: 3rem; }
.legal-back a {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}

/* ═══════════════════════════ WHATSAPP FLOAT ════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background-color: rgb(37, 211, 102);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease, bottom 0.35s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.whatsapp-ping {
  position: absolute; inset: 0; border-radius: 999px;
  background-color: rgba(37, 211, 102, 0.45);
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.whatsapp-icon { position: relative; width: 1.75rem; height: 1.75rem; }

/* ═══════════════════════════ LGPD / COOKIE BANNER ═══════════════════════════ */
/* Mobile: compact floating card, bottom-left — opposite corner from the WhatsApp button. */
.cookie-banner {
  position: fixed; z-index: 60;
  left: 1rem; bottom: 1rem;
  width: min(19rem, calc(100vw - 8rem));
  border-radius: 0.85rem;
  background: var(--footer-bg);
  border: 1px solid var(--footer-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  padding: 1.25rem;
  transform: translateY(calc(100% + 2rem));
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; text-align: left;
}
.cookie-banner-text {
  flex: none; min-width: 0;
  font-size: 0.78rem; line-height: 1.55; color: var(--text-60);
  overflow-wrap: break-word;
}
.cookie-banner-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; width: 100%; flex-shrink: 0; }
.cookie-banner-accept { width: 100%; justify-content: center; font-size: 0.75rem; padding: 0.65rem 1.25rem; white-space: nowrap; }

/* Desktop/tablet: full-width bar along the bottom. */
@media (min-width: 768px) {
  .cookie-banner {
    left: 0; right: 0; bottom: 0; width: auto;
    border-radius: 0; border: none; border-top: 1px solid var(--footer-border);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
    padding: 1.25rem 1.5rem;
    transform: translateY(100%);
  }
  .cookie-banner-inner {
    max-width: 80rem; margin: 0 auto;
    flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; text-align: left;
  }
  .cookie-banner-text { flex: 1 1 20rem; max-width: 46rem; font-size: 0.8rem; line-height: 1.6; }
  .cookie-banner-actions { width: auto; }
  .cookie-banner-accept { width: auto; }
  body.cookie-banner-open .whatsapp-float { bottom: 6rem; }
}

/* ═══════════════════════════ REDUCED MOTION ════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
