* { 
  margin:0; 
  padding:0; 
  box-sizing:border-box; 
}

body {
  background: #0a0e17;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  max-width: 1600px;
  padding: 0 40px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.logo-icon {
  width: 500px;
  height: auto;
}

/* 1. Celular pequeno (até 480px) → iPhone SE, Galaxy Fold, etc */
@media (max-width: 480px) {
  
  .logo-icon { width: 300px; }

}







