* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  min-height: 100vh;
  background: #0B2B40;  /* AZUL DA LOGO */
  color: white;
}

.container {
  min-height: calc(100vh - 60px);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTROLES IDIOMA - AGORA COM AMARELO */
.controls {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid #F4C542;
  backdrop-filter: blur(5px);
}

.language-selector {
  display: flex;
  gap: 4px;
}

.lang-btn {
  width: 34px;
  height: 24px;
  border-radius: 20px;
  border: 1px solid #F4C542;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  transform: scale(1.05);
  border-color: #ffd966;
}

.lang-btn.active {
  border: 2px solid #F4C542;
  box-shadow: 0 0 0 2px rgba(244, 197, 66, 0.3);
}

.flag-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PERFIL */
.perfil {
  margin-top: 50px;
  text-align: center;
  max-width: 500px;
}

.perfil img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F4C542;  /* BORDA AMARELA */
  display: block;
  margin: 0 auto 16px auto;
  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.2);
}

.perfil h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bio {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #F4C542;
  backdrop-filter: blur(5px);
}

.bio p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.bio p:last-child {
  margin-bottom: 0;
}

.bio p:nth-child(4),
.bio p:nth-child(5) {
  font-weight: 500;
  color: #F4C542;  /* TELEFONES EM AMARELO */
}

/* BOTÕES - AGORA AMARELOS */
.buttons {
  margin-top: 40px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  text-align: center;
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  background: #F4C542;  /* AMARELO */
  color: #0B2B40;  /* TEXTO AZUL */
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(244, 197, 66, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  background: #ffd966;  /* AMARELO MAIS CLARO */
  box-shadow: 0 8px 25px rgba(244, 197, 66, 0.5);
}

.btn.outline {
  background: transparent;
  color: white;
  border: 2px solid #F4C542;
  box-shadow: none;
}

.btn.outline:hover {
  background: rgba(244, 197, 66, 0.1);
  transform: translateY(-2px);
  border-color: #ffd966;
  color: white;
}

/* FOOTER */
.footer {
  height: 60px;
  background: #05212b;  /* AZUL MAIS ESCURO */
  border-top: 1px solid #F4C542;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.footer a {
  color: #F4C542;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffd966;
}

.footer-icon {
  font-size: 1.1rem;
  transform: rotate(45deg);
  color: #F4C542;
  opacity: 0.8;
}
/* BOTÃO DO MENU COM DESTAQUE */
.btn.menu-btn {
  background: #F4C542;
  color: #0B2B40;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(244, 197, 66, 0.4);
}

.btn.menu-btn:hover {
  background: #ffd966;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 197, 66, 0.6);
}
/* Responsividade */
@media (max-width: 480px) {
  .perfil img {
    width: 110px;
    height: 110px;
  }
  
  .perfil h1 {
    font-size: 1.8rem;
  }
  
  .bio p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .controls {
    top: 10px;
    right: 10px;
  }
}