body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;
    animation: aparecer 0.5s ease;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagina {
  max-width: 500px;
  margin: 60px auto;
}

.cardinformation{
    font-size: 16px;
    text-align: left;
}

.card{
  display: flex;
  align-items: center;   /* alinha verticalmente */
  gap: 20px;  
}

.containerredessociais{
    text-align: left;
    font-family: Arial;
    font-size: small;
}


.instagram {
  color: #000000;
  padding: 2px 10px; 
  border-bottom: 1px solid #000000;
  box-shadow: 0 0 0 1px #000000;
  overflow: hidden;
  width: 70px;
  text-align: center;
  

  border-radius: 1px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;   /* tira sublinhado */
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  font-family: sans-serif;
  
}

/* hover */
.instagram:hover {
  background: #7ba9ff;
}

/* remove roxo definitivamente */
.instagram:visited {
  color: #000000;
}

/* efeito clique */
.instagram:active {
  transform: scale(0.96);
}

.youtube {
  color: #000000;
  padding: 2px 10px; 
  border-bottom: 1px solid #000000;
  box-shadow: 0 0 0 1px #000000;
  overflow: hidden;
  width: 70px;
  text-align: center;
  border-radius: 1px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  font-family: sans-serif;
}

.youtube:hover {
  background: #7ba9ff;
}

.youtube:visited {
  color: #000000;
}

.youtube:active {
  transform: scale(0.96);
}

.foto{
  width: 120px;/* tamanho da imagem */
  height: auto;
  border-radius: 8px;   /* opcional */
}

.menu {
  width: 500px;
  background: #fff;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e5e7eb;
  
}
.item{
  display: block;/* faz o link ocupar a linha toda */
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  transition: background 0.2s;
}

.item:hover {
  background: #f3f4f6;
}