.logo-container {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto;
}

.logo-square {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a6ee3 0%, #3359ce 45%, #2648a8 100%);
  border-radius: 8px;
  transform: rotate(45deg);
  top: 10px;
  left: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-circle {
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  top: 15px;
  left: 15px;
}

.logo-page {
  position: absolute;
  width: 24px;
  height: 28px;
  background: white;
  border-radius: 2px;
  transform: rotate(-45deg);
  top: 8px;
  left: 30px;
  border: 2px solid #3359ce;
}

.logo-lines {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #3359ce;
  top: 14px;
  left: 34px;
  transform: rotate(-45deg);
}

.logo-lines:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #3359ce;
  top: 4px;
  left: 0;
}

.logo-lines:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #3359ce;
  top: 8px;
  left: 0;
}

.logo-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #e74a3b;
  border-radius: 50%;
  top: 22px;
  left: 24px;
  z-index: 10;
}

.logo-text {
  color: #3359ce;
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Animação sutil ao passar o mouse */
.logo-container:hover .logo-square {
  transform: rotate(135deg);
  transition: transform 0.5s ease;
}

.logo-container:hover .logo-page {
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}