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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
}

.content {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo-container {
  margin-bottom: 3rem;
}

.logo {
  max-width: 100%;
  height: auto;
  max-height: 120px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.social-btn.facebook {
  background: #1877f2;
  color: white;
}

.social-btn.facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Responsivo */
@media (min-width: 480px) {
  .social-links {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .social-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 2rem 1.5rem;
  }
  
  .logo {
    max-height: 80px;
  }
}
