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

:root {
  --black-deep: #050505;
  --graphite: #111111;
  --graphite-light: #1A1A1A;
  --white-soft: #F2F2F2;
  --gray-text: #B8B8B8;
  --gold: #C6A86B;
  --gold-dim: rgba(198, 168, 107, 0.3);
  --gold-glow: rgba(198, 168, 107, 0.12);
  --blue-deep: #0F1C2E;
  --font-title: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black-deep);
  color: var(--white-soft);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
  user-select: none;
}

.hidden { display: none !important; }
.gold { color: var(--gold); }

/* ========================================
   START SCREEN
   ======================================== */
#start-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-deep);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#start-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

#start-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.start-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  width: 90%;
  padding: 40px;
  animation: startFadeIn 1.6s ease forwards;
}

@keyframes startFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.start-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.start-ornament.bottom {
  margin-bottom: 0;
  margin-top: 60px;
}
.orn-line {
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.orn-diamond {
  color: var(--gold);
  font-size: 12px;
  opacity: 0.6;
}

.start-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white-soft);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  white-space: nowrap;
}

.start-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--gray-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 60px;
  white-space: nowrap;
}

.btn-jornada {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 16px 56px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 4px;
}
.btn-jornada:hover {
  color: var(--black-deep);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(198, 168, 107, 0.4);
}

/* ========================================
   PRESENTATION CONTAINER
   ======================================== */
#presentation {
  position: fixed;
  inset: 0;
  background: #f8f9fa;
  z-index: 1;
  transition: background-color 0.3s ease;
}

#presentation.dark-theme {
  background: #0b0f19;
}

/* ========================================
   MIND MAP ENGINE VIEWPORT
   ======================================== */
#mindmap-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  background-color: #f8f9fa;
  background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  transition: background-color 0.3s, background-image 0.3s;
}

#mindmap-viewport:active {
  cursor: grabbing;
}

#mindmap-viewport.dark-theme {
  background-color: #0b0f19;
  background-image: radial-gradient(#242f41 1.5px, transparent 1.5px);
}

#mindmap-canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  will-change: transform;
  display: flex;
  align-items: center;
  padding: 250px 350px 250px 150px;
  min-width: max-content;
  min-height: max-content;
}

#mindmap-canvas.camera-transition {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#mm-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#mm-tree-root {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* ── Flexbox Tree System ── */
.mm-branch {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.mm-node-container {
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin-right: 56px; /* spacing for curve connectors */
  position: relative;
  z-index: 5;
}

.mm-node {
  position: relative;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.mm-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Light Theme Nodes */
.mm-node.mm-type-root {
  background-color: #ccd5ff;
  border-color: #a3b2ff;
  color: #1e1b4b;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
}

.mm-node.mm-type-parent {
  background-color: #d0e1fd;
  border-color: #a8c7fa;
  color: #185abc;
}

.mm-node.mm-type-leaf {
  background-color: #c2f0db;
  border-color: #8ce7b9;
  color: #0d653c;
}

/* Dark Theme Nodes */
.dark-theme .mm-node.mm-type-root {
  background-color: #1c1d3a;
  border-color: #4b5bc7;
  color: #e3e6ff;
  box-shadow: 0 0 20px rgba(75, 91, 199, 0.15);
}

.dark-theme .mm-node.mm-type-parent {
  background-color: #132742;
  border-color: #246bd6;
  color: #d2e3fc;
  box-shadow: 0 0 15px rgba(36, 107, 214, 0.1);
}

.dark-theme .mm-node.mm-type-leaf {
  background-color: #0c2b1c;
  border-color: #147a46;
  color: #c2eed5;
}

/* Expand / Collapse Button */
.mm-toggle {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  color: #1a73e8;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  z-index: 10;
  outline: none;
}

.mm-toggle:hover {
  background-color: #f1f3f4;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.14);
}

.dark-theme .mm-toggle {
  background-color: #1f2937;
  border-color: #4b5563;
  color: #60a5fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.dark-theme .mm-toggle:hover {
  background-color: #374151;
}

/* Children Container Stack */
.mm-children-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  transform: scale(1);
  transform-origin: left center;
}

.mm-children-container.collapsed {
  opacity: 0;
  transform: scale(0.9) translateX(-20px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  gap: 0;
}

/* ========================================
   FLOATING OVERLAYS & PANELS
   ======================================== */

/* ── Tour Panel ── */
.mm-tour-panel {
  position: absolute;
  bottom: 96px;
  left: 24px;
  z-index: 100;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mm-tour-panel.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dark-theme .mm-tour-panel {
  background: rgba(18, 24, 38, 0.82);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.tour-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 10px;
}

.dark-theme .tour-title {
  color: #f3f4f6;
}

.tour-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 400;
}

.dark-theme .tour-desc {
  color: #9ca3af;
}

/* ========================================
   TOUR PANEL ZOOM (double-click)
   When the panel is double-clicked it becomes centered and occupies 80% of the viewport.
   Double-click again to restore original position.
   ======================================== */
.mm-tour-panel.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform-origin: center center;
  /* scale is provided by JS via --mm-zoom-scale */
  transform: translate(-50%, -50%) scale(var(--mm-zoom-scale, 2)) !important;
  width: 400px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  z-index: 3000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 10px;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s;
}

@media (max-width: 768px) {
  .mm-tour-panel.zoomed {
    max-height: 86vh;
    padding: 20px;
  }
}

/* ── Zoom Controls ── */
.mm-zoom-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  color: #5f6368;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
  outline: none;
}

.zoom-btn:hover {
  background-color: #f1f3f4;
  color: #1a73e8;
  transform: scale(1.05);
}

.dark-theme .zoom-btn {
  background-color: #1f2937;
  border-color: #4b5563;
  color: #d1d5db;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.dark-theme .zoom-btn:hover {
  background-color: #374151;
  color: #60a5fa;
}

/* ========================================
   TOP BAR & HEADER
   ======================================== */
#top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.3s, border-color 0.3s;
}

.dark-theme #top-bar {
  background: rgba(11, 15, 25, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: #5f6368;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ctrl-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: #1a73e8;
}

.dark-theme .ctrl-btn {
  color: #9ca3af;
}

.dark-theme .ctrl-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #60a5fa;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Mode Selector Switch ── */
.mode-selector {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.dark-theme .mode-selector {
  background: rgba(255, 255, 255, 0.08);
}

.mode-btn {
  background: transparent;
  border: none;
  color: #5f6368;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 11.5px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}

.dark-theme .mode-btn {
  color: #9ca3af;
}

.mode-btn.active {
  background: #ffffff;
  color: #1a73e8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.dark-theme .mode-btn.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

/* ========================================
   BOTTOM NAVIGATION (Tour Mode)
   ======================================== */
#bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dark-theme #bottom-nav {
  background: rgba(18, 24, 38, 0.85);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-arrow {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #5f6368;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.dark-theme .nav-arrow {
  border-color: rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

.nav-arrow:hover {
  background-color: #f1f3f4;
  color: #1a73e8;
  border-color: #1a73e8;
}

.dark-theme .nav-arrow:hover {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.nav-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

#slide-counter {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #5f6368;
}

.dark-theme #slide-counter {
  color: #9ca3af;
}

.counter-sep { opacity: 0.4; margin: 0 4px; }

/* ========================================
   PROGRESS BAR (Tour Mode)
   ======================================== */
#progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.04);
  z-index: 1100;
}

.dark-theme #progress-bar {
  background: rgba(255, 255, 255, 0.04);
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: #1a73e8;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dark-theme #progress-fill {
  background: #2563eb;
}

/* ========================================
   RESPONSIVENESS
   ======================================== */
@media (max-width: 768px) {
  #top-bar {
    padding: 0 16px;
    height: 56px;
  }
  .mode-btn {
    padding: 6px 14px;
    font-size: 11px;
  }
  .mm-tour-panel {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 84px;
    padding: 16px;
  }
  .mm-zoom-controls {
    bottom: 148px;
    right: 16px;
  }
  #bottom-nav {
    bottom: 16px;
    padding: 8px 16px;
  }
}

/* ========================================
   IMAGE MODAL & INTERACTION FOR MAÇONARIA
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background-color: #111111;
  border: 1.5px solid #C6A86B;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(198, 168, 107, 0.12);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
}

.modal-overlay.visible .modal-content {
  transform: scale(1);
}

.modal-img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
}

.modal-close-btn {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #C6A86B;
  border: none;
  color: #050505;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
}

.footer-icon {
  height: 2cm;
  width: auto;
  border: 3px solid #0F1C2E; /* contorno azul profundo quase negro */
  border-radius: 50%;
  object-fit: contain;
}

  transform: scale(1.1);
  background-color: #ffd88f;
  box-shadow: 0 0 15px #C6A86B;
}

/* Specific styling for clickable nodes with media can be added here
Example:
#node-some-id {
  cursor: pointer !important;
  position: relative;
  transition: all 0.3s ease;
}

#node-some-id:hover {
  box-shadow: 0 0 20px rgba(198, 168, 107, 0.4);
  transform: translateY(-3px) scale(1.03);
}

#node-some-id::after {
  content: " 🖼️";
  font-size: 11px;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.8;
}
*/

/* ── Destaque e Zoom dos Nós ── */
.mm-node.mm-root-highlight {
  /* Destaque visual permanente do root */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(198, 168, 107, 0.4) !important;
  border-color: #C6A86B !important;
  z-index: 1000;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.dark-theme .mm-node.mm-root-highlight {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 2.5px rgba(198, 168, 107, 0.6) !important;
  border-color: #C6A86B !important;
}

.mm-node.mm-node-focus {
  /* Destaque visual do nó em foco */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(66, 133, 244, 0.4) !important;
  border-color: #4285f4 !important;
  z-index: 999;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.dark-theme .mm-node.mm-node-focus {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 0 2.5px rgba(198, 168, 107, 0.5) !important;
  border-color: #C6A86B !important;
}

.mm-node.zoomed-2x {
  transform: scale(2) !important;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Duração do zoom inicial entre 600ms e 1000ms */
}

/* ── Destaques Manuais de Expansão (Pai e Filho) ── */
.mm-node.mm-manual-parent-highlight {
  border-color: rgba(198, 168, 107, 0.7) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 0 10px rgba(198, 168, 107, 0.3) !important;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.dark-theme .mm-node.mm-manual-parent-highlight {
  border-color: rgba(198, 168, 107, 0.8) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(198, 168, 107, 0.4) !important;
}

.mm-node.mm-manual-child-highlight {
  border-color: #4285f4 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 15px rgba(66, 133, 244, 0.5) !important;
  z-index: 1001; /* maior destaque que o nó pai */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.dark-theme .mm-node.mm-manual-child-highlight {
  border-color: #C6A86B !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(198, 168, 107, 0.7) !important;
  z-index: 1001;
}

/* ── Estilos do nó de Mídia (Artistas) ── */
#node-artistas-renascimento {
  cursor: pointer !important;
}

#node-artistas-renascimento:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 0 12px rgba(198, 168, 107, 0.3) !important;
  transform: translateY(-2px);
}

.dark-theme #node-artistas-renascimento:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(198, 168, 107, 0.5) !important;
}

.node-media-icon {
  transition: transform 0.2s ease;
}

#node-artistas-renascimento:hover .node-media-icon {
  transform: scale(1.15);
}

.node-media-link {
  border-bottom: 1.5px dashed currentColor;
  transition: border-bottom-color 0.2s ease;
}

.node-media-link:hover {
  border-bottom-style: solid;
}


