/* ==========================================================================
   ESTILO MINIMALISTA & ULTRA-CLEAN (FLUENTE COM LEGENDA)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  
  --primary-yellow: #FFDC00;
  --primary-yellow-shadow: #c9a800;
  
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --border-color: #e2e8f0;
  --radius-btn: 14px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 36px 16px 48px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   PERFIL (SEM COR AMARELA NA LOGO)
   ========================================================================== */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.avatar-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 2px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.name-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2px;
}

.profile-name {
  font-family: var(--font-title);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-dark);
}

.verified-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.profile-handle {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.profile-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.45;
}

/* ==========================================================================
   LISTA DE LINKS
   ========================================================================== */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  user-select: none;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  border-color: #cbd5e1;
}

.link-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.25rem;
  margin-right: 12px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.btn-title {
  font-family: var(--font-title);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  text-align: left;
}

.btn-arrow {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-left: 8px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.link-btn:hover .btn-arrow {
  color: var(--text-dark);
  transform: translateX(3px);
}

/* Botão Destaque Inglês (Amarelo Marcante) */
.btn-english {
  background: var(--primary-yellow);
  border-color: #facc15;
  box-shadow: 0 3px 0 var(--primary-yellow-shadow), 0 4px 14px rgba(255, 220, 0, 0.22);
}

.btn-english:hover {
  border-color: #eab308;
  box-shadow: 0 4px 0 var(--primary-yellow-shadow), 0 8px 20px rgba(255, 220, 0, 0.32);
}

.btn-english .btn-title {
  font-weight: 700;
}

.btn-english .btn-arrow {
  color: var(--text-dark);
  font-weight: 700;
}

/* Botões Em Breve */
.btn-soon {
  background: #f1f5f9;
  border-color: #e2e8f0;
  box-shadow: none;
}

.btn-soon .btn-title {
  color: #64748b;
  font-weight: 500;
}

.btn-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  background: #ffffff;
  color: #64748b;
  border: 1px solid #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SEPARADOR VISUAL DE SEÇÕES
   ========================================================================== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 2px;
  width: 100%;
}

.section-divider span {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  white-space: nowrap;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* ==========================================================================
   BOTÕES DE REDES SOCIAIS & CONTATO (SEPARADOS)
   ========================================================================== */
.btn-social {
  padding: 12px 16px;
  background: #ffffff;
}

.btn-icon-svg {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.tiktok-svg {
  background: #000000;
  color: #ffffff;
}

.youtube-svg {
  background: #ff0000;
  color: #ffffff;
}

.whatsapp-svg {
  background: #25d366;
  color: #ffffff;
}

.btn-social .btn-title {
  font-size: 0.9rem;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.clean-footer {
  margin-top: 32px;
  text-align: center;
}

.copyright {
  font-size: 0.74rem;
  color: #94a3b8;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
