/* ══════════════════════════════════════════════════
   style.css – UniFone
   Organização:
   1. Reset & Variáveis
   2. Base
   3. Navbar
   4. Hero
   5. Seções (base)
   6. Serviços
   7. Vantagens
   8. Planos
   9. Contato
   10. Footer
   11. Utilitários & Animações
   12. Responsivo
══════════════════════════════════════════════════ */


/* ─────────────────────────────────────
   1. RESET & VARIÁVEIS
───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --azul-escuro:   #0D1B5E;
  --azul-medio:    #0052CC;
  --azul-eletrico: #0078FF;
  --ciano:         #00C8FF;
  --branco:        #ffffff;
  --cinza-claro:   #F4F7FB;
  --cinza-texto:   #4A5568;
  --cinza-borda:   #E2E8F0;
  --verde-ok:      #22c55e;
  --transition:    0.2s ease;
}

html {
  scroll-behavior: smooth;
}


/* ─────────────────────────────────────
   2. BASE
───────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  color: #1a202c;
  background: var(--branco);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Botões globais */
.btn-primary {
  background: linear-gradient(135deg, var(--azul-eletrico), var(--ciano));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 120, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--ciano);
  background: rgba(0, 200, 255, 0.08);
}


/* ─────────────────────────────────────
   3. NAVBAR
───────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 94, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.15);
  transition: background var(--transition);
}

#navbar.scrolled {
  background: rgba(13, 27, 94, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--azul-eletrico), var(--ciano));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
}

.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  letter-spacing: 1px;
}
.nav-logo-text span { color: var(--ciano); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ciano);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* .btn-nav removido — botão flutuante substitui */

.nav-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}


/* ─────────────────────────────────────
   4. HERO
───────────────────────────────────── */
/* ══ HERO – layout principal ══ */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #030B2E 0%, #0D1B5E 40%, #0A3278 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 100px 3% 60px;
  gap: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,120,255,0.2) 0%, transparent 70%);
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Coluna 1: texto */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 42%;
  max-width: 42%;
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,255,0.12);
  border: 1px solid rgba(0,200,255,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ciano);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ciano);
  animation: blink 1.5s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 .destaque {
  background: linear-gradient(90deg, var(--azul-eletrico), var(--ciano));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .hero-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-item { color: white; }

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--ciano);
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Coluna 2: diagrama central */
.hero-center-visual {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.hcv-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.hcv-slide.hcv-fade-out { opacity: 0; }

.hcv-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  opacity: 0.92;
  display: block;
}

.hcv-svg-wide {
  width: 100% !important;
  max-width: 540px !important;
  height: auto !important;
  display: block !important;
}

.hcv-ring-1 {
  animation: hcvRing 3s ease-in-out infinite;
}
.hcv-ring-pulse {
  animation: hcvPulse 2.5s ease-out infinite;
}

/* Coluna 3: dashboard */
.hero-visual,
.hero-dashboard {
  position: relative !important;
  z-index: 2;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  flex: 0 0 240px !important;
  width: 240px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  grid-template-columns: unset !important;
}

.hc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.3), rgba(0, 200, 255, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
}

.hc-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}


/* ─────────────────────────────────────
   5. SEÇÕES – BASE
───────────────────────────────────── */
section {
  padding: 90px 5%;
}

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

.section-bg-light  { background: var(--cinza-claro); }
.section-bg-white  { background: var(--branco); }
.section-bg-dark   { background: var(--azul-escuro); }

.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 120, 255, 0.1);
  color: var(--azul-eletrico);
  border: 1px solid rgba(0, 120, 255, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tag-dark {
  background: rgba(0, 200, 255, 0.15);
  color: var(--ciano);
  border-color: rgba(0, 200, 255, 0.3);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1.2;
  margin-bottom: 14px;
}

.title-white { color: white; }

.section-sub {
  font-size: 16px;
  color: var(--cinza-texto);
  line-height: 1.7;
  max-width: 560px;
}

.sub-white { color: rgba(255, 255, 255, 0.6); }


/* ─────────────────────────────────────
   6. SERVIÇOS
───────────────────────────────────── */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.servico-card {
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-eletrico), var(--ciano));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 120, 255, 0.12);
  border-color: rgba(0, 120, 255, 0.2);
}
.servico-card:hover::after {
  transform: scaleX(1);
}

.sc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EBF4FF, #D6EAFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.sc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 8px;
}

.sc-desc {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.6;
}


/* ─────────────────────────────────────
   7. VANTAGENS
───────────────────────────────────── */
.vantagens-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vantagens-visual {
  position: relative;
}

.vv-bg {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #EBF4FF 0%, #D0E8FF 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vv-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 120, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 120, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.vv-central {
  position: relative;
  z-index: 1;
  width: 120px; height: 120px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--azul-eletrico), var(--ciano));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow: 0 20px 60px rgba(0, 120, 255, 0.3);
  animation: floatCard 4s ease-in-out infinite;
}

.vv-pill {
  position: absolute;
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azul-escuro);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.vv-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--verde-ok);
}

.pill-1 { top: 15%; left: -30px; animation: floatCard 3.5s ease-in-out infinite; }
.pill-2 { bottom: 20%; right: -30px; animation: floatCard 4.2s ease-in-out infinite 1s; }

.vantagens-lista {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.vantagem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vi-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #EBF4FF, #D6EAFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.vi-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 4px;
}

.vi-desc {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.6;
}


/* ─────────────────────────────────────
   8. PLANOS
───────────────────────────────────── */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1280px) {
  .planos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .planos-grid { grid-template-columns: 1fr; }
}

.plano-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: transform 0.25s, background 0.25s;
}
.plano-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.plano-card.destaque {
  background: linear-gradient(135deg, var(--azul-medio), var(--azul-eletrico));
  border-color: rgba(0, 200, 255, 0.4);
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ciano);
  color: var(--azul-escuro);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plano-nome {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.plano-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.plano-preco {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--ciano);
  line-height: 1;
}
.plano-preco sup {
  font-size: 20px;
  vertical-align: super;
}
.plano-preco span {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.plano-preco--consult {
  font-size: 28px;
  padding-top: 8px;
}

.plano-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 22px 0;
}

.plano-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plano-lista li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plano-lista li::before {
  content: '✓';
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.2);
  color: var(--ciano);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.btn-plano {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 10px;
  padding: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-plano:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ciano);
}
.plano-card.destaque .btn-plano {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.plano-card.destaque .btn-plano:hover {
  background: white;
  color: var(--azul-escuro);
}


/* ─────────────────────────────────────
   9. CONTATO
───────────────────────────────────── */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

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

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--azul-eletrico), var(--ciano));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.ci-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--azul-eletrico);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.ci-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--azul-escuro);
}

.ci-obs {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--cinza-texto);
  margin-top: 2px;
}

/* Formulário */
.form-card {
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-titulo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 6px;
}

.campo-obrigatorio {
  color: #e53e3e;
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cinza-borda);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--azul-escuro);
  background: white;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul-eletrico);
  box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-feedback {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form-feedback.sucesso {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-feedback.erro {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--azul-eletrico), var(--ciano));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 120, 255, 0.35);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


/* ─────────────────────────────────────
   10. FOOTER
───────────────────────────────────── */
footer {
  background: #030B2E;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 5% 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--ciano);
}

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

.footer-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
}
.footer-logo-text span { color: var(--ciano); }


/* ─────────────────────────────────────
   11. UTILITÁRIOS & ANIMAÇÕES
───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { transform: translateY(-50%) scale(1);    opacity: 0.7; }
  50%       { transform: translateY(-50%) scale(1.08); opacity: 1; }
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ─────────────────────────────────────
   12. RESPONSIVO
───────────────────────────────────── */

/* Tablet */
@media (max-width: 1280px) {
  .hero-center-visual { display: none; }
}

@media (max-width: 1024px) {
  .hero { padding: 100px 4% 60px; }
  .hero-visual { display: none; }
  .hero-dashboard { display: none !important; }
  .vantagens-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  #navbar { padding: 0 4%; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13, 27, 94, 0.98);
    flex-direction: column;
    padding: 20px 5%;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 200, 255, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-menu-toggle { display: block; }

  .hero { padding: 100px 4% 60px; }
  .hero-stats { gap: 24px; }

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

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pill-1, .pill-2 { display: none; }
}

@media (max-width: 480px) {
  section { padding: 70px 4%; }
  .form-card { padding: 24px 18px; }
}


/* ─────────────────────────────────────
   FOOTER – contatos e versão
───────────────────────────────────── */
.footer-contatos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contato-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contato-item:hover {
  color: var(--ciano);
}

.footer-whatsapp {
  color: #4ade80;
}
.footer-whatsapp:hover {
  color: #86efac;
}

.footer-version {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.3px;
}
.footer-version strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-version {
    order: 3;
    width: 100%;
  }
}


/* ══════════════════════════════════════════════════
   BOTÃO FLUTUANTE – QUERO UMA DEMONSTRAÇÃO
══════════════════════════════════════════════════ */

.btn-demo-flutuante {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 0;
  background: none;
  outline: none;
}

/* Anel de pulso externo */
.btn-demo-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  background: rgba(0, 200, 255, 0.35);
  animation: demoPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes demoPulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Corpo do botão */
.btn-demo-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0052CC, #0078FF, #00C8FF);
  background-size: 200% 200%;
  animation: demoGradient 3s ease infinite;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow:
    0 6px 24px rgba(0, 120, 255, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

@keyframes demoGradient {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.btn-demo-flutuante:hover .btn-demo-inner {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 12px 32px rgba(0, 120, 255, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-demo-flutuante:active .btn-demo-inner {
  transform: scale(0.97);
}

/* Esconde em telas pequenas para não cobrir o conteúdo — só ícone */
@media (max-width: 540px) {
  .btn-demo-inner span:not(svg) {
    display: none;
  }
  .btn-demo-inner {
    padding: 16px;
    border-radius: 50%;
  }
  .btn-demo-flutuante {
    bottom: 20px;
    right: 20px;
  }
}


/* ══════════════════════════════════════════════════
   MODAL – FORMULÁRIO DE DEMONSTRAÇÃO
══════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(3, 11, 46, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay.modal-visivel {
  opacity: 1;
}
/* hidden nativo — controlado via JS */
.modal-overlay[hidden] {
  display: none !important;
}
.modal-overlay.modal-abrindo {
  display: flex !important;
}

.modal-box {
  background: white;
  border-radius: 22px;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 38px 32px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}
.modal-overlay.modal-visivel .modal-box {
  transform: translateY(0) scale(1);
}

/* Scrollbar discreta */
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--cinza-borda); border-radius: 4px; }

.modal-fechar {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--cinza-claro);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 16px;
  color: var(--cinza-texto);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-fechar:hover {
  background: #FFE4E4;
  color: #c53030;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icone {
  font-size: 40px;
  margin-bottom: 10px;
  animation: floatCard 3s ease-in-out infinite;
}

.modal-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.5;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-demo-submit {
  width: 100%;
  background: linear-gradient(135deg, #0052CC, #0078FF, #00C8FF);
  background-size: 200% 200%;
  animation: demoGradient 3s ease infinite;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 6px;
  box-shadow: 0 6px 20px rgba(0, 120, 255, 0.4);
}
.btn-demo-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 120, 255, 0.55);
}
.btn-demo-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  animation: none;
  background: #0078FF;
}

.modal-aviso {
  text-align: center;
  font-size: 12px;
  color: var(--cinza-texto);
  margin-top: 12px;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 540px) {
  .modal-box { padding: 28px 18px 24px; }
  .modal-form-row { grid-template-columns: 1fr; }
  .modal-header h2 { font-size: 21px; }
}


/* ─────────────────────────────────────
   CONTATO – sem formulário (layout centralizado)
───────────────────────────────────── */
.contato-sem-form {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.contato-sem-form .contato-info {
  gap: 28px;
}

.contato-sem-form .ci-item {
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contato-sem-form .ci-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,120,255,0.1);
}


/* ─────────────────────────────────────
   ÍCONE SVG ANIMADO – Modal demonstração
───────────────────────────────────── */
.modal-icone {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.icone-telefone-svg {
  filter: drop-shadow(0 6px 18px rgba(0, 120, 255, 0.28));
  animation: iconFloat 3.2s ease-in-out infinite;
}

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

/* Ondas – aparecem em cascata */
.icone-telefone-svg .onda {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: ondaAppear 2.4s ease-out infinite;
}

.icone-telefone-svg .onda-1 { animation-delay: 0s;    }
.icone-telefone-svg .onda-2 { animation-delay: 0.35s; }
.icone-telefone-svg .onda-3 { animation-delay: 0.7s;  }

@keyframes ondaAppear {
  0%   { stroke-dashoffset: 60; opacity: 0;   }
  20%  { opacity: 1; }
  60%  { stroke-dashoffset: 0;  opacity: 1;   }
  85%  { stroke-dashoffset: 0;  opacity: 0;   }
  100% { stroke-dashoffset: 60; opacity: 0;   }
}


/* ══════════════════════════════════════════════════
   VANTAGENS – nova estrutura em grid
══════════════════════════════════════════════════ */

.vant-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.vant-header .section-sub {
  max-width: 100%;
}

/* Grade 3 × 2 */
.vant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}

/* Card individual */
.vant-card {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 18px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.vant-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-eletrico), var(--ciano));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.vant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 120, 255, 0.11);
  border-color: rgba(0, 120, 255, 0.18);
}
.vant-card:hover::before {
  transform: scaleX(1);
}

/* Ícone do card */
.vant-card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vc-blue {
  background: linear-gradient(135deg, #EBF4FF, #C7DEFF);
  color: var(--azul-eletrico);
}
.vc-ciano {
  background: linear-gradient(135deg, #E0F8FF, #B8EFFF);
  color: #0095CC;
}

/* Texto do card */
.vant-card-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 6px;
}
.vant-card-body p {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.65;
}

/* Stat numérico no rodapé do card */
.vant-card-stat {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--cinza-borda);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.vcs-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--azul-eletrico);
  line-height: 1;
}
.vcs-label {
  font-size: 12px;
  color: var(--cinza-texto);
  line-height: 1.3;
}

/* Barra de prova social */
.vant-prova {
  background: linear-gradient(135deg, var(--azul-escuro), #0A3278);
  border-radius: 18px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.vp-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.vp-item strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ciano);
  line-height: 1;
  margin-bottom: 4px;
}
.vp-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.vp-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
  .vant-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vant-grid { grid-template-columns: 1fr; }
  .vant-prova { padding: 24px 20px; }
  .vp-divider { display: none; }
  .vp-item { min-width: 45%; }
}


/* ─────────────────────────────────────
   MODAL – badge do plano selecionado
───────────────────────────────────── */
.modal-plano-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,120,255,0.1), rgba(0,200,255,0.1));
  border: 1px solid rgba(0,120,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azul-eletrico);
  margin-bottom: 12px;
}
.modal-plano-badge::before {
  content: '📋';
  font-size: 14px;
}


/* ══════════════════════════════════════════════════
   MODAL – PLANO SELECIONADO
══════════════════════════════════════════════════ */

.modal-plano-box {
  padding: 0;
  overflow: hidden;
}

/* Cabeçalho azul */
.mplano-header {
  background: linear-gradient(135deg, #0D1B5E, #0052CC);
  padding: 24px 28px 20px;
  text-align: center;
  position: relative;
}

.mplano-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.mplano-nome {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 2px;
}

.mplano-preco {
  font-size: 16px;
  font-weight: 600;
  color: var(--ciano);
  margin: 0 0 16px;
}

/* Pills dos itens */
.mplano-itens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.mplano-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  color: rgba(255,255,255,0.92);
}

.mplano-pill::before {
  content: '✓';
  font-size: 10px;
  color: var(--ciano);
  font-weight: 700;
}

/* Botão fechar branco (para fundo azul) */
.modal-fechar-branco {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
}
.modal-fechar-branco:hover {
  background: rgba(255,255,255,0.25) !important;
  color: white !important;
}

/* Área do formulário */
.mplano-form-wrap {
  padding: 24px 28px 22px;
}

@media (max-width: 540px) {
  .mplano-form-wrap { padding: 20px 16px 18px; }
  .mplano-header { padding: 20px 16px 16px; }
}


/* ══════════════════════════════════════════════════
   HERO – stats com ícone + dashboard tech
══════════════════════════════════════════════════ */

/* Stats redesenhados */
.stat-icon {
  color: var(--ciano);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

/* hero-dashboard — ver regras no bloco hero principal */

.hd-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  transition: background 0.25s;
}
.hd-card:hover {
  background: rgba(255,255,255,0.09);
}

.hd-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hd-card-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.hd-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #4ade80;
}

.hd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.5s ease-in-out infinite;
}

.hd-metric {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}

.hd-metric-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.hd-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}

.hd-bar {
  height: 100%;
  background: var(--azul-eletrico);
  border-radius: 2px;
  transition: width 1.5s ease;
}

.hd-bar-ciano {
  background: var(--ciano);
}

.hd-bar-labels {
  display: flex;
  justify-content: space-between;
}
.hd-bar-labels span {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

.hd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hd-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,120,255,0.2);
  color: #7EC8FF;
  border: 1px solid rgba(0,120,255,0.3);
}


/* hero-center-visual hcv-svg — ver regras no bloco hero principal */




/* hcv-slide hcv-svg-wide — ver regras no bloco hero principal */




/* ══════════════════════════════════════════════════
   MODAIS – DOCUMENTOS (Privacidade e Termos)
══════════════════════════════════════════════════ */
.modal-doc-box {
  max-width: 680px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mdoc-header {
  padding: 32px 36px 20px;
  border-bottom: 1px solid var(--cinza-borda);
  flex-shrink: 0;
}

.mdoc-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.mdoc-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 4px;
}

.mdoc-header p {
  font-size: 12px;
  color: var(--cinza-texto);
}

.mdoc-body {
  padding: 24px 36px;
  overflow-y: auto;
  flex: 1;
}

.mdoc-body::-webkit-scrollbar { width: 4px; }
.mdoc-body::-webkit-scrollbar-track { background: transparent; }
.mdoc-body::-webkit-scrollbar-thumb { background: var(--cinza-borda); border-radius: 4px; }

.mdoc-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin: 22px 0 8px;
}
.mdoc-body h3:first-child { margin-top: 0; }

.mdoc-body p {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: 10px;
}

.mdoc-body ul {
  margin: 8px 0 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mdoc-body ul li {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.6;
  list-style: disc;
}

.mdoc-body strong {
  color: var(--azul-escuro);
  font-weight: 600;
}

.mdoc-footer {
  padding: 16px 36px 24px;
  border-top: 1px solid var(--cinza-borda);
  flex-shrink: 0;
}

.mdoc-footer .btn-submit {
  max-width: 200px;
}

@media (max-width: 540px) {
  .mdoc-header { padding: 24px 18px 16px; }
  .mdoc-body   { padding: 18px 18px; }
  .mdoc-footer { padding: 14px 18px 20px; }
}


/* ══════════════════════════════════════════════════
   MODAL – CENTRAL DE AJUDA
══════════════════════════════════════════════════ */
.modal-ajuda-box {
  max-width: 720px;
}

/* Abas */
.ajuda-tabs {
  display: flex;
  gap: 4px;
  background: var(--cinza-claro);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.ajuda-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cinza-texto);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ajuda-tab.active {
  background: white;
  color: var(--azul-escuro);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ajuda-tab:hover:not(.active) {
  background: rgba(0,0,0,0.04);
}

.ajuda-panel { display: block; }
.ajuda-panel[hidden] { display: none !important; }

/* Grupos FAQ */
.faq-group {
  margin-bottom: 20px;
}

.faq-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--azul-eletrico);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cinza-borda);
}

/* Item FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--cinza-borda);
}
.faq-item:last-child { border-bottom: none; }

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--azul-escuro);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-pergunta:hover { color: var(--azul-eletrico); }
.faq-pergunta[aria-expanded="true"] { color: var(--azul-eletrico); }

.faq-icone {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cinza-claro);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--azul-eletrico);
  transition: transform 0.25s, background 0.2s;
}
.faq-pergunta[aria-expanded="true"] .faq-icone {
  transform: rotate(45deg);
  background: rgba(0,120,255,0.1);
}

.faq-resposta {
  padding: 0 0 14px;
}
.faq-resposta p {
  font-size: 14px;
  color: var(--cinza-texto);
  line-height: 1.7;
  margin: 0;
}


/* ─────────────────────────────────────
   NAVBAR – logo PNG real
───────────────────────────────────── */
.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
