.seccion-siguenos {
    padding: 3rem 0;
    text-align: center;
}

.siguenos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.titulo-siguenos {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    white-space: nowrap;
}

.redes-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.red-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.red-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.red-icon:hover {
    transform: scale(1.1);
}

.red-nombre {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    letter-spacing: 1px;
}