.container-3{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plataformas{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.box-plataforma{
    width: 46%;
    display: flex;
    flex-direction: column;
}

.influencer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.logo-plataforma{
    display: flex;
    justify-content: center;
    padding: 15px;
}


.logo-plataforma img{
    width: 90px;
    height: auto;
}

.card{
    width: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #1e1e1ec7;
    border-radius: 50px;
    padding: 5px;
}

.card.youtube{
    border: solid 1px rgb(255, 0, 0)
}

.card.twitch{
    border: solid 1px rgb(141 35 169); 
}

.card img{
    width: 70px;
    height: auto;
    border-radius: 50%;
}

.card a{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
    color: white;
    text-decoration: none;
}

.card-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}

.card-nome, .card-canal{
    font-size: 15pt;
}

.status{
    font-size: 10pt;
    text-shadow: 2px 2px black;
}

.status.online::before {
    content: "🟢";
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
  }
  
@media screen and (max-width: 599px) {
    .plataformas{
        flex-direction: column;
    }
    
    .card .card-info{
        margin-bottom: 0px;
    }

    .card{
        width: 150px;
    }

    .logo-plataforma img{
        width: 45px;
    }

    .card img{
        width: 35px;
    }

    .card-info .card-nome{
        font-size: 10pt;
    }

    .card-info .status{
        font-size: 8pt;
    }
}