* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

.topbar {
  background: #e60026;
  padding: 1.25rem;
  text-align: center;
}

.topbar h1 {
  margin: 0;
  font-size: 1.8rem;
}

.topbar p {
  margin: 0.5rem 0 0;
  color: #ffe6e6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem;
}

.hero-card,
.info-card,
.form-card,
.profile-card {
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.hero-card {
  text-align: center;
}

.button-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn,
button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.primary {
  background: #ffcc00;
  color: #111;
  font-weight: bold;
}

.secondary {
  background: #333;
  color: #fff;
}

.danger {
  background: #7a1111;
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.35rem 0 1rem;
  border-radius: 10px;
  border: 1px solid #444;
  background: #0f0f0f;
  color: #fff;
  font-size: 1rem;
}

label {
  font-weight: bold;
  color: #ffcc00;
}

.avatar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0.5rem 0 1rem;
}

.avatar-option {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  object-fit: cover;
}

.avatar-option.selected {
  border-color: #ffcc00;
}

.profile-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.profile-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-card h3 {
  margin: 0 0 0.25rem;
}

.muted {
  color: #bbb;
  font-size: 0.95rem;
}

.nav-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .topbar h1 {
    font-size: 1.35rem;
  }

  .profile-card {
    flex-direction: column;
  }
}
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  min-width: 160px;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #111;
}

.contact-btn.instagram {
  background: #ffcc00;
  color: #111;
}
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  align-items: center;
}

.contact-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none !important;
  min-width: 150px;
  margin-right: 8px;
  margin-bottom: 8px;
  border: none;
  line-height: 1.2;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #111 !important;
}

.contact-btn.instagram {
  background: #ffcc00;
  color: #111 !important;
}

.contact-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
