/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  max-width: 28rem;
  width: 100%;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.logo {
  height: 2.5rem;
  width: auto;
}

/* Barra de pesquisa */
.search-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #f5f5f5;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  color: #555;
}

.search-input:focus {
  outline: none;
}

.search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

/* Cabeçalho de perfis */
.profiles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.profiles-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #555;
}

.profiles-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-button {
  padding: 0.25rem;
  color: #777;
  transition: color 0.2s;
}

.control-button:hover {
  color: #333;
}

/* Lista de perfis */
.profiles-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 6rem;
  transition: transform 0.2s;
}

.profile-card:hover {
  transform: translateY(-2px);
}

.profile-cover {
  position: absolute;
  inset: 0;
}

.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.profile-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.75rem;
}

.profile-avatar {
  margin-right: 0.75rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex-grow: 1;
}

.profile-name {
  display: flex;
  align-items: center;
}

.profile-name h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.verified-badge {
  margin-left: 0.25rem;
  color: #f97316;
  font-size: 0.75rem;
}

.profile-username {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.more-options {
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}

.profile-card:hover .more-options {
  opacity: 1;
}

