/* Arquivo: assets/css/style.css */

/* Container principal */
.social-subscribers-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 120px;
    flex-wrap: wrap; /* Permite que os blocos quebrem em telas menores */
    width: 1024px;
    margin: auto;
}

/* Estilo dos blocos individuais */
.social-plan {
    background-color: transparent; /* Cor roxa padrão */
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: calc(33% - 20px); /* Ajusta o espaço entre os blocos */
    min-width: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Ícones das redes sociais */
.social-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Conteúdo principal */
.social-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 100px;
    padding: 20px;

}

/* Métricas (seguidores, visualizações, curtidas) */
.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.metric .number {
    font-size: 24px;
    font-weight: bold;
}

.metric .label {
    font-size: 14px;
    text-transform: uppercase;
}

/* Divisória entre métricas */
.divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 10px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .social-plan {
        width: calc(50% - 20px); /* Dois blocos por linha em telas médias */
    }
}

@media (max-width: 500px) {
    .social-plan {
        width: 100%; /* Um bloco por linha em telas pequenas */
    }
}

.divider-hr {
    background: #fff;
    width: 100%;
    margin: auto;

}