/* ═══════════════════════════════════════════════════════════════
   SCARLET BOTS — MAIN STYLESHEET
   Cyberpunk/Neon aesthetic · Cyan on Deep Black
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --cyan:       #00FFFF;
  --cyan-mid:   rgba(0, 255, 255, 0.3);
  --cyan-dim:   rgba(0, 255, 255, 0.08);
  --cyan-glow:  0 0 20px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.2);
  --cyan-soft:  0 0 12px rgba(0, 255, 255, 0.35);
  --bg:         #080808;
  --bg2:        #0d0d0d;
  --bg3:        #111111;
  --bg4:        #161616;
  --card:       #0f0f0f;
  --border:     rgba(0, 255, 255, 0.15);
  --border-h:   rgba(0, 255, 255, 0.5);
  --text:       #f0f0f0;
  --muted:      #7a7a8a;
  --font-head:  'Orbitron', monospace;
  --font-body:  'Exo 2', sans-serif;
  --nav-h:      70px;
  --r:          12px;
  --r-lg:       20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--cyan-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ─── Background Grid ───────────────────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(0,255,255,0.06) 0%, transparent 60%);
}

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.98);
  border-bottom-color: var(--border-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-shadow: var(--cyan-soft);
  flex-shrink: 0;
}
.nav-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,255,255,0.7));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  box-shadow: var(--cyan-soft);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-discord {
  display: flex;
  align-items: center;
  gap: 12px; /* Aumentado para dar mais espaço entre ícone e texto */
  padding: 8px 18px 8px 25px; /* O '25px' no final empurra o ícone para a direita */
  
  border: 1px solid var(--border-h);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan) !important;
  background: var(--cyan-dim);
  transition: all var(--transition);
  margin-left: 0.5rem;
  text-decoration: none;
  position: relative;
}
/* Garante que o efeito de hover funcione perfeitamente */
.nav-discord:hover {
  background: rgba(0, 255, 255, 0.15) !important;
  box-shadow: var(--cyan-soft) !important;
  border-color: var(--cyan);
}
/* Força o SVG a não ficar colado */
.nav-discord svg {
  display: block;
  flex-shrink: 0;
}
.nav-discord::after { 
  display: none !important; 
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Mobile Nav ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 20px rgba(0,255,255,0.35);
}
.btn-primary:hover {
  background: #33ffff;
  box-shadow: 0 0 35px rgba(0,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-h);
}
.btn-outline:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  box-shadow: var(--cyan-soft);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ─── Section Layout ─────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--cyan);
  box-shadow: var(--cyan-soft);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.section-title span { color: var(--cyan); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 12px;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-sub { margin: 12px auto 0; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-h);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--cyan);
  background: var(--cyan-dim);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-title .cyan {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 20px 0 36px;
  max-width: 480px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 60px;
  animation: fadeUp 0.6s ease 0.4s both;
}
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--cyan-soft);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 1px;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 0.8s ease 0.3s both;
}
.hero-image img {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 0 40px rgba(0,255,255,0.3));
  animation: float 4s ease-in-out infinite;
}
.hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.6), transparent);
  animation: scan 4s linear infinite;
  pointer-events: none;
}

/* ─── Features ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,255,255,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Plans ──────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  opacity: 0;
  transition: opacity var(--transition);
}
.plan-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,255,255,0.12);
}
.plan-card:hover::before { opacity: 1; }
.plan-card.popular {
  border-color: var(--border-h);
  background: linear-gradient(160deg, #0f1a1a 0%, var(--card) 60%);
  box-shadow: 0 0 40px rgba(0,255,255,0.08);
}
.plan-card.popular::before { opacity: 1; }
.plan-card.popular::after {
  content: 'Mais Popular';
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  background: var(--cyan);
  color: #000;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--font-head);
}
.plan-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.plan-subtitle {
  font-size: 0.85rem;
  color: var(--cyan);
  margin-top: 2px;
  margin-bottom: 12px;
}
.plan-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 0.65rem;
}
.plan-price {
  margin-bottom: 1.5rem;
}
.plan-price-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: var(--cyan-soft);
}
.plan-price-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 4px;
}
.plan-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 1px solid var(--border-h);
  color: var(--cyan);
  background: var(--cyan-dim);
}
.plan-cta:hover {
  background: rgba(0,255,255,0.2);
  box-shadow: var(--cyan-soft);
  transform: translateY(-1px);
}
.plan-card.popular .plan-cta {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
}
.plan-card.popular .plan-cta:hover {
  background: #33ffff;
  box-shadow: 0 0 35px rgba(0,255,255,0.6);
}

/* ─── Devs ───────────────────────────────────────────────────── */
.devs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.dev-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.dev-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(160deg, rgba(0,255,255,0.06), transparent);
}
.dev-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,255,255,0.1);
}
.dev-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border-h);
  margin: 0 auto 1rem;
  object-fit: cover;
  background: var(--bg4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
}
.dev-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dev-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}
.dev-role {
  font-size: 0.82rem;
  color: var(--cyan);
  margin-top: 2px;
  margin-bottom: 12px;
}
.dev-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.dev-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.dev-skill {
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--cyan-dim);
}
.dev-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.dev-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  background: var(--bg3);
}
.dev-link:hover {
  color: var(--cyan);
  border-color: var(--border-h);
  box-shadow: var(--cyan-soft);
}

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 2rem 60px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero .section-label { justify-content: center; }

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
  margin: 0;
}

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 2rem;
  position: relative;
  z-index: 1;
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--card);
  border: 1px solid var(--border-h);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,255,0.08);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,255,0.06) 0%, transparent 50%);
}
.cta-box > * { position: relative; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-title span { color: var(--cyan); }
.cta-desc { color: var(--muted); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: var(--cyan-soft);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Loading / Spinner ──────────────────────────────────────── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  gap: 12px;
  color: var(--muted);
}
.spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ─── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 360px;
}
.toast-success {
  background: #0a1a0f;
  border: 1px solid #00ff6644;
  color: #00ff66;
}
.toast-error {
  background: #1a0a0a;
  border: 1px solid #ff003344;
  color: #ff4444;
}
.toast-info {
  background: #0a1215;
  border: 1px solid var(--border-h);
  color: var(--cyan);
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--cyan); }
  50%       { opacity: 0.5; box-shadow: 0 0 16px var(--cyan); }
}
@keyframes scan {
  0%   { top: 0; }
  100% { top: 100%; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px rgba(0,255,255,0.5); }
  50%       { text-shadow: 0 0 40px rgba(0,255,255,0.9), 0 0 80px rgba(0,255,255,0.3); }
}

.glow-text { animation: glow 3s ease infinite; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc { margin: 20px auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }
  .hero-image img { width: 280px; }
}
@media (max-width: 600px) {
  .section { padding: 60px 1.2rem; }
  .plans-grid, .devs-grid, .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .cta-box { padding: 2rem 1.5rem; }
}
