body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* Fonte do iOS */

}

.ios-notification_item {
    position: fixed;
    width: max-content;
    min-width: 380px;
    padding: 0.75rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    backdrop-filter: saturate(130%) blur(20px);
    bottom: 20px; /* Posiciona no canto inferior */
    left: 20px; /* Posiciona no canto esquerdo */
    opacity: 0;
    transform: translateX(-400px);
    transition: transform 1.5s cubic-bezier(0.57, -0.63, 0.35, 1.56), opacity 1.5s ease-in-out;
    z-index: 99999; /* Garante que a notificação fique acima de outros elementos */
}

.ios-notification_item.active {
    opacity: 1;
    transform: translateX(0);
}

.socials {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Alinha o conteúdo à esquerda e o horário à direita */
    font-size: 12px;
}

.social-left {
    display: flex;
    align-items: center; /* Alinha o ícone e o nome da rede social */
    gap: 8px; /* Espaço entre o ícone e o nome */
}

.social-info {
    display: flex;
    flex-direction: column; /* Coloca o nome da rede social e o nome da pessoa em coluna */
}

.ios-notification_item .text-name {
    font-weight: normal; /* Nome da rede social com fonte normal */
    font-size: 14px;
    color: #000; /* Cor do texto */
}

.ios-notification_item .text-person {
    font-weight: bold; /* Nome da pessoa em negrito */
    font-size: 13px;
    margin-top: 2px; /* Espaço entre o nome da rede social e o nome da pessoa */
    color: #000; /* Cor do texto */
}

.ios-notification_item .text-msg {
    font-size: 14px;
    margin-top: 4px; /* Espaço entre o topo e a mensagem */
    margin-bottom: 4px;
    color: #000; /* Cor do texto */
}

.text-time {
    font-size: 12px;
    color: #888; /* Cor mais suave para o horário */
    margin-left: auto; /* Empurra o horário para o canto direito */
}

.icon.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-size: 0.9rem;
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    border-radius: 25%;
    align-items: center;
    justify-content: center;
}

.icon.fa-tiktok {
    background: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    border-radius: 25%;
    align-items: center;
    justify-content: center;
}

.icon.fa-youtube {
    background: #ff0101;
    color: #ffffff;
    font-size: 0.75rem;
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    border-radius: 25%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 769px) {
    .ios-notification_item {
        min-width: 340px !important;
    }
    .text-msg {
        font-size: 10px !important;
    }
    .text-name {
        font-size: 13px !important;
    }
    .text-person {
        font-size: 12px !important;
    }
}
