.nuestrasredes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    width: 100%;
    padding: 15px;
}

.nuestrasredes-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}
.nuestrasredes-button i{
    color: white;
    text-decoration: none;
    font-size: 1.5em;
}

.nuestrasredes-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.nuestrasredes-button.facebook {
    background-color: #3b5998;
}

.nuestrasredes-button.twitter {
    background-color: #1da1f2;
}

.nuestrasredes-button.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.nuestrasredes-button.whatsapp {
    background-color: #25d366;
}

.nuestrasredes-button.telegram {
    background-color: #0088cc;
}

.nuestrasredes-button.tiktok {
    background-color: #000000;
}

.nuestrasredes-button.youtube {
    background-color: #ff0000;
}

.nuestrasredes-wrapper {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.nuestrasredes-title {
    font-size: 2em;
    margin-bottom: 0px;
    color: #333;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nuestrasredes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
