.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3.5rem;
  color: #DFDFDF;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-header h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
}

.susarrodev-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  gap: .5rem;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.susarrodev-logo-link:hover {
  background-color: rgba(39, 132, 167, 0.2);
  transform: translateY(-1px);
}

.susarrodev-logo-link img {
  border-radius: 50%;
  width: clamp(35px, 8vw, 50px);
  height: clamp(35px, 8vw, 50px);
}

@media (width < 768px) {
  .main-header {
    flex-direction: column;
    text-align: center;
    padding: 1rem 2rem;
    gap: 1.5rem;
  }
  
  .main-header h1 {
    order: 1;
    font-size: 1.8rem;
  }
  
  .susarrodev-logo-link {
    order: 2;
    font-size: 1rem;
  }
}