/* ============================================================
   OPITEFY TECHNOLOGY — STYLE.CSS v4 (Purple + Pink)
   Palette: Deep Purple + Pink + Violet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #07050f;
  --bg2:      #0c0818;
  --bg3:      #120d24;
  --surface:  rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.13);
  --text:     #eef0f8;
  --text2:    #8f8fa0;
  --text3:    #4a3d6e;

  /* Brand colors — Purple primary, Violet secondary */
  --accent:   #9B30D9;
  --accent2:  #C060F0;
  --acmint:   #00F5C4;
  --teal:     #8B5CF6;
  --teal2:    #a78bfa;
  --gold:     #E8A838;
  --gold2:    #F5BB50;

  /* Glows */
  --aglow:    rgba(155, 48, 217, 0.35);
  --adim:     rgba(155, 48, 217, 0.15);
  --tglow:    rgba(139,92,246,0.20);
  --tdim:     rgba(139,92,246,0.08);
  --gglow:    rgba(232,168,56,0.18);
  --gdim:     rgba(232,168,56,0.08);

  --r:        14px;
  --nav-h:    70px;
  --fh:       'Outfit', sans-serif;
  --fb:       'DM Sans', sans-serif;
  --t:        0.22s ease;
}

[data-theme="light"] {
  --bg:       #F8F4FF;
  --bg2:      #F0E8FF;
  --bg3:      #E8D5FB;
  --surface:  rgba(124,58,237,0.04);
  --surface2: rgba(124,58,237,0.07);
  --border:   rgba(124,58,237,0.10);
  --border2:  rgba(124,58,237,0.18);
  --text:     #1e0a3c;
  --text2:    #5a3d8a;
  --text3:    #9a80c0;
  --accent:   #7B1FBF;
  --accent2:  #9B30D9;
  --acmint:   #00C9A7;
  --teal:     #6D28D9;
  --teal2:    #7C3AED;
  --gold:     #c98a1e;
  --gold2:    #e8a838;
  --aglow:    rgba(123, 31, 191, 0.25);
  --adim:     rgba(123, 31, 191, 0.10);
  --tglow:    rgba(109,40,217,0.14);
  --tdim:     rgba(109,40,217,0.06);
}

/* ── SCROLL OFFSET (fix navbar covering anchors) ─────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

/* ── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background var(--t), color var(--t);
}

/* subtle noise */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

section, footer, nav { position: relative; z-index: 1; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

/* ── ANIMATED ORBS BACKGROUND — premium distilled SaaS ──── */
.hero-orbs {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.65;
}
/* Glow roxo principal — canto superior esquerdo (atmosférico) */
.orb-1 {
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(155,48,217,0.18) 0%, transparent 70%);
  top: -360px; left: -280px;
  animation: orbFloat1 16s ease-in-out infinite;
}
/* Glow violeta — canto superior direito (família roxa) */
.orb-2 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(192,96,240,0.12) 0%, transparent 70%);
  top: -120px; right: -160px;
  animation: orbFloat2 20s ease-in-out infinite;
}
/* Glow mint inferior — sutil */
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,245,196,0.08) 0%, transparent 70%);
  bottom: 8%; left: 18%;
  animation: orbFloat3 22s ease-in-out infinite;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 0%, transparent 80%);
}
[data-theme="light"] .orb-1 { background: radial-gradient(circle, rgba(124,58,237,0.16) 0%, transparent 70%); opacity: 0.6; }
[data-theme="light"] .orb-2 { background: radial-gradient(circle, rgba(139,92,246,0.13) 0%, transparent 70%); opacity: 0.55; }
[data-theme="light"] .orb-3 { background: radial-gradient(circle, rgba(109,40,217,0.12) 0%, transparent 70%); opacity: 0.5; }
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, 40px) scale(1.1); }
  66%       { transform: translate(-40px, 60px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, -60px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -30px) scale(1.08); }
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(6,8,15,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: transform 0.38s ease, background 0.25s ease, border-color 0.25s ease;
  overflow: visible;
}
.nav.scrolled {
  transform: translateY(-100%);
}
[data-theme="light"] .nav { background: rgba(244,245,249,0.88); }

.nav.scrolled { background: rgba(6,8,15,0.97); }
[data-theme="light"] .nav.scrolled { background: rgba(244,245,249,0.98); }

.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  width: 100%; display: flex; align-items: center; gap: 32px;
  overflow: visible;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo { height: 190px; width: auto; object-fit: contain; max-width: 640px; }
.logo-dark  { display: block !important; }
.logo-light { display: none  !important; }
[data-theme="light"] .logo-dark  { display: none  !important; }
[data-theme="light"] .logo-light { display: block !important; }

.nav-menu {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin-left: 4px;
}
.nav-menu a {
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-menu a:hover { color: var(--text); background: var(--surface); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* Lang cycle */
.lang-cycle {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 9px; padding: 5px 10px 5px 6px;
  cursor: pointer; transition: all var(--t); color: var(--text2);
}
.lang-cycle:hover { border-color: var(--border2); background: var(--surface2); color: var(--text); }
.lang-cycle .flag-img { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; }
.lang-cycle #langCode { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t); flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--border2); color: var(--text); }
.theme-toggle .sun  { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="light"] .theme-toggle .sun  { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

/* Contact btn */
.nav-contact-btn {
  background: var(--accent); color: #fff; border: none;
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 9px; cursor: pointer;
  white-space: nowrap; letter-spacing: 0.01em;
  box-shadow: 0 0 24px var(--aglow);
  transition: all var(--t);
}
.nav-contact-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(192, 96, 240, 0.45);
}

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}

/* ── CONTACT MODAL ──────────────────────────────────────── */
.contact-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.78); backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.contact-modal-overlay.open { opacity: 1; visibility: visible; }
.contact-modal {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 20px; padding: 44px 48px;
  max-width: 480px; width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 60px var(--adim);
  transform: translateY(16px) scale(0.97);
  transition: transform .28s ease;
  margin: auto;
}
.contact-modal-overlay.open .contact-modal { transform: none; }
.modal-close {
  position: sticky !important;
  top: 0;
  z-index: 10;
  float: right;
  margin-bottom: 8px;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); width: 30px; height: 30px; border-radius: 7px;
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.modal-close:hover { color: var(--text); border-color: var(--border2); }
.modal-title { font-family: var(--fh); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.modal-sub { font-size: 13px; color: var(--text2); margin-bottom: 26px; }
.modal-form { display: flex; flex-direction: column; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--text2); }
.form-input, .form-textarea, select.form-input {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: var(--fb); font-size: 14px;
  padding: 11px 13px; border-radius: 9px; outline: none; resize: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-input:focus, .form-textarea:focus, select.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--adim);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }
.form-textarea { height: 96px; }
.form-submit {
  background: var(--accent); color: #fff; border: none;
  font-family: var(--fb); font-size: 14px; font-weight: 600;
  padding: 13px; border-radius: 9px; cursor: pointer; margin-top: 3px;
  box-shadow: 0 0 20px var(--aglow); transition: all var(--t);
}
.form-submit:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 0 28px var(--aglow);
}
.form-success {
  display: none; color: var(--teal); font-size: 14px;
  margin-top: 12px; text-align: center;
}
.modal-trust {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center; font-size: 12px; color: var(--text3);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  position: relative; overflow: hidden;
}
.hero .container { width: 100%; }
.hero-content {
  max-width: 820px;
  animation: heroIn .85s ease both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* Eyebrow (substitui o hero-badge) */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--adim); border: 1px solid rgba(124,58,237,0.22);
  color: var(--text2); font-size: 12px; font-weight: 600;
  padding: 7px 16px; border-radius: 50px; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 32px;
  animation: heroIn .85s ease .05s both;
  box-shadow: 0 0 18px var(--adim);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px var(--aglow);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* hero-badge legado — ocultar se existir */
.hero-badge { display: none; }

.hero-title {
  font-family: var(--fh);
  font-size: clamp(52px, 8.5vw, 104px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 28px;
  animation: heroIn .85s ease .1s both;
}
.hero-title .line-accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--acmint);
  color: var(--acmint);
  filter: drop-shadow(0 0 32px rgba(0, 245, 196, 0.25));
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--text2);
  line-height: 1.7; max-width: 580px; font-weight: 300;
  margin-bottom: 44px;
  animation: heroIn .85s ease .18s both;
}
.hero-description strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
  animation: heroIn .85s ease .26s both;
}

/* Hero trust bar */
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: heroIn .85s ease .34s both;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text2); font-weight: 500;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fb); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 10px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--t); letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 28px var(--aglow);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 4px 36px var(--aglow);
}
.btn-secondary {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--adim);
}
.btn-ghost {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border);
  font-size: 14px; padding: 11px 20px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border2); background: var(--surface); }
.btn-large { font-size: 16px; padding: 16px 32px; border-radius: 12px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text3); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
  animation: heroIn .85s ease .5s both;
}
.scroll-bar {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2); overflow: hidden; padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text3); white-space: nowrap;
}
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.marquee-item .dot-teal { background: var(--teal); }
.marquee-item .dot-gold { background: var(--gold); }

/* ── SECTION SHARED ─────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--text); margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px; color: var(--text2); line-height: 1.65;
  max-width: 520px; font-weight: 300;
}
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::before { display: none; }
.section-subtitle-center {
  font-size: 17px; color: var(--text2); line-height: 1.65;
  max-width: 580px; font-weight: 300; margin: 0 auto;
}

/* ── PRODUCTS ───────────────────────────────────────────── */
.section-products { padding: 120px 0 100px; }

/* Featured product */
.product-featured {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 24px; overflow: hidden; position: relative;
  margin-bottom: 60px;
}
.product-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.product-featured-badge {
  position: absolute; top: 24px; right: 24px; z-index: 2;
}
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(11,164,154,0.14); border: 1px solid rgba(11,164,154,0.3);
  color: var(--teal); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px; letter-spacing: 0.06em;
}

.product-featured-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center; min-width: 0;
}
.product-featured-text { padding: 56px 60px; min-width: 0; overflow: hidden; }

/* Header limpo do Opitedent — sem ícone */
.product-header {
  margin-bottom: 24px;
  text-align: left;
}

/* Legado — ocultar se ainda existir */
.product-logo-area {
  display: flex; align-items: center; gap: 18px; margin-bottom: 24px;
}
.product-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-icon-blue { background: var(--adim); border: 1px solid rgba(45,125,210,0.2); color: var(--accent); }
.product-icon-teal { background: rgba(0,245,196,0.08); border: 1px solid rgba(0,245,196,0.2); color: var(--acmint); }
.product-icon-gold { background: var(--gdim); border: 1px solid rgba(232,168,56,0.2); color: var(--gold); }
.product-icon-purple { background: rgba(120,80,220,0.08); border: 1px solid rgba(120,80,220,0.2); color: #9B6DEF; }

.product-name {
  font-family: var(--fh); font-size: 38px; font-weight: 900; color: var(--text);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px;
}
.product-category {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.product-desc {
  font-size: 15px; color: var(--text2); line-height: 1.7;
  margin-bottom: 28px; font-weight: 300;
}
.product-features-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px;
}
.pf-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text2); font-weight: 400;
}
.pf-item svg { color: var(--teal); flex-shrink: 0; }
.product-cta { display: flex; align-items: center; gap: 12px; }

/* Dashboard mockup */
.product-featured-visual {
  padding: 40px 40px 0;
  display: flex; align-items: flex-end; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, rgba(255,78,170,0.05) 100%);
  border-left: 1px solid var(--border);
  min-height: 440px;
}
.dashboard-mockup {
  width: 100%; max-width: 400px;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 12px 12px 0 0; overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.3);
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; }
.mockup-dot.y { background: #ffbd2e; }
.mockup-dot.g { background: #28c840; }
.mockup-url {
  margin-left: 8px; font-size: 11px; color: var(--text3);
  font-family: var(--fb);
}
.mockup-body { display: flex; height: 320px; }
.mockup-sidebar {
  width: 130px; border-right: 1px solid var(--border);
  padding: 12px 8px; display: flex; flex-direction: column; gap: 2px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px;
  font-size: 11px; color: var(--text3); cursor: pointer;
  transition: all var(--t);
}
.sidebar-item:hover, .sidebar-item.active {
  background: var(--adim); color: var(--accent);
}
.mockup-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mockup-stats {
  display: flex; flex-direction: column; gap: 6px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.stat-label { font-size: 10px; color: var(--text3); }
.stat-value { font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--text); }
.stat-value.accent { color: var(--accent); }
.stat-value.teal { color: var(--acmint); }
.mockup-chart {
  flex: 1; display: flex; align-items: flex-end; gap: 5px;
  padding: 10px 0 0;
}
.chart-bar {
  flex: 1; background: var(--surface2); border-radius: 4px 4px 0 0;
  transition: all .3s;
}
.chart-bar.active { background: linear-gradient(to top, var(--accent), var(--teal)); }
.chart-bar:hover { opacity: 0.8; }

/* Coming soon products */
.products-coming { }
.coming-label {
  font-size: 11px; font-weight: 700; color: var(--text2);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.coming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.coming-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  transition: all .3s ease;
}
.coming-card:hover {
  border-color: var(--border2); background: var(--surface2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2), 0 0 28px var(--adim);
}
.coming-card h4 {
  font-family: var(--fh); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.coming-card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 12px; }
.coming-tag {
  display: inline-block;
  background: var(--adim); border: 1px solid var(--acmint);
  color: var(--acmint); font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 50px; letter-spacing: 0.06em;
}

/* ── PLATFORM ───────────────────────────────────────────── */
.section-platform { padding: 120px 0; background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg2) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 68px;
}
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.platform-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 34px 28px;
  transition: all .32s ease; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
}
.platform-card.visible { opacity: 1; transform: none; }
.platform-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--teal), transparent);
  opacity: 0; transition: opacity .3s;
}
.platform-card:hover {
  border-color: var(--border2); background: var(--surface2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28), 0 0 48px var(--aglow);
  transform: translateY(-5px);
}
.platform-card:hover::before { opacity: 1; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--adim); border: 1px solid rgba(45,125,210,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 20px; transition: all .3s;
}
.card-icon-teal { background: rgba(0,245,196,0.08); border-color: rgba(0,245,196,0.16); color: var(--acmint); }
.card-icon-gold { background: var(--gdim); border-color: rgba(232,168,56,0.16); color: var(--gold); }
.platform-card:hover .card-icon { box-shadow: 0 0 18px var(--aglow); }
.platform-card h3 { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.platform-card p { font-size: 14px; color: var(--text2); line-height: 1.65; font-weight: 300; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.section-testimonials { padding: 120px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-bottom: 52px;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  transition: all .3s; position: relative;
}
.testimonial-card:hover {
  border-color: var(--border2); background: var(--surface2);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.2), 0 0 32px var(--adim);
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-text {
  font-size: 14px; color: var(--text2); line-height: 1.72;
  font-style: italic; margin-bottom: 24px; font-weight: 300;
}
.testimonial-text::before { content: '"'; color: var(--accent); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 4px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--text3); }

.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px;
}
.rating-score { font-family: var(--fh); font-size: 42px; font-weight: 900; color: var(--text); }
.rating-stars { font-size: 22px; color: var(--gold); letter-spacing: 3px; }
.rating-count { font-size: 13px; color: var(--text2); }

/* ── EARLY ADOPTERS ─────────────────────────────────────── */
.early-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--adim); border: 1px solid rgba(124,58,237,0.22);
  color: var(--accent); font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.early-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 6px var(--aglow);
}
.early-cta {
  text-align: center; margin-top: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.early-cta-text { font-size: 15px; color: var(--text2); font-weight: 300; }

/* ── SECURITY / TRUST ───────────────────────────────────── */
.section-trust {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.trust-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px; text-align: center;
  transition: all .3s;
}
.trust-card:hover { border-color: var(--border2); transform: translateY(-4px); background: var(--surface2); box-shadow: 0 16px 40px rgba(0,0,0,0.18), 0 0 24px var(--adim); }
.trust-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--adim); border: 1px solid rgba(45,125,210,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin: 0 auto 14px;
}
.trust-icon-teal { background: rgba(0,245,196,0.08); border-color: rgba(0,245,196,0.16); color: var(--acmint); }
.trust-icon-gold { background: var(--gdim); border-color: rgba(232,168,56,0.16); color: var(--gold); }
.trust-card h4 { font-family: var(--fh); font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.trust-card p { font-size: 11px; color: var(--text3); line-height: 1.55; }

/* ── COMPANY ────────────────────────────────────────────── */
.section-company { padding: 120px 0; }
.company-content { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.company-block { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.company-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.company-block h3 {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
.company-block p { font-size: 15px; color: var(--text2); line-height: 1.72; font-weight: 300; }
.company-block strong { color: var(--text); font-weight: 600; }

.company-values {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; position: relative;
}
.company-values::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: var(--surface2); }
.value-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: var(--adim); border: 1px solid rgba(45,125,210,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-top: 2px;
}
.value-icon-teal { background: rgba(0,245,196,0.08); border-color: rgba(0,245,196,0.14); color: var(--acmint); }
.value-icon-gold { background: var(--gdim); border-color: rgba(232,168,56,0.14); color: var(--gold); }
.value-item h4 { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--text2); line-height: 1.55; font-weight: 300; }

/* ── CONTACT ────────────────────────────────────────────── */
.section-contact { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.section-contact::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, rgba(255,78,170,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.contact-content { position: relative; z-index: 1; }
.contact-inner {
  display: inline-block; max-width: 700px; width: 100%;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 24px; padding: 72px 64px; position: relative; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 60px rgba(124,58,237,0.08), 0 0 60px rgba(255,78,170,0.05);
}
.contact-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.contact-inner .section-title { margin-bottom: 14px; }
.contact-subtitle { font-size: 17px; color: var(--text2); margin-bottom: 40px; font-weight: 300; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.contact-info { margin-bottom: 24px; }
.info-item { display: flex; flex-direction: column; gap: 4px; }
.info-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; }
.info-value { color: var(--text2); text-decoration: none; font-size: 14px; transition: color var(--t); }
.info-value:hover { color: var(--accent); }
.contact-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cbadge {
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--text2); font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 50px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding-top: 80px; position: relative; overflow: hidden; }
.footer-bg { position: absolute; bottom: 0; left: 0; right: 0; height: 220px; overflow: hidden; pointer-events: none; }
.footer-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.05; filter: saturate(0); }
[data-theme="light"] .footer-bg img { opacity: 0.03; }

/* Logo acima do grid */
.footer-logo-area {
  position: relative; z-index: 1;
  margin-bottom: 32px;
}
.footer-logo-area .footer-logo { height: 120px; width: auto; object-fit: contain; max-width: 480px; }
.footer-logo-area .logo-light { display: none  !important; }
.footer-logo-area .logo-dark  { display: block !important; }
[data-theme="light"] .footer-logo-area .logo-dark  { display: none  !important; }
[data-theme="light"] .footer-logo-area .logo-light { display: block !important; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px; position: relative; z-index: 1;
  align-items: start;
}

.footer-company { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--text2); line-height: 1.6; max-width: 240px; margin-bottom: 10px; }
.footer-email { font-size: 13px; color: var(--text2); text-decoration: none; transition: color var(--t); }
.footer-email:hover { color: var(--accent); }
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: var(--text);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text2); text-decoration: none; font-size: 14px; transition: color var(--t); }
.footer-col a:hover { color: var(--text); }
.soon-tag {
  display: inline-block; background: var(--adim);
  color: var(--accent); font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 50px; margin-left: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
  vertical-align: middle;
}
.footer-bottom {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 30px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text3);
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--text3); text-decoration: none; font-size: 13px; transition: color var(--t); }
.footer-socials a:hover { color: var(--accent); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .container, .nav-container { padding: 0 32px; }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .company-content { grid-template-columns: 1fr; gap: 56px; }
  .product-featured-content { grid-template-columns: 1fr; }
  .product-featured-visual { min-height: 280px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container, .nav-container { padding: 0 20px; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--bg2); flex-direction: column; align-items: flex-start;
    padding: 28px 20px; gap: 2px;
    transform: translateX(-100%); transition: transform .3s ease;
    border-top: 1px solid var(--border); list-style: none;
    z-index: 9998;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* Garante invisibilidade total quando fechado (fix Safari backdrop-filter bug) */
    visibility: hidden;
    pointer-events: none;
  }
  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu a { font-size: 20px; padding: 13px 16px; width: 100%; display: block; }
  .mobile-toggle { display: flex; z-index: 10001; position: relative; }
  .nav-contact-btn { display: none; }
  /* Lang cycle escondido no mobile — navbar fica limpa: tema + hambúrguer */
  .lang-cycle { display: none; }
  /* Nav actions sempre visível acima do overlay do menu */
  .nav-actions { position: relative; z-index: 10000; }

  /* Esconde theme toggle quando menu mobile está aberto */
  .nav-menu.active ~ .nav-actions .theme-toggle {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-title { font-size: clamp(36px, 11vw, 56px); }
  .hero-trust { gap: 14px; }

  .section-products, .section-platform, .section-testimonials,
  .section-company, .section-contact, .section-trust { padding: 80px 0; }

  .product-featured { overflow: hidden; width: 100%; box-sizing: border-box; }
  .product-featured-content { display: block; width: 100%; }
  .product-featured-text { padding: 32px 20px; box-sizing: border-box; width: 100%; max-width: 100%; overflow: hidden; }
  .product-featured-visual { display: none; }
  .product-desc, .pf-item { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
  .product-features-list { width: 100%; max-width: 100%; }
  .platform-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo-area .footer-logo { height: 80px; max-width: 300px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .contact-modal { padding: 34px 22px; }
  .rating-summary { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(30px, 12vw, 46px); }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .product-cta { flex-direction: column; align-items: center; }
}

/* ── MOBILE CENTERING (professional layout) ───────── */
@media (max-width: 968px) {
  .hero-content { text-align: center; align-items: center; }
  .hero-badge { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-scroll { display: none; }

  .section-header-center,
  .section-header { text-align: center; align-items: center; }
  .section-header > p { text-align: center; }

  .company-content { text-align: center; }
  .company-text { text-align: center; }
  .company-values { align-items: center; }
  .value-item { justify-content: center; text-align: center; }

  .contact-inner { text-align: center; align-items: center; }
  .contact-info { justify-content: center; }
  .contact-actions { justify-content: center; }
  .contact-badges { justify-content: center; }

  .footer-brand { align-items: flex-start; text-align: left; }
  .footer-bottom { align-items: flex-start; }

  .rating-summary { align-items: center; }

  .product-featured-content { flex-direction: column; }
  .product-logo-area { justify-content: center; }
  .product-features-list { align-items: flex-start; max-width: 100%; }
  .pf-item { max-width: 100%; min-width: 0; word-break: break-word; }
  .product-cta { justify-content: center; }
}

/* ── LOGO SIZING — NÃO incluir display aqui (é controlado pelas regras dark/light) ── */
.nav-logo { height: 190px !important; width: auto !important; object-fit: contain; max-width: 640px; }

/* ── LEGACY VARS — mantidas apenas para compatibilidade, não usar em código novo ── */

/* ── WHATSAPP FLOATING BUTTON ─────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ── FOOTER LEGAL BAR ─────────────────────────────── */
.footer-legal-bar {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
  margin-bottom: 16px;
}
.footer-legal-bar p {
  font-size: 11.5px;
  color: var(--text3);
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-lgpd-note { font-style: italic; }
.footer-legal-bar a { color: var(--teal2); text-decoration: none; }
.footer-legal-bar a:hover { text-decoration: underline; }

.footer-company-trade { font-size: 12px; color: var(--text2); margin-top: 2px; }
.footer-cnpj { font-size: 12px; color: var(--text2); margin-bottom: 6px; font-family: monospace; letter-spacing: .03em; }

/* ── CLOUDFLARE TURNSTILE ─────────────────────────── */
.cf-turnstile {
  margin: 12px auto;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cf-turnstile > iframe {
  margin: 0 auto;
}

/* ── SELECT DROPDOWN FIX ──────────────────────────── */
.form-input option,
select.form-input option {
  background: #0f1220;
  color: #eef0f8;
}
[data-theme="light"] .form-input option,
[data-theme="light"] select.form-input option {
  background: #eaecf4;
  color: #0c0e1a;
}
select.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a84a8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  color: var(--text);
}

/* ── MOBILE MODAL & TURNSTILE FIXES ──────────────── */
@media (max-width: 600px) {
  .contact-modal-overlay {
    padding: 12px;
    align-items: flex-start;
  }
  .contact-modal {
    padding: 28px 20px 24px;
    border-radius: 16px;
    margin: 0 auto;
    max-height: none;
  }
  .modal-close {
    position: absolute !important;
    top: 12px;
    right: 12px;
    float: none;
    margin-bottom: 0;
  }

  /* Turnstile — escalar e centralizar no mobile */
  .cf-turnstile {
    transform: scale(0.82);
    transform-origin: center center;
    margin: 4px auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
  }

  /* Nav logo mobile — menor mas ainda bem visível */
  .nav-logo { height: 120px !important; max-width: 440px; }
  .nav-container { padding: 0 16px; }
}

/* Links ofuscados — comportamento visual idêntico a <a href> */
#emailContact,
#emailFooter {
  cursor: pointer;
  text-decoration: underline;
}
#emailContact:hover,
#emailFooter:hover {
  opacity: 0.8;
}

.footer-social-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-social-btn:hover { opacity: 1; }

.form-error {
  color: #f87171;
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}
